pnode.h 876 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 *  linux/fs/pnode.h
 *
 * (C) Copyright IBM Corporation 2005.
 *	Released under GPL v2.
 *
 */
#ifndef _LINUX_PNODE_H
#define _LINUX_PNODE_H

#include <linux/list.h>
#include <linux/mount.h>
R
Ram Pai 已提交
13 14

#define IS_MNT_SHARED(mnt) (mnt->mnt_flags & MNT_SHARED)
15
#define IS_MNT_NEW(mnt)  (!mnt->mnt_namespace)
R
Ram Pai 已提交
16 17
#define CLEAR_MNT_SHARED(mnt) (mnt->mnt_flags &= ~MNT_SHARED)

18 19 20 21 22 23 24 25 26 27 28
#define CL_EXPIRE    		0x01
#define CL_COPY_ALL 		0x04
#define CL_MAKE_SHARED 		0x08
#define CL_PROPAGATION 		0x10

static inline void set_mnt_shared(struct vfsmount *mnt)
{
	mnt->mnt_flags &= ~MNT_PNODE_MASK;
	mnt->mnt_flags |= MNT_SHARED;
}

29
void change_mnt_propagation(struct vfsmount *, int);
30 31
int propagate_mnt(struct vfsmount *, struct dentry *, struct vfsmount *,
		struct list_head *);
R
Ram Pai 已提交
32 33
int propagate_umount(struct list_head *);
int propagate_mount_busy(struct vfsmount *, int);
34
#endif /* _LINUX_PNODE_H */