From: Stefan Hajnoczi Date: Fri, 18 Nov 2016 09:41:46 +0000 (+0000) Subject: netns: fix get_net_ns_by_fd(int pid) typo X-Git-Tag: v4.14-rc1~2059^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0f5258cd91e9d78a1ee30696314bec3c33321a93;p=platform%2Fkernel%2Flinux-rpi.git netns: fix get_net_ns_by_fd(int pid) typo The argument to get_net_ns_by_fd() is a /proc/$PID/ns/net file descriptor not a pid. Fix the typo. Signed-off-by: Stefan Hajnoczi Acked-by: Rami Rosen Signed-off-by: David S. Miller --- diff --git a/include/net/net_namespace.h b/include/net/net_namespace.h index fc4f757..0940598 100644 --- a/include/net/net_namespace.h +++ b/include/net/net_namespace.h @@ -170,7 +170,7 @@ static inline struct net *copy_net_ns(unsigned long flags, extern struct list_head net_namespace_list; struct net *get_net_ns_by_pid(pid_t pid); -struct net *get_net_ns_by_fd(int pid); +struct net *get_net_ns_by_fd(int fd); #ifdef CONFIG_SYSCTL void ipx_register_sysctl(void);