Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756787Ab0LATwl (ORCPT ); Wed, 1 Dec 2010 14:52:41 -0500 Received: from smtp1.linux-foundation.org ([140.211.169.13]:59485 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756073Ab0LATwj (ORCPT ); Wed, 1 Dec 2010 14:52:39 -0500 MIME-Version: 1.0 In-Reply-To: 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> From: Linus Torvalds Date: Wed, 1 Dec 2010 11:52:17 -0800 Message-ID: Subject: Re: [PATCH v2 3/3] NFS: Fix a memory leak in nfs_readdir To: Hugh Dickins Cc: Trond Myklebust , Nick Bowler , Linux Kernel Mailing List , linux-nfs@vger.kernel.org, Andrew Morton , Rik van Riel , Christoph Hellwig , Al Viro , Nick Piggin Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1334 Lines: 29 On Wed, Dec 1, 2010 at 11:23 AM, Hugh Dickins wrote: > > But I'd prefer us not to throw in another callback if it's well > workable with the ->releasepage we already have. The thing is, NFS already really uses releasepage for its "real" designed usage, in the form of the fscache case (which the directory inodes don't use). I really hate mixing things up. The NFS directory case really hasn't got anything to do with releasepage, and taking the page lock on the read side is just really sad. As is marking the page not up-to-date, just so that it will get filled again. In fact, I don't even know if it's kosher by VFS standards to clear the up-to-date bit in the first place after it has already gotten set. It absolutely isn't for anything that can be mmap'ed. Obviously, mmap doesn't work on the directory cache anyway, but the point is that the work-arounds for the semantic gap are really quite ugly. Certainly much uglier than just adding some much simpler semantics to the "now I'm releasing the page" case in the VM. 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/