Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752782Ab2FRGSd (ORCPT ); Mon, 18 Jun 2012 02:18:33 -0400 Received: from a.mx.secunet.com ([195.81.216.161]:42166 "EHLO a.mx.secunet.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751987Ab2FRGSa (ORCPT ); Mon, 18 Jun 2012 02:18:30 -0400 X-Greylist: delayed 1133 seconds by postgrey-1.27 at vger.kernel.org; Mon, 18 Jun 2012 02:18:29 EDT Message-ID: <4FDEC3C2.4060909@secunet.com> Date: Mon, 18 Jun 2012 07:59:30 +0200 From: Torsten Hilbrich User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: jmoyer@redhat.com CC: linux-ext4@vger.kernel.org, LKML Subject: Kernel 3.3.8 breaks accidental ext3 mount of extended partition X-Enigmail-Version: 1.5pre Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 18 Jun 2012 05:59:30.0906 (UTC) FILETIME=[870E4BA0:01CD4D17] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2367 Lines: 55 Hello, a software that tries to mount each existing partition as ext3 file system started to fail when updating from v3.3.7 to v3.3.8. The applications then hangs-up in the mount syscall, here is a snapshot of its stack at this moment: [] __cond_resched+0x2a/0x40 [] __getblk+0x1bf/0x270 [] __bread+0x13/0xb0 [] ext3_fill_super+0x132/0x1b00 [] mount_bdev+0x1aa/0x1f0 [] ext3_mount+0x15/0x20 [] mount_fs+0x43/0x1a0 [] vfs_kern_mount+0x72/0x100 [] do_kern_mount+0x52/0x110 [] do_mount+0x25a/0x7d0 [] sys_mount+0x98/0xf0 [] system_call_fastpath+0x16/0x1b The expected behaviour (which was still there in v3.3.7) is that the mount syscall fails because the partition contains no valid ext3 file system. I have create more snapshot of the stack in the following pastebin: http://pastebin.com/99x9EpnM Using bisecting I found the following commit to be the cause of the issue: commit 3735b0a1d73af536484ddefef4d8438dd468c4a6 Author: Jeff Moyer Date: Fri May 11 16:34:10 2012 +0200 block: don't mark buffers beyond end of disk as mapped commit 080399aaaf3531f5b8761ec0ac30ff98891e8686 upstream. Reverting this commit brought back the desired behaviour of the mount syscall failing because of invalid superblock. It seems to be that ext3_fill_super is unable to read the super block because there is no blocked for an extended partition. The same issue can be found in v3.4, where the upstream commit (080399aa) was released. This problem was found and debugged with an amd64 build of the linux kernel. The native ext3 support was used: CONFIG_EXT3_FS=y # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set CONFIG_EXT3_FS_XATTR=y # CONFIG_EXT3_FS_POSIX_ACL is not set # CONFIG_EXT3_FS_SECURITY is not set I will rewrite the application causing this issue to check the file system type before trying to mount the partition to work around this problem for now. Torsten -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/