mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 21:51:05 +00:00
Move struct path into its own header
Move the definition of struct path into its own header file for further patches. Signed-off-by: Jan Blunck <jblunck@suse.de> Signed-off-by: Andreas Gruenbacher <agruen@suse.de> Acked-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
429731b155
commit
c5e725f33b
2 changed files with 13 additions and 5 deletions
12
include/linux/path.h
Normal file
12
include/linux/path.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#ifndef _LINUX_PATH_H
|
||||
#define _LINUX_PATH_H
|
||||
|
||||
struct dentry;
|
||||
struct vfsmount;
|
||||
|
||||
struct path {
|
||||
struct vfsmount *mnt;
|
||||
struct dentry *dentry;
|
||||
};
|
||||
|
||||
#endif /* _LINUX_PATH_H */
|
Loading…
Add table
Add a link
Reference in a new issue