[PATCH] ipconfig : put root_server_path into __initdata section

2015-05-10 Thread tyeon
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 --- net/ipv4/ipconfig.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c

[PATCH] ipconfig : put root_server_path into __initdata section

2015-05-10 Thread tyeon
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.y...@windriver.com --- net/ipv4/ipconfig.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipv4/ipconfig.c

Re: [PATCH] sysrq : restore console_loglevel back to orig_log_level

2015-05-06 Thread tyeon
if check_mask is true and sysrq_on_maks returns false, then, the code go through the 'else' statement. if (!check_mask || sysrq_on_maks(..)) { ... } else { pr_cont("This sysrq operation is disabled.\n"); } ... So, console_loglevel

Re: [PATCH] sysrq : restore console_loglevel back to orig_log_level

2015-05-06 Thread tyeon
if check_mask is true and sysrq_on_maks returns false, then, the code go through the 'else' statement. if (!check_mask || sysrq_on_maks(..)) { ... } else { pr_cont(This sysrq operation is disabled.\n); } ... So, console_loglevel

Re: [PATCH] PM / Hiberante : optimize swsusp_free()

2015-04-14 Thread tyeon
On Saturday, April 11, 2015 09:20 AM Rafael J. Wysocki worte: On Wednesday, March 25, 2015 01:49:36 AM Yeon, JeHyeon wrote: From 6cb5fffc41911a29212be52d4ce7e481f5077ccf Mon Sep 17 00:00:00 2001 From: "Tom(JeHyeon) Yeon" Date: Thu, 19 Mar 2015 17:10:45 +0900 Subject: [PATCH] PM / Hiberante :

Re: [PATCH] PM / Hiberante : optimize swsusp_free()

2015-04-14 Thread tyeon
On Saturday, April 11, 2015 09:20 AM Rafael J. Wysocki worte: On Wednesday, March 25, 2015 01:49:36 AM Yeon, JeHyeon wrote: From 6cb5fffc41911a29212be52d4ce7e481f5077ccf Mon Sep 17 00:00:00 2001 From: Tom(JeHyeon) Yeon tom.y...@windriver.com Date: Thu, 19 Mar 2015 17:10:45 +0900 Subject: