linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fs/pstore/ram.c: Fix the ramoops module parameters update
@ 2015-03-09  7:39 Wang Long
  2015-03-09 11:17 ` long.wanglong
  2015-03-13 23:47 ` Kees Cook
  0 siblings, 2 replies; 5+ messages in thread
From: Wang Long @ 2015-03-09  7:39 UTC (permalink / raw)
  To: anton, ccross, keescook, tony.luck
  Cc: linux-kernel, long.wanglong, peifeiyue, morgan.wang

In the function ramoops_probe, the console_size, pmsg_size,
ftrace_size may be update because the value is not the power
of two. We should update the module parameter variables
as well so they are visible through /sys/module/ramoops/parameters
correctly.

Signed-off-by: Wang Long <long.wanglong@huawei.com>
---
 fs/pstore/ram.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c
index 5df325e..1aaa8dc 100644
--- a/fs/pstore/ram.c
+++ b/fs/pstore/ram.c
@@ -559,6 +559,9 @@ pr_info("[%s] pstore_register", __func__);
 	mem_address = pdata->mem_address;
 	record_size = pdata->record_size;
 	dump_oops = pdata->dump_oops;
+	ramoops_console_size = pdata->console_size;
+	ramoops_pmsg_size = pdata->pmsg_size;
+	ramoops_ftrace_size = pdata->ftrace_size;
 
 	pr_info("attached 0x%lx@0x%llx, ecc: %d/%d\n",
 		cxt->size, (unsigned long long)cxt->phys_addr,
-- 
1.8.3.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-03-16 18:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-09  7:39 [PATCH] fs/pstore/ram.c: Fix the ramoops module parameters update Wang Long
2015-03-09 11:17 ` long.wanglong
2015-03-09 18:15   ` Mark Salyzyn
2015-03-13 23:47 ` Kees Cook
2015-03-16 18:18   ` Luck, Tony

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).