2006-12-08 18:37:56 +08:00
|
|
|
#ifndef _NAMESPACE_H_
|
|
|
|
#define _NAMESPACE_H_
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
2011-12-07 01:21:54 +08:00
|
|
|
struct mnt_namespace;
|
2009-03-30 07:50:06 +08:00
|
|
|
struct fs_struct;
|
|
|
|
|
2007-07-16 14:41:15 +08:00
|
|
|
extern struct mnt_namespace *copy_mnt_ns(unsigned long, struct mnt_namespace *,
|
2006-12-08 18:37:56 +08:00
|
|
|
struct fs_struct *);
|
2009-06-23 03:09:13 +08:00
|
|
|
extern void put_mnt_ns(struct mnt_namespace *ns);
|
2006-12-08 18:37:56 +08:00
|
|
|
|
2011-12-07 01:21:54 +08:00
|
|
|
extern const struct file_operations proc_mounts_operations;
|
|
|
|
extern const struct file_operations proc_mountinfo_operations;
|
|
|
|
extern const struct file_operations proc_mountstats_operations;
|
2008-03-27 20:06:24 +08:00
|
|
|
|
2006-12-08 18:37:56 +08:00
|
|
|
#endif
|
|
|
|
#endif
|