]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/path.h
Merge branch 'ixp4xx' of git://git.kernel.org/pub/scm/linux/kernel/git/chris/linux-2.6
[mirror_ubuntu-bionic-kernel.git] / include / linux / path.h
CommitLineData
c5e725f3
JB
1#ifndef _LINUX_PATH_H
2#define _LINUX_PATH_H
3
4struct dentry;
5struct vfsmount;
6
7struct path {
8 struct vfsmount *mnt;
9 struct dentry *dentry;
10};
11
5dd784d0 12extern void path_get(struct path *);
1d957f9b
JB
13extern void path_put(struct path *);
14
c5e725f3 15#endif /* _LINUX_PATH_H */