2006-12-08 17:37:56 +07:00
|
|
|
#ifndef _NAMESPACE_H_
|
|
|
|
#define _NAMESPACE_H_
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
2011-12-07 00:21:54 +07:00
|
|
|
struct mnt_namespace;
|
2009-03-30 06:50:06 +07:00
|
|
|
struct fs_struct;
|
2012-07-27 11:08:32 +07:00
|
|
|
struct user_namespace;
|
2009-03-30 06:50:06 +07:00
|
|
|
|
2007-07-16 13:41:15 +07:00
|
|
|
extern struct mnt_namespace *copy_mnt_ns(unsigned long, struct mnt_namespace *,
|
2012-07-27 11:08:32 +07:00
|
|
|
struct user_namespace *, struct fs_struct *);
|
2009-06-23 02:09:13 +07:00
|
|
|
extern void put_mnt_ns(struct mnt_namespace *ns);
|
2006-12-08 17:37:56 +07:00
|
|
|
|
2011-12-07 00:21:54 +07: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 19:06:24 +07:00
|
|
|
|
2006-12-08 17:37:56 +07:00
|
|
|
#endif
|
|
|
|
#endif
|