X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from ncopa-desktop.alpinelinux.org (unknown [79.160.13.133]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: n@tanael.org) by mail.alpinelinux.org (Postfix) with ESMTPSA id 7A118DC0089; Fri, 26 Dec 2014 08:05:18 +0000 (UTC) Date: Fri, 26 Dec 2014 09:05:15 +0100 From: Natanael Copa To: Isaac Dunham Cc: alpine-devel@lists.alpinelinux.org Subject: Re: [alpine-devel] busybox-1.23 in edge Message-ID: <20141226090515.7f2f85ca@ncopa-desktop.alpinelinux.org> In-Reply-To: <20141226001231.GB1793@newbook> References: <20141225205835.397fac22@ncopa-laptop> <20141226001231.GB1793@newbook> X-Mailer: Claws Mail 3.11.0 (GTK+ 2.24.23; x86_64-alpine-linux-musl) X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Thu, 25 Dec 2014 16:12:32 -0800 Isaac Dunham wrote: > On Thu, Dec 25, 2014 at 08:58:35PM +0100, Natanael Copa wrote: > > Hi, > > > > I pushed busybox 1.23 to edge. So far I found at least one regression[1] > > in ash and possibly another in modprobe. > > > > After upgrading my laptop (both new kernel and new busybox) it didn't > > load the ahci kernel module from initramfs so the harddisks was not > > found. I don't know if this is due to something in new busybox or in > > new kernel or if it affects other hardware. It did happen on my desktop too and I have a theory on whats going on. > > > > To continue boot up from initramfs emergency shell i did something like: > > > > for i in $(find /sys -name uevent); do echo add > "$i"; done > > lvm pvscan > > lvm vgchange -a y > > mount /dev/vg0/lv_root /sysroot > > exit > > > > If someone has time and wants to investigate, you could try install > > v3.1 in a vm, then upgrade to edge. (do snapshot before the upgrade). > > > > Please be careful if you are on edge now. > > > > Thanks! > > > > -nc > > It sounds like it's a bug in busybox/whatever is doing coldplug; Yes. > the > kernel is creating a uevent entry that corresponds to the hardware, > and it still has a modalias entry in ahci.ko (or you would need to > modprobe ahci manually) > Or it could be the kernel creating the uevent but not the modalias > file--which is a known issue with some hardware; > the workaround is to use something like this: > > find /sys -name uevent -exec grep -h MODALIAS= '{}' + | sort -u | \ > cut -c 10- |xargs modprobe -a Thank you very much for your input. I saw you suggested improvement in our couldplug earlier. I didn't spend time on it partly because I didn't feel it is broken, but mostly because I have some ideas how to do this part proplerly with a netlink listener. I tried your suggestion from emergency shell but disks didn't show up so I don't think its the kernel that has changed. I think its new busybox modprobe behavior introduced with upstream commit[1] 4e314faa0 (modprobe,rmmod: reject module names with slashes) I think what happens is that if a slash (/) is found in the probe name, modprobe will simply exit. We call it with: modprobe -a ... So it means it will load all modules up to first alias which contains a slash and then stop. ncopa-desktop:~# find /sys -name uevent -exec grep -h MODALIAS= '{}' + 2>/dev/null | sort -u | grep -E 'pci|/' MODALIAS=dmi:bvnDellInc.:bvrA07:bd09/10/2011:svnDellInc.:pnOptiPlex790:pvr01:rvnDellInc.:rn0HY9JP:rvrA00:cvnDellInc.:ct6:cvr: MODALIAS=pci:v00008086d00000100sv00001028sd000004ADbc06sc00i00 MODALIAS=pci:v00008086d00000102sv00001028sd000004ADbc03sc00i00 ... As you see, there are slashes in the dmi module and since we sort, dmi will always come before pci. So the disk controllers are never loaded and disks never found. I think we should revert the upstream commit for now. [1]:http://git.busybox.net/busybox/commit/modutils?id=4e314faa0aecb66717418e9a47a4451aec59262b --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---