Commit 8467005d authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Linus Torvalds

nsproxy: remove INIT_NSPROXY()

Remove INIT_NSPROXY(), use C99 initializer.
Remove INIT_IPC_NS(), INIT_NET_NS() while I'm at it.

Note: headers trim will be done later, now it's quite pointless because
results will be invalidated by merge window.
Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Acked-by: default avatarSerge Hallyn <serue@us.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 13aa9a6b
...@@ -32,14 +32,6 @@ extern struct fs_struct init_fs; ...@@ -32,14 +32,6 @@ extern struct fs_struct init_fs;
} }
extern struct nsproxy init_nsproxy; extern struct nsproxy init_nsproxy;
#define INIT_NSPROXY(nsproxy) { \
.pid_ns = &init_pid_ns, \
.count = ATOMIC_INIT(1), \
.uts_ns = &init_uts_ns, \
.mnt_ns = NULL, \
INIT_NET_NS(net_ns) \
INIT_IPC_NS(ipc_ns) \
}
#define INIT_SIGHAND(sighand) { \ #define INIT_SIGHAND(sighand) { \
.count = ATOMIC_INIT(1), \ .count = ATOMIC_INIT(1), \
......
...@@ -62,11 +62,6 @@ extern struct ipc_namespace init_ipc_ns; ...@@ -62,11 +62,6 @@ extern struct ipc_namespace init_ipc_ns;
extern atomic_t nr_ipc_ns; extern atomic_t nr_ipc_ns;
extern spinlock_t mq_lock; extern spinlock_t mq_lock;
#if defined(CONFIG_POSIX_MQUEUE) || defined(CONFIG_SYSVIPC)
#define INIT_IPC_NS(ns) .ns = &init_ipc_ns,
#else
#define INIT_IPC_NS(ns)
#endif
#ifdef CONFIG_SYSVIPC #ifdef CONFIG_SYSVIPC
extern int register_ipcns_notifier(struct ipc_namespace *); extern int register_ipcns_notifier(struct ipc_namespace *);
......
...@@ -100,14 +100,9 @@ struct net { ...@@ -100,14 +100,9 @@ struct net {
extern struct net init_net; extern struct net init_net;
#ifdef CONFIG_NET #ifdef CONFIG_NET
#define INIT_NET_NS(net_ns) .net_ns = &init_net,
extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns); extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
#else /* CONFIG_NET */ #else /* CONFIG_NET */
#define INIT_NET_NS(net_ns)
static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns) static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
{ {
/* There is nothing to copy so this is a noop */ /* There is nothing to copy so this is a noop */
......
...@@ -24,7 +24,18 @@ ...@@ -24,7 +24,18 @@
static struct kmem_cache *nsproxy_cachep; static struct kmem_cache *nsproxy_cachep;
struct nsproxy init_nsproxy = INIT_NSPROXY(init_nsproxy); struct nsproxy init_nsproxy = {
.count = ATOMIC_INIT(1),
.uts_ns = &init_uts_ns,
#if defined(CONFIG_POSIX_MQUEUE) || defined(CONFIG_SYSVIPC)
.ipc_ns = &init_ipc_ns,
#endif
.mnt_ns = NULL,
.pid_ns = &init_pid_ns,
#ifdef CONFIG_NET
.net_ns = &init_net,
#endif
};
static inline struct nsproxy *create_nsproxy(void) static inline struct nsproxy *create_nsproxy(void)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment