diff options
Diffstat (limited to 'include/linux/path.h')
-rw-r--r-- | include/linux/path.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/path.h b/include/linux/path.h index cde895cc4af4..475225a03d0d 100644 --- a/include/linux/path.h +++ b/include/linux/path.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_PATH_H #define _LINUX_PATH_H @@ -17,4 +18,10 @@ 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) { }; +} + #endif /* _LINUX_PATH_H */ |