mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
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 <jack@suse.cz> Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
57510c58b5
commit
029c3f27fe
1 changed files with 0 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue