From patchwork Thu Jul 22 01:06:06 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luis Rodriguez X-Patchwork-Id: 59536 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 36B15B70B5 for ; Thu, 22 Jul 2010 11:06:45 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751232Ab0GVBG1 (ORCPT ); Wed, 21 Jul 2010 21:06:27 -0400 Received: from mail-pv0-f174.google.com ([74.125.83.174]:42020 "EHLO mail-pv0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751078Ab0GVBG1 (ORCPT ); Wed, 21 Jul 2010 21:06:27 -0400 Received: by pvc7 with SMTP id 7so2839431pvc.19 for ; Wed, 21 Jul 2010 18:06:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:cc:content-type; bh=5Pg+DVDeyd+dPAVSe2LBJL60HA5C2GppBgu674z1lYM=; b=Q8MHT/l8IJMHocnpQ3En5sPOuc2Qn5XuOxeUIgL+EUMEiWTRRR3s+PwUA4B4CEURmR 2G2CHCVYQTP5M0P5m2FTHTTwppR+xFSHUXpivuLh+LEl0bPWjSKptgRPLqJmiqx5FlUr Q8lKwv6tqJ5lHdfDvJGjZ+sXBIHDFRgQferG4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=cysdwv+W0crS+woFuCBYgQ5y0aw8RLxArd12WDD1edllYZ8LnVcXlzG7DbN1LFXCgl 3E4V8B4aCqHZO8xsLQivQHk/g3ibe9LlZzjmmzf3ZWlYVkcxXXYd1nuDYJ5FEO6dKT+V cMX291Pe7ELJ/qV52z/bV1jZopTzcRroCY0ZM= Received: by 10.142.180.20 with SMTP id c20mr1289208wff.134.1279760786249; Wed, 21 Jul 2010 18:06:26 -0700 (PDT) MIME-Version: 1.0 Received: by 10.143.19.9 with HTTP; Wed, 21 Jul 2010 18:06:06 -0700 (PDT) In-Reply-To: References: From: "Luis R. Rodriguez" Date: Wed, 21 Jul 2010 18:06:06 -0700 Message-ID: Subject: Re: udevd / ext4 issue mounting 2.6.35-rc5 To: Daniel J Blueman Cc: linux-ext4@vger.kernel.org, "Rafael J. Wysocki" , Ubuntu Kernel Team , linux-kernel@vger.kernel.org Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Wed, Jul 21, 2010 at 1:43 AM, Daniel J Blueman wrote: > Hi Luis, > > On 21 July 2010 01:36, Luis R. Rodriguez wrote: >> I have been reluctant to boot to 2.6.35-rc due to the large set of >> regression list and the amount of work I needed to actually get done >> on 2.6.35. Last I checked the regression list it was getting small so >> I gave it a spin today. No luck. I get some bootup error from udevd >> and ext2/ext3/ext4, something like this: >> >> EXT3-fs (sda1): error: couldn't mount because of unsupported optional >> features (240) >> EXT2-fs (sda1): error: couldn't mount because of unsupported optional >> features (240) >> EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) > > This succeeded. Heh, OK :) >> VFS: Mounted root (ext4 filesystem) readonly on device 8:1 >> Freeing unused kernel memory: 708k freed >> Write protecting the kernel read-only data: 102040k >> Freeing unused kernel memory: 764k freed >> Freeing unused kernel memory: 1796k freed >> udevd: failed to create queue file: No such file or directory >> udevd: error creating queue file > > It looks like you need to enable: > > CONFIG_DEVTMPFS > CONFIG_DEVTMPFS_MOUNT Thanks, it also turned out that when I upgraded from Ubuntu 9.10 to Ubuntu 10.04 it replaced my own /sbin/installkernel so this was likely another issue. My /sbin/installkernel changes allow for easy initramfs installation on Debian/Ubuntu but my patches have been ignored my the maintainer. But anyway I also now get another boot failure with: mount: mounting /dev on /root/dev failed: No such file or directory mount: mounting /sys on /root/sys failed: No such file or directory http://bombadil.infradead.org/~mcgrof/images/2010/bleh-boot-2.6.35-rc5.jpg Luis --- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- installkernel-ubuntu-10.04 2010-07-21 18:03:34.607678010 -0700 +++ installkernel 2010-01-29 13:17:10.000000000 -0800 @@ -36,7 +36,8 @@ # Create backups of older versions before installing updatever () { if [ -f "$dir/$1-$ver" ] ; then - mv "$dir/$1-$ver" "$dir/$1-$ver.old" + #mv "$dir/$1-$ver" "$dir/$1-$ver.old" + rm -f "$dir/$1-$ver" "$dir/$1-$ver.old" fi cat "$2" > "$dir/$1-$ver" @@ -75,5 +76,16 @@ if [ -f "$config" ] ; then updatever config "$config" fi + +LSB_RED_ID=$(/usr/bin/lsb_release -i -s) + +case $LSB_RED_ID in +"Ubuntu") + update-initramfs -c -k $ver + update-grub + ;; +*) + ;; +esac exit 0