* [PATCH] ipconfig : put root_server_path into __initdata section
@ 2015-05-11 2:06 tyeon
0 siblings, 0 replies; only message in thread
From: tyeon @ 2015-05-11 2:06 UTC (permalink / raw)
To: "David S. Miller" <davem@davemloft.net>; Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>; James Morris <jmorris@namei.org>; Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>; Patrick McHardy
Cc: <netdev@vger.kernel.org>;
root_server_path is used only for the __init function.
so, no need to keep this variable in the memory after kernel init.
Signed-off-by: Tom(JeHyeon) Yeon <tom.yeon@windriver.com>
---
net/ipv4/ipconfig.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c
index b26376e..0f1b159 100644
--- a/net/ipv4/ipconfig.c
+++ b/net/ipv4/ipconfig.c
@@ -141,7 +141,7 @@ __be32 ic_addrservaddr = NONE; /* IP Address of the
IP addresses'server */
__be32 ic_servaddr = NONE; /* Boot server IP address */
__be32 root_server_addr = NONE; /* Address of NFS server */
-u8 root_server_path[256] = { 0, }; /* Path to mount as root */
+u8 root_server_path[256] __initdata = { 0, }; /* Path to mount as root */
/* vendor class identifier */
static char vendor_class_identifier[253] __initdata;
--
1.7.9.5
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-05-11 2:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-11 2:06 [PATCH] ipconfig : put root_server_path into __initdata section tyeon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox