blob: 35942084cd40d56cc1bd9f7ccc08be460ad35cc9 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002#ifndef _NAMESPACE_H_
3#define _NAMESPACE_H_
4#ifdef __KERNEL__
5
Al Viro0226f492011-12-06 12:21:54 -05006struct mnt_namespace;
Al Viro5ad4e532009-03-29 19:50:06 -04007struct fs_struct;
Eric W. Biederman771b1372012-07-26 21:08:32 -07008struct user_namespace;
Al Viro5ad4e532009-03-29 19:50:06 -04009
Eric W. Biederman213dd262007-07-15 23:41:15 -070010extern struct mnt_namespace *copy_mnt_ns(unsigned long, struct mnt_namespace *,
Eric W. Biederman771b1372012-07-26 21:08:32 -070011 struct user_namespace *, struct fs_struct *);
Trond Myklebust616511d2009-06-22 15:09:13 -040012extern void put_mnt_ns(struct mnt_namespace *ns);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080013
Al Viro0226f492011-12-06 12:21:54 -050014extern const struct file_operations proc_mounts_operations;
15extern const struct file_operations proc_mountinfo_operations;
16extern const struct file_operations proc_mountstats_operations;
Miklos Szeredia1a2c402008-03-27 13:06:24 +010017
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080018#endif
19#endif