From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Sat, 14 Jul 2018 19:34:45 +0100 From: Al Viro To: Linus Torvalds Cc: Pavel Machek , Jan Kara , Andrew Morton , James Bottomley , Waiman Long , Linux Kernel Mailing List , linux-fsdevel , Paul McKenney , Ingo Molnar , Miklos Szeredi , Matthew Wilcox , Larry Woodman , "Wangkai (Kevin,C)" , linux-mm , Michal Hocko Subject: Re: [PATCH v5 0/6] fs/dcache: Track & limit # of negative dentries Message-ID: <20180714183445.GJ30522@ZenIV.linux.org.uk> References: <1530510723-24814-1-git-send-email-longman@redhat.com> <20180702141811.ef027fd7d8087b7fb2ba0cce@linux-foundation.org> <1530570880.3179.9.camel@HansenPartnership.com> <20180702161925.1c717283dd2bd4a221bc987c@linux-foundation.org> <20180703091821.oiywpdxd6rhtxl4p@quack2.suse.cz> <20180714173516.uumlhs4wgfgrlc32@devuan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: owner-linux-mm@kvack.org List-ID: On Sat, Jul 14, 2018 at 11:00:32AM -0700, Linus Torvalds wrote: > On Sat, Jul 14, 2018 at 10:35 AM Pavel Machek wrote: > > > > Could we allocate -ve entries from separate slab? > > No, because negative dentrires don't stay negative. > > Every single positive dentry starts out as a negative dentry that is > passed in to "lookup()" to maybe be made positive. > > And most of the time they do turn positive, because most of the > time people actually open files that exist. > > But then occasionally you don't, because you're just blindly opening a > filename whether it exists or not (to _check_ whether it's there). BTW, one point that might not be realized by everyone: negative dentries are *not* the hard case. mount -t tmpfs none /mnt touch /mnt/a for i in `seq 100000`; do ln /mnt/a /mnt/$i; done and you've got 100000 *unevictable* dentries, with the time per iteration being not all that high (especially if you just call link(2) in a loop). They are all positive and all pinned. And you've got only one inode there and no persistently opened files, so rlimit and quota won't help any.