2011-11-24 07:26:23 +07:00
|
|
|
#include <linux/mount.h>
|
|
|
|
|
2011-11-24 00:14:10 +07:00
|
|
|
struct mount {
|
2011-11-25 09:01:32 +07:00
|
|
|
struct list_head mnt_hash;
|
2011-11-25 10:05:19 +07:00
|
|
|
struct vfsmount *mnt_parent;
|
2011-11-24 00:14:10 +07:00
|
|
|
struct vfsmount mnt;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct mount *real_mount(struct vfsmount *mnt)
|
|
|
|
{
|
|
|
|
return container_of(mnt, struct mount, mnt);
|
|
|
|
}
|
|
|
|
|
2011-11-25 09:47:05 +07:00
|
|
|
static inline int mnt_has_parent(struct mount *mnt)
|
2011-11-24 07:26:23 +07:00
|
|
|
{
|
2011-11-25 10:05:19 +07:00
|
|
|
return &mnt->mnt != mnt->mnt_parent;
|
2011-11-24 07:26:23 +07:00
|
|
|
}
|
2011-11-25 06:22:03 +07:00
|
|
|
|
|
|
|
extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *, int);
|