From owner-freebsd-stable@freebsd.org Tue Jun 28 05:58:15 2016 Return-Path: Delivered-To: freebsd-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E56D4B85773 for ; Tue, 28 Jun 2016 05:58:15 +0000 (UTC) (envelope-from wlosh@bsdimp.com) Received: from mail-io0-x22d.google.com (mail-io0-x22d.google.com [IPv6:2607:f8b0:4001:c06::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B53272D34 for ; Tue, 28 Jun 2016 05:58:15 +0000 (UTC) (envelope-from wlosh@bsdimp.com) Received: by mail-io0-x22d.google.com with SMTP id s63so7884082ioi.3 for ; Mon, 27 Jun 2016 22:58:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bsdimp-com.20150623.gappssmtp.com; s=20150623; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=IYwvqueYgqmZCUrdQD9aKxahBytTg65iPwVQUVz1sSM=; b=o4EvkbLHRSQZ4667ROz3ICp6q1gJQ8GMAbtWDjmg7TSHoJaXJVqBS3IA95gGxzfYzZ OIb6cx8rctjWATijC6Ts5Hlligy/NhuTBXPCLN0SJw5An2bXLllEdNYt9ztzscDe+H5g hTrIHd7JNqXqRqAOnirZEJYB2X0A+teVNLkcKBsKwpUIa6zhmL9a5GXnfJ4vnE2RXag8 dgh7Y0xum/lA14OfG4yXiKu+rcAOdN7u7Pks/bGHfeBTiFUFk6BCniEI9Xafct5iFTBz PEKMXsR4Ri+lJF50dxivKWjnkVzxnHFPyUelJVmySxBqrVQoW8aKlzcWHzbztJRVxcBF vzvQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=IYwvqueYgqmZCUrdQD9aKxahBytTg65iPwVQUVz1sSM=; b=jIbG06hID9rjwB/CZMMA5PmX1e47RVxmC0DUnZdBduB/WuWptaDHsS9qAC5AfZq0pi c2hh4tiZcsYACiMA3kHyXLWhzSQg5bQF3oOzGWMBlT4UrJWjPwpDmH2VteZ2odjXQBgN kZ8l0eaii5egWBKd1HRmb9KBfwd78V7Nn5KTK0kO431hKJ6gArnNLWlnyBcmVUFIo/v7 ErHtZGBKMK+KPQ7IbLHscCyxqckAluRPksAQbtHBwzbuAfCVXbRNU0c1B+3MIkIfKMp4 /3PRUP5D/GSkX+iR4YPtkiCQIZwwIDfZQmeKE5rtd2cnhU7A1eKr5E6Xv08ZKtD32nLs aZNw== X-Gm-Message-State: ALyK8tJSBh+fw5Il4XBKe0sx/uOGIWAlVuBRvjO+rJ3FWh32dwNA0WRf/BvzAzCwtLfCozfH0Klb3Ytzl3baiA== X-Received: by 10.107.167.67 with SMTP id q64mr1663768ioe.197.1467093495090; Mon, 27 Jun 2016 22:58:15 -0700 (PDT) MIME-Version: 1.0 Sender: wlosh@bsdimp.com Received: by 10.79.75.3 with HTTP; Mon, 27 Jun 2016 22:58:14 -0700 (PDT) X-Originating-IP: [50.253.99.174] In-Reply-To: <1467092336283-6109948.post@n5.nabble.com> References: <1467053628941-6109797.post@n5.nabble.com> <1467056804437-6109817.post@n5.nabble.com> <1467067188002-6109896.post@n5.nabble.com> <1467092336283-6109948.post@n5.nabble.com> From: Warner Losh Date: Mon, 27 Jun 2016 23:58:14 -0600 X-Google-Sender-Auth: agaq32rH45inHTEuPxqLSHgX6WQ Message-ID: Subject: Re: What are current dependencies of cd9660 kernel module? To: Jakub Lach Cc: FreeBSD-STABLE Mailing List Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jun 2016 05:58:16 -0000 On Mon, Jun 27, 2016 at 11:38 PM, Jakub Lach wrote: > Hello again, > > After a rebuild (so also powercycling), I've loaded the module just fine. > I wonder what state the system was before, but now works. The usual cause of this is updating the kernel w/o updating modules. Or you did an installkernel w/o a reboot. The cd9660 module only depends n the kernel version because all modules depend on that to guard against such foot shooting. Chances are good a simple reboot would have fixed this. There's some anti-footshooting code to load it from kernel.old, but I've not tested that in years, so maybe it's no longer working (or you did multiple installkernels. Warner