From mboxrd@z Thu Jan 1 00:00:00 1970 From: Suresh Jayaraman Subject: [PATCH 17/31] Fix initialization of ipv4_route_lock Date: Thu, 1 Oct 2009 19:38:00 +0530 Message-ID: <1254406080-16264-1-git-send-email-sjayaraman@suse.de> Cc: netdev@vger.kernel.org, Neil Brown , Miklos Szeredi , Wouter Verhelst , Peter Zijlstra , trond.myklebust@fys.uio.no, Jeff Mahoney , Suresh Jayaraman To: Linus Torvalds , Andrew Morton , linux-kernel@vger.kernel.org, linux-mm@kvack.org Return-path: Sender: owner-linux-mm@kvack.org List-Id: netdev.vger.kernel.org From: Jeff Mahoney It's CONFIG_PROC_FS, not CONFIG_PROCFS. Signed-off-by: Jeff Mahoney Signed-off-by: Suresh Jayaraman --- net/ipv4/route.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: mmotm/net/ipv4/route.c =================================================================== --- mmotm.orig/net/ipv4/route.c +++ mmotm/net/ipv4/route.c @@ -3483,7 +3483,7 @@ int __init ip_rt_init(void) ipv4_dst_ops.gc_thresh = (rt_hash_mask + 1); ip_rt_max_size = (rt_hash_mask + 1) * 16; -#ifdef CONFIG_PROCFS +#ifdef CONFIG_PROC_FS mutex_init(&ipv4_route_lock); #endif -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org