> On Thu, 22 May 2008 11:22:18 +0900 Kentaro Makita <k-makita@np.css.fujitsu.com> wrote:
>
>> [Summary]
>> Split LRU-list of unused dentries to each superblocks to avoid soft lock up
>> at NFS mounts and remounting any filesystem.
>>
>> Previosly I posted are:
>>
http://lkml.org/lkml/2008/3/5/590
>>
>> [Descriptions]
>> - background
>> dentry_unused is a list of dentries which is not in use. This works
>> as a cache against not-exisiting files. dentry_unused grows up when
>> directories or files are removed. This list can be very long if
>> there is huge free memory.
>
> The dentry_unused inodes are not actually not-existing files. They are
> dentries which refer to live files (and, iirc, negative dentries) but
> which nobody is actually using - for example, regular files which
> nobody currently has open.
>
> I changed the changelog text to reflect that.