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