Skip to content

Commit

Permalink
afs: Fix the dynamic root's d_delete to always delete unused dentries
Browse files Browse the repository at this point in the history
[ Upstream commit 71f8b55bc30e82d6355e07811213d847981a32e2 ]

Fix the afs dynamic root's d_delete function to always delete unused
dentries rather than only deleting them if they're positive.  With things
as they stand upstream, negative dentries stemming from failed DNS lookups
stick around preventing retries.

Fixes: 66c7e1d ("afs: Split the dynroot stuff out and give it its own ops tables")
Signed-off-by: David Howells <[email protected]>
Tested-by: Markus Suvanto <[email protected]>
cc: Marc Dionne <[email protected]>
cc: [email protected]
Signed-off-by: Sasha Levin <[email protected]>
  • Loading branch information
dhowells authored and raystef66 committed Jan 9, 2024
1 parent 639867b commit 5a0eaa8
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions fs/afs/dynroot.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,20 +172,9 @@ static int afs_dynroot_d_revalidate(struct dentry *dentry, unsigned int flags)
return 1;
}

/*
* Allow the VFS to enquire as to whether a dentry should be unhashed (mustn't
* sleep)
* - called from dput() when d_count is going to 0.
* - return 1 to request dentry be unhashed, 0 otherwise
*/
static int afs_dynroot_d_delete(const struct dentry *dentry)
{
return d_really_is_positive(dentry);
}

const struct dentry_operations afs_dynroot_dentry_operations = {
.d_revalidate = afs_dynroot_d_revalidate,
.d_delete = afs_dynroot_d_delete,
.d_delete = always_delete_dentry,
.d_release = afs_d_release,
.d_automount = afs_d_automount,
};
Expand Down

0 comments on commit 5a0eaa8

Please sign in to comment.