From mboxrd@z Thu Jan 1 00:00:00 1970 From: Al Viro Subject: Re: [PATCH v7 1/4] spinlock: A new lockref structure for lockless update of refcount Date: Fri, 30 Aug 2013 21:48:52 +0100 Message-ID: <20130830204852.GE13318@ZenIV.linux.org.uk> References: <52200DAE.2020303@hp.com> <5220E56A.80603@hp.com> <5220F090.5050908@hp.com> <20130830194059.GC13318@ZenIV.linux.org.uk> <5220F811.9060902@hp.com> <20130830202608.GD13318@ZenIV.linux.org.uk> <52210225.60805@hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Linus Torvalds , Ingo Molnar , Benjamin Herrenschmidt , Jeff Layton , Miklos Szeredi , Ingo Molnar , Thomas Gleixner , linux-fsdevel , Linux Kernel Mailing List , Peter Zijlstra , Steven Rostedt , Andi Kleen , "Chandramouleeswaran, Aswin" , "Norton, Scott J" To: Waiman Long Return-path: Content-Disposition: inline In-Reply-To: <52210225.60805@hp.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Fri, Aug 30, 2013 at 04:35:49PM -0400, Waiman Long wrote: > The AIM7 test was run on a set of 16 ramdisk formated with ext3 > filesystem with the following mount options: > barrier=0,async,noatime,nodiratime. Maybe that is a factor. I would be really surprised if it was... Could you slap the following into __fput(): struct mount *m = real_mount(mnt); if (unlikely(!m->mnt_ns)) { printk(KERN_INFO "type = %s", mnt->mnt_sb->s_type->name); WARN_ON(1); } and see what it catches? That'll need #include "fs/mount.h" in fs/file_table.c to compile...