From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Dichtel Subject: [RFC PATCH linux 1/2] proc_net: declare /proc/net as a directory Date: Thu, 2 Oct 2014 17:25:00 +0200 Message-ID: <1412263501-6572-2-git-send-email-nicolas.dichtel@6wind.com> References: <20131003.150947.2179820478039260398.davem@davemloft.net> <1412263501-6572-1-git-send-email-nicolas.dichtel@6wind.com> Cc: davem@davemloft.net, ebiederm@xmission.com, akpm@linux-foundation.org, adobriyan@gmail.com, rui.xiang@huawei.com, viro@zeniv.linux.org.uk, oleg@redhat.com, gorcunov@openvz.org, kirill.shutemov@linux.intel.com, grant.likely@secretlab.ca, tytso@mit.edu, Thierry Herbelot , Nicolas Dichtel To: netdev@vger.kernel.org, linux-kernel@vger.kernel.org Return-path: In-Reply-To: <1412263501-6572-1-git-send-email-nicolas.dichtel@6wind.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org From: Thierry Herbelot The mode bits are copied from those of "proc_root". This commit prepares the next patch. Signed-off-by: Thierry Herbelot Signed-off-by: Nicolas Dichtel --- fs/proc/proc_net.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/proc/proc_net.c b/fs/proc/proc_net.c index a63af3e0a612..6fc308ec105c 100644 --- a/fs/proc/proc_net.c +++ b/fs/proc/proc_net.c @@ -193,6 +193,7 @@ static __net_init int proc_net_ns_init(struct net *net) goto out; netd->data = net; + netd->mode = S_IFDIR | S_IRUGO | S_IXUGO; netd->nlink = 2; netd->namelen = 3; netd->parent = &proc_root; -- 2.1.0