* [PATCH 07/30] netns: extract net_create()
@ 2009-04-10 2:34 Alexey Dobriyan
[not found] ` <20090410023448.GH27788-2ev+ksY9ol182hYKe6nXyg@public.gmane.org>
[not found] ` <20090410225636.GD13873@us.ibm.com>
0 siblings, 2 replies; 4+ messages in thread
From: Alexey Dobriyan @ 2009-04-10 2:34 UTC (permalink / raw)
To: akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b,
containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
Cc: xemul-bzQdu9zFT3WakBO8gow8eQ, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
dave-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8, hch-wEGCiKHe2LqWVfeAwA7xHQ,
mingo-X9Un+BFzKDI, torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b
net_create() will be used by C/R code to create fresh netns on restart.
Signed-off-by: Alexey Dobriyan <adobriyan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
include/net/net_namespace.h | 1 +
net/core/net_namespace.c | 44 ++++++++++++++++++++------------------------
2 files changed, 21 insertions(+), 24 deletions(-)
--- a/include/net/net_namespace.h
+++ b/include/net/net_namespace.h
@@ -107,6 +107,7 @@ static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
extern struct list_head net_namespace_list;
#ifdef CONFIG_NET_NS
+struct net *net_create(void);
extern void __put_net(struct net *net);
static inline struct net *get_net(struct net *net)
--- a/net/core/net_namespace.c
+++ b/net/core/net_namespace.c
@@ -115,38 +115,34 @@ static void net_free(struct net *net)
kmem_cache_free(net_cachep, net);
}
-struct net *copy_net_ns(unsigned long flags, struct net *old_net)
+struct net *net_create(void)
{
- struct net *new_net = NULL;
- int err;
-
- if (!(flags & CLONE_NEWNET))
- return get_net(old_net);
-
- err = -ENOMEM;
- new_net = net_alloc();
- if (!new_net)
- goto out_err;
+ struct net *net;
+ int rv;
+ net = net_alloc();
+ if (!net)
+ return ERR_PTR(-ENOMEM);
mutex_lock(&net_mutex);
- err = setup_net(new_net);
- if (!err) {
+ rv = setup_net(net);
+ if (rv == 0) {
rtnl_lock();
- list_add_tail(&new_net->list, &net_namespace_list);
+ list_add_tail(&net->list, &net_namespace_list);
rtnl_unlock();
}
mutex_unlock(&net_mutex);
+ if (rv < 0) {
+ net_free(net);
+ return ERR_PTR(rv);
+ }
+ return net;
+}
- if (err)
- goto out_free;
-out:
- return new_net;
-
-out_free:
- net_free(new_net);
-out_err:
- new_net = ERR_PTR(err);
- goto out;
+struct net *copy_net_ns(unsigned long flags, struct net *old_net)
+{
+ if (!(flags & CLONE_NEWNET))
+ return get_net(old_net);
+ return net_create();
}
static void cleanup_net(struct work_struct *work)
^ permalink raw reply [flat|nested] 4+ messages in thread[parent not found: <20090410023448.GH27788-2ev+ksY9ol182hYKe6nXyg@public.gmane.org>]
* Re: [PATCH 07/30] netns: extract net_create() [not found] ` <20090410023448.GH27788-2ev+ksY9ol182hYKe6nXyg@public.gmane.org> @ 2009-04-10 9:04 ` Ingo Molnar 2009-04-10 22:56 ` Serge E. Hallyn 1 sibling, 0 replies; 4+ messages in thread From: Ingo Molnar @ 2009-04-10 9:04 UTC (permalink / raw) To: Alexey Dobriyan Cc: xemul-bzQdu9zFT3WakBO8gow8eQ, containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, dave-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8, hch-wEGCiKHe2LqWVfeAwA7xHQ, akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b, torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b * Alexey Dobriyan <adobriyan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > --- a/include/net/net_namespace.h > +++ b/include/net/net_namespace.h > @@ -107,6 +107,7 @@ static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns) > extern struct list_head net_namespace_list; > > #ifdef CONFIG_NET_NS > +struct net *net_create(void); > extern void __put_net(struct net *net); Ditto. Ingo ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 07/30] netns: extract net_create() [not found] ` <20090410023448.GH27788-2ev+ksY9ol182hYKe6nXyg@public.gmane.org> 2009-04-10 9:04 ` Ingo Molnar @ 2009-04-10 22:56 ` Serge E. Hallyn 1 sibling, 0 replies; 4+ messages in thread From: Serge E. Hallyn @ 2009-04-10 22:56 UTC (permalink / raw) To: Alexey Dobriyan Cc: xemul-bzQdu9zFT3WakBO8gow8eQ, containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, dave-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8, hch-wEGCiKHe2LqWVfeAwA7xHQ, akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b, torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b, mingo-X9Un+BFzKDI Quoting Alexey Dobriyan (adobriyan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org): > net_create() will be used by C/R code to create fresh netns on restart. > > Signed-off-by: Alexey Dobriyan <adobriyan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Acked-by: Serge Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org> Although this ends up making a new assumption that setup_net(), and therefore the pernet_ops->init() functions, do not return error > 0. There's nothing actually stopping that (outside of code review, but there appears to be no comment anywhere saying that's uncooth). If it returns > 0, then we return the ns as though it were valid, but don't add it to the list of namespaces... Do we care? -serge > --- > > include/net/net_namespace.h | 1 + > net/core/net_namespace.c | 44 ++++++++++++++++++++------------------------ > 2 files changed, 21 insertions(+), 24 deletions(-) > > --- a/include/net/net_namespace.h > +++ b/include/net/net_namespace.h > @@ -107,6 +107,7 @@ static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns) > extern struct list_head net_namespace_list; > > #ifdef CONFIG_NET_NS > +struct net *net_create(void); > extern void __put_net(struct net *net); > > static inline struct net *get_net(struct net *net) > --- a/net/core/net_namespace.c > +++ b/net/core/net_namespace.c > @@ -115,38 +115,34 @@ static void net_free(struct net *net) > kmem_cache_free(net_cachep, net); > } > > -struct net *copy_net_ns(unsigned long flags, struct net *old_net) > +struct net *net_create(void) > { > - struct net *new_net = NULL; > - int err; > - > - if (!(flags & CLONE_NEWNET)) > - return get_net(old_net); > - > - err = -ENOMEM; > - new_net = net_alloc(); > - if (!new_net) > - goto out_err; > + struct net *net; > + int rv; > > + net = net_alloc(); > + if (!net) > + return ERR_PTR(-ENOMEM); > mutex_lock(&net_mutex); > - err = setup_net(new_net); > - if (!err) { > + rv = setup_net(net); > + if (rv == 0) { > rtnl_lock(); > - list_add_tail(&new_net->list, &net_namespace_list); > + list_add_tail(&net->list, &net_namespace_list); > rtnl_unlock(); > } > mutex_unlock(&net_mutex); > + if (rv < 0) { > + net_free(net); > + return ERR_PTR(rv); > + } > + return net; > +} > > - if (err) > - goto out_free; > -out: > - return new_net; > - > -out_free: > - net_free(new_net); > -out_err: > - new_net = ERR_PTR(err); > - goto out; > +struct net *copy_net_ns(unsigned long flags, struct net *old_net) > +{ > + if (!(flags & CLONE_NEWNET)) > + return get_net(old_net); > + return net_create(); > } > > static void cleanup_net(struct work_struct *work) ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <20090410225636.GD13873@us.ibm.com>]
[parent not found: <20090410225636.GD13873-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>]
* Re: [PATCH 07/30] netns: extract net_create() [not found] ` <20090410225636.GD13873-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org> @ 2009-04-13 7:11 ` Alexey Dobriyan 0 siblings, 0 replies; 4+ messages in thread From: Alexey Dobriyan @ 2009-04-13 7:11 UTC (permalink / raw) To: Serge E. Hallyn Cc: xemul-bzQdu9zFT3WakBO8gow8eQ, containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, dave-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8, hch-wEGCiKHe2LqWVfeAwA7xHQ, akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b, torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b, mingo-X9Un+BFzKDI On Fri, Apr 10, 2009 at 05:56:36PM -0500, Serge E. Hallyn wrote: > Quoting Alexey Dobriyan (adobriyan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org): > > net_create() will be used by C/R code to create fresh netns on restart. > > > > Signed-off-by: Alexey Dobriyan <adobriyan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > > Acked-by: Serge Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org> > > Although this ends up making a new assumption that setup_net(), and > therefore the pernet_ops->init() functions, do not return error > 0. > There's nothing actually stopping that (outside of code review, but > there appears to be no comment anywhere saying that's uncooth). > > If it returns > 0, then we return the ns as though it were valid, but > don't add it to the list of namespaces... Do we care? I think, no. Recalling all the code put under netns changes, ->init hooks were put under 0/-E convention. For sure, my changes in netns xtables, conntracking and xfrm were definitely under it. > > -struct net *copy_net_ns(unsigned long flags, struct net *old_net) > > +struct net *net_create(void) ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-04-13 7:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-10 2:34 [PATCH 07/30] netns: extract net_create() Alexey Dobriyan
[not found] ` <20090410023448.GH27788-2ev+ksY9ol182hYKe6nXyg@public.gmane.org>
2009-04-10 9:04 ` Ingo Molnar
2009-04-10 22:56 ` Serge E. Hallyn
[not found] ` <20090410225636.GD13873@us.ibm.com>
[not found] ` <20090410225636.GD13873-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-04-13 7:11 ` Alexey Dobriyan
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox