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