diff options
author | Christian Brauner <[email protected]> | 2024-08-22 11:28:38 +0200 |
---|---|---|
committer | Christian Brauner <[email protected]> | 2024-08-30 08:22:38 +0200 |
commit | 029c3f27fe84c5fd29d49a99cc5176433bf12209 (patch) | |
tree | 53a305dcb2638e5f6f418693987880aa768c7f50 | |
parent | 57510c58b5832c8cb36516cdba48543133f3ab85 (diff) |
fs: remove unused path_put_init()
This helper has been unused for a while now.
Link: https://lore.kernel.org/r/20240822-bewuchs-werktag-46672b3c0606@brauner
Reviewed-by: Jan Kara <[email protected]>
Signed-off-by: Christian Brauner <[email protected]>
-rw-r--r-- | include/linux/path.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/path.h b/include/linux/path.h index ca073e70decd..7ea389dc764b 100644 --- a/include/linux/path.h +++ b/include/linux/path.h @@ -18,12 +18,6 @@ static inline int path_equal(const struct path *path1, const struct path *path2) return path1->mnt == path2->mnt && path1->dentry == path2->dentry; } -static inline void path_put_init(struct path *path) -{ - path_put(path); - *path = (struct path) { }; -} - /* * Cleanup macro for use with __free(path_put). Avoids dereference and * copying @path unlike DEFINE_FREE(). path_put() will handle the empty |