Merge branch 'linux-5.7' of git://github.com/skeggsb/linux into drm-fixes
[linux-2.6-microblaze.git] / include / linux / path.h
index 81e65a5..475225a 100644 (file)
@@ -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 */