Revision 095c24710aa508a303edff86709637007113fbbf authored by Andy Walls on 12 June 2010, 23:20:36 UTC, committed by Mauro Carvalho Chehab on 08 July 2010, 19:49:53 UTC
Signed-off-by: Andy Walls <awalls@md.metrocast.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
1 parent 691d384
Raw File
path.h
#ifndef _LINUX_PATH_H
#define _LINUX_PATH_H

struct dentry;
struct vfsmount;

struct path {
	struct vfsmount *mnt;
	struct dentry *dentry;
};

extern void path_get(struct path *);
extern void path_put(struct path *);

#endif  /* _LINUX_PATH_H */
back to top