Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756375Ab0LAXcE (ORCPT ); Wed, 1 Dec 2010 18:32:04 -0500 Received: from smtp1.linux-foundation.org ([140.211.169.13]:45546 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755819Ab0LAXcC convert rfc822-to-8bit (ORCPT ); Wed, 1 Dec 2010 18:32:02 -0500 MIME-Version: 1.0 In-Reply-To: <20101201143856.51f4f9d9.akpm@linux-foundation.org> References: <1291217804-11257-1-git-send-email-Trond.Myklebust@netapp.com> <1291217804-11257-2-git-send-email-Trond.Myklebust@netapp.com> <20101201150428.GA2879@elliptictech.com> <1291217804-11257-3-git-send-email-Trond.Myklebust@netapp.com> <1291217804-11257-4-git-send-email-Trond.Myklebust@netapp.com> <1291229669.6609.24.camel@heimdal.trondhjem.org> <1291234251.6609.39.camel@heimdal.trondhjem.org> <20101201123341.d12ef362.akpm@linux-foundation.org> <20101201133831.ea6ba10a.akpm@linux-foundation.org> <1291240272.6609.50.camel@heimdal.trondhjem.org> <20101201141351.8609140b.akpm@linux-foundation.org> <20101201143856.51f4f9d9.akpm@linux-foundation.org> From: Linus Torvalds Date: Wed, 1 Dec 2010 15:31:11 -0800 Message-ID: Subject: Re: [PATCH v2 3/3] NFS: Fix a memory leak in nfs_readdir To: Andrew Morton Cc: Trond Myklebust , Hugh Dickins , Nick Piggin , Nick Bowler , Linux Kernel Mailing List , linux-nfs@vger.kernel.org, Rik van Riel , Christoph Hellwig , Al Viro Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1509 Lines: 39 On Wed, Dec 1, 2010 at 2:38 PM, Andrew Morton wrote: > > OK, the stop_machine() plugs a lot of potential race-vs-module-unload > things. ?But Trond is referring to races against vmscan inode reclaim, > unmount, etc. So? A filesystem module cannot be unloaded while it's still mounted. And unmount doesn't succeed until all inodes are gone. And getting rid of an inode doesn't succeed until all pages associated with it are gone. And getting rid of the pages involves locking them (whether in truncate or vmscan) and removing them from all lists. Ergo: vmscan has a locked page leads to the filesystem being guaranteed to not be unmounted. And that, in turn, guarantees that the module won't be unloaded until the machine has gone through an idle cycle. It really is that simple. There's nothing subtle there. The reason spin_unlock(&mapping->tree_lock) is safe is exactly the above trivial chain of dependencies. And it's also exactly why mapping->a_ops->freepage() would also be safe. This is pretty much how all the module races are handled. Doing module ref-counts per page (or per packet in flight for things like networking) would be prohibitively expensive. There's no way we can ever do that. Linus -- 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/