diff options
author | 2025-02-24 11:27:02 +0100 | |
---|---|---|
committer | 2025-02-24 11:27:02 +0100 | |
commit | 02cfe2b6529c6c5fcf39d52a826927f4f93392af (patch) | |
tree | 5c46aa11784854e396fec40cf4718084ecf35131 | |
parent | Merge patch series "fixes for uncached IO" (diff) | |
download | linux-rng-02cfe2b6529c6c5fcf39d52a826927f4f93392af.tar.xz linux-rng-02cfe2b6529c6c5fcf39d52a826927f4f93392af.zip |
pidfs: remove d_op->d_delete
Pidfs only deals with unhashed dentries and there's currently no way for
them to become hashed. So remove d_op->d_delete.
Signed-off-by: Christian Brauner <brauner@kernel.org>
-rw-r--r-- | fs/pidfs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/pidfs.c b/fs/pidfs.c index 63f9699ebac3..c0478b3c55d9 100644 --- a/fs/pidfs.c +++ b/fs/pidfs.c @@ -521,7 +521,6 @@ static char *pidfs_dname(struct dentry *dentry, char *buffer, int buflen) } const struct dentry_operations pidfs_dentry_operations = { - .d_delete = always_delete_dentry, .d_dname = pidfs_dname, .d_prune = stashed_dentry_prune, }; |