diff --git a/include/linux/path.h b/include/linux/path.h index 81e65a5be7ce26f09c3093cd4c1137535294124d..475225a03d0dc30461124e91b0b9011322ace660 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) 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 */