summaryrefslogtreecommitdiffstats
path: root/include/linux/path.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/path.h')
-rw-r--r--include/linux/path.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/path.h b/include/linux/path.h
index 81e65a5be7ce..475225a03d0d 100644
--- a/include/linux/path.h
+++ b/include/linux/path.h
@@ -18,4 +18,10 @@ static inline int path_equal(const struct path *path1, const struct path *path2)
18 return path1->mnt == path2->mnt && path1->dentry == path2->dentry; 18 return path1->mnt == path2->mnt && path1->dentry == path2->dentry;
19} 19}
20 20
21static inline void path_put_init(struct path *path)
22{
23 path_put(path);
24 *path = (struct path) { };
25}
26
21#endif /* _LINUX_PATH_H */ 27#endif /* _LINUX_PATH_H */