Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932529Ab1EHWll (ORCPT ); Sun, 8 May 2011 18:41:41 -0400 Received: from mail-ww0-f44.google.com ([74.125.82.44]:51704 "EHLO mail-ww0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932454Ab1EHWl0 (ORCPT ); Sun, 8 May 2011 18:41:26 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=o7eQPTNtve8p5ZelpUkS8fIs/TbZq6jktBsgNur7U3WZiBZbkq+9hTnlVBkHhhSlg6 vb85u73rbWtCROHRbGBx5PHk7TLh1nP0b7su4Q7dt8Md7evU0c1eZK0ejd68xhm9KXj7 i75wPev6bR3Twzy67HPMkRjNblbDMjQWCZIjA= From: Lucian Adrian Grijincu To: linux-kernel@vger.kernel.org Cc: netdev@vger.kernel.org, Lucian Adrian Grijincu Subject: [v2 051/115] sysctl: remove .child from net/ipv4/route and net/ipv4/neigh tables Date: Mon, 9 May 2011 00:39:03 +0200 Message-Id: <1304894407-32201-52-git-send-email-lucian.grijincu@gmail.com> X-Mailer: git-send-email 1.7.5.134.g1c08b In-Reply-To: <1304894407-32201-1-git-send-email-lucian.grijincu@gmail.com> References: <1304894407-32201-1-git-send-email-lucian.grijincu@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1329 Lines: 47 Signed-off-by: Lucian Adrian Grijincu --- net/ipv4/route.c | 15 ++++----------- 1 files changed, 4 insertions(+), 11 deletions(-) diff --git a/net/ipv4/route.c b/net/ipv4/route.c index 99e6e4b..46c7b3d 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c @@ -3153,18 +3153,10 @@ static ctl_table ipv4_route_table[] = { static struct ctl_table empty[1]; -static struct ctl_table ipv4_skeleton[] = -{ - { .procname = "route", - .mode = 0555, .child = ipv4_route_table}, - { .procname = "neigh", - .mode = 0555, .child = empty}, - { } -}; - -static __net_initdata struct ctl_path ipv4_path[] = { +static __net_initdata struct ctl_path ipv4_neigh_path[] = { { .procname = "net", }, { .procname = "ipv4", }, + { .procname = "neigh", }, { }, }; @@ -3317,6 +3309,7 @@ int __init ip_rt_init(void) */ void __init ip_static_sysctl_init(void) { - register_sysctl_paths(ipv4_path, ipv4_skeleton); + register_sysctl_paths(ipv4_route_path, ipv4_route_table); + register_sysctl_paths(ipv4_neigh_path, empty); } #endif -- 1.7.5.134.g1c08b -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/