* [PATCH] ramoops: provide panic data even in suspend
@ 2015-08-05 13:56 check.kernel
2015-08-05 14:53 ` Petr Mladek
0 siblings, 1 reply; 3+ messages in thread
From: check.kernel @ 2015-08-05 13:56 UTC (permalink / raw)
To: Anton Vorontsov, Colin Cross, Kees Cook, Tony Luck, Andrew Morton,
Petr Mladek, Alex Elder, Luis R. Rodriguez, Peter Hurley,
Joe Perches, Tejun Heo, Ethan du, Linghua Gu
Cc: linux-kernel, yangdongdong
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 6115 bytes --]
From: yangdongdong <yangdongdong@xiaomi.com>
Good comments. It is valuable for code readable. Here is not necessary wrap atomic_notifier_chain_register into ramoops_prepare. The updated patch as below:
>From 5ec3976e2b55dfaf8bd1bc88c5a9c05762148fef Mon Sep 17 00:00:00 2001
From: yangdongdong <yangdongdong@xiaomi.com>
Date: Wed, 5 Aug 2015 18:51:17 +0800
Subject: [PATCH] ramoops: provide panic data even in suspend
This also enables panic and oops messages which
in suspend context to be logged into ramoops console
buffer where it can be read back at some later point.
Signed-off-by: yangdongdong <yangdongdong@xiaomi.com>
Signed-off-by: gulinghua <gulinghua@xiaomi.com>
---
fs/pstore/ram.c | 16 ++++++++++++++++
include/linux/pstore_ram.h | 1 +
kernel/printk/printk.c | 6 ++++++
3 files changed, 23 insertions(+)
diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c
index 6c26c4d..3d981a1 100644
--- a/fs/pstore/ram.c
+++ b/fs/pstore/ram.c
@@ -642,8 +642,23 @@ static void ramoops_register_dummy(void)
}
}
+static int ramoops_console_notify(struct notifier_block *this,
+ unsigned long event, void *ptr)
+{
+ pr_emerg("ramoops unlock console ...\n");
+ emergency_unlock_console();
+
+ return 0;
+}
+
+static struct notifier_block ramoop_nb = {
+ .notifier_call = ramoops_console_notify,
+ .priority = INT_MAX,
+};
+
static int __init ramoops_init(void)
{
+ atomic_notifier_chain_register(&panic_notifier_list, &ramoop_nb);
ramoops_register_dummy();
return platform_driver_register(&ramoops_driver);
}
@@ -654,6 +669,7 @@ static void __exit ramoops_exit(void)
platform_driver_unregister(&ramoops_driver);
platform_device_unregister(dummy);
kfree(dummy_data);
+ atomic_notifier_chain_unregister(&panic_notifier_list, &ramoop_nb);
}
module_exit(ramoops_exit);
diff --git a/include/linux/pstore_ram.h b/include/linux/pstore_ram.h
index 9c9d6c1..826a35b 100644
--- a/include/linux/pstore_ram.h
+++ b/include/linux/pstore_ram.h
@@ -52,6 +52,7 @@ struct persistent_ram_zone {
size_t old_log_size;
};
+extern void emergency_unlock_console(void);
struct persistent_ram_zone *persistent_ram_new(phys_addr_t start, size_t size,
u32 sig, struct persistent_ram_ecc_info *ecc_info,
unsigned int memtype);
diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
index cf8c242..ece645c 100644
--- a/kernel/printk/printk.c
+++ b/kernel/printk/printk.c
@@ -2107,6 +2107,12 @@ void resume_console(void)
console_unlock();
}
+void emergency_unlock_console(void)
+{
+ resume_console();
+}
+EXPORT_SYMBOL(emergency_unlock_console);
+
/**
* console_cpu_notify - print deferred console messages after CPU hotplug
* @self: notifier struct
--
2.5.0
Thanks,
Andy
-----邮件原件-----
发件人: Alex Elder [mailto:elder@linaro.org]
发送时间: 2015年8月5日 21:23
收件人: check.kernel@gmail.com; Anton Vorontsov; Colin Cross; Kees Cook; Tony Luck; Andrew Morton; Petr Mladek; Luis R. Rodriguez; Peter Hurley; Joe Perches; Tejun Heo; 杜慧; 顾凌华
抄送: linux-kernel@vger.kernel.org; 杨冬东
主题: Re: [PATCH] fs/pstore: provide panic data even in suspend
On 08/05/2015 08:11 AM, check.kernel@gmail.com wrote:
> From: yangdongdong <yangdongdong@xiaomi.com>
>
> This also enables panic and oops messages which in suspend context to
> be logged into ramoops console buffer where it can be read back at
> some later point.
>
> Signed-off-by: yangdongdong <yangdongdong@xiaomi.com>
> Signed-off-by: gulinghua <gulinghua@xiaomi.com>
I have a small comment on the code below.
-Alex
> ---
> fs/pstore/ram.c | 21 +++++++++++++++++++++
> include/linux/pstore_ram.h | 1 +
> kernel/printk/printk.c | 6 ++++++
> 3 files changed, 28 insertions(+)
>
> diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c index 6c26c4d..f84c5ab
> 100644
> --- a/fs/pstore/ram.c
> +++ b/fs/pstore/ram.c
> @@ -642,8 +642,28 @@ static void ramoops_register_dummy(void)
> }
> }
>
> +static int ramoops_console_notify(struct notifier_block *this,
> + unsigned long event, void *ptr)
> +{
> + pr_emerg("ramoops unlock console ...\n");
> + emergency_unlock_console();
> +
> + return 0;
> +}
> +
> +static struct notifier_block ramoop_nb = {
> + .notifier_call = ramoops_console_notify,
> + .priority = INT_MAX,
> +};
> +
> +static void ramoops_prepare(void)
> +{
> + atomic_notifier_chain_register(&panic_notifier_list, &ramoop_nb); }
> +
> static int __init ramoops_init(void)
> {
> + ramoops_prepare();
> ramoops_register_dummy();
> return platform_driver_register(&ramoops_driver);
> }
> @@ -654,6 +674,7 @@ static void __exit ramoops_exit(void)
> platform_driver_unregister(&ramoops_driver);
> platform_device_unregister(dummy);
> kfree(dummy_data);
> + atomic_notifier_chain_unregister(&panic_notifier_list, &ramoop_nb);
I would say either wrap this atomic_notificer_chain_unregister()
call in a trivial function ramoops_unprepare(), or (preferably) get rid of ramoops_prepare().
> }
> module_exit(ramoops_exit);
>
> diff --git a/include/linux/pstore_ram.h b/include/linux/pstore_ram.h
> index 9c9d6c1..826a35b 100644
> --- a/include/linux/pstore_ram.h
> +++ b/include/linux/pstore_ram.h
> @@ -52,6 +52,7 @@ struct persistent_ram_zone {
> size_t old_log_size;
> };
>
> +extern void emergency_unlock_console(void);
> struct persistent_ram_zone *persistent_ram_new(phys_addr_t start, size_t size,
> u32 sig, struct persistent_ram_ecc_info *ecc_info,
> unsigned int memtype);
> diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c index
> cf8c242..ece645c 100644
> --- a/kernel/printk/printk.c
> +++ b/kernel/printk/printk.c
> @@ -2107,6 +2107,12 @@ void resume_console(void)
> console_unlock();
> }
>
> +void emergency_unlock_console(void)
> +{
> + resume_console();
> +}
> +EXPORT_SYMBOL(emergency_unlock_console);
> +
> /**
> * console_cpu_notify - print deferred console messages after CPU hotplug
> * @self: notifier struct
>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ramoops: provide panic data even in suspend
2015-08-05 13:56 [PATCH] ramoops: provide panic data even in suspend check.kernel
@ 2015-08-05 14:53 ` Petr Mladek
[not found] ` <CAEG8FrHTbsJ8vwLAi_dcQ8q3axGtko=hkZ5p7X=TK7=HTro5Ag@mail.gmail.com>
0 siblings, 1 reply; 3+ messages in thread
From: Petr Mladek @ 2015-08-05 14:53 UTC (permalink / raw)
To: check.kernel
Cc: Anton Vorontsov, Colin Cross, Kees Cook, Tony Luck, Andrew Morton,
Alex Elder, Luis R. Rodriguez, Peter Hurley, Joe Perches,
Tejun Heo, Ethan du, Linghua Gu, linux-kernel, Peter Zijlstra,
yangdongdong
On Wed 2015-08-05 21:56:07, check.kernel@gmail.com wrote:
> From: yangdongdong <yangdongdong@xiaomi.com>
>
> Good comments. It is valuable for code readable. Here is not necessary wrap atomic_notifier_chain_register into ramoops_prepare. The updated patch as below:
>
> >From 5ec3976e2b55dfaf8bd1bc88c5a9c05762148fef Mon Sep 17 00:00:00 2001
> From: yangdongdong <yangdongdong@xiaomi.com>
> Date: Wed, 5 Aug 2015 18:51:17 +0800
> Subject: [PATCH] ramoops: provide panic data even in suspend
>
> This also enables panic and oops messages which
> in suspend context to be logged into ramoops console
> buffer where it can be read back at some later point.
>
> Signed-off-by: yangdongdong <yangdongdong@xiaomi.com>
> Signed-off-by: gulinghua <gulinghua@xiaomi.com>
> ---
> fs/pstore/ram.c | 16 ++++++++++++++++
> include/linux/pstore_ram.h | 1 +
> kernel/printk/printk.c | 6 ++++++
> 3 files changed, 23 insertions(+)
>
> diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c
> index 6c26c4d..3d981a1 100644
> --- a/fs/pstore/ram.c
> +++ b/fs/pstore/ram.c
> @@ -642,8 +642,23 @@ static void ramoops_register_dummy(void)
> }
> }
>
> +static int ramoops_console_notify(struct notifier_block *this,
> + unsigned long event, void *ptr)
> +{
> + pr_emerg("ramoops unlock console ...\n");
> + emergency_unlock_console();
IMHO, you need to make sure that this is called only when the console
is suspended.
Well, the panic might come at any time, for example when the
console is being suspended. In this case, you might not be able
to take the console semaphore and you might break panic().
A solution might be to call zap_locks(). But Peter Zijlstra is
against using zap_locks() because it might cause losing
messages. He suggests to print to safe consoles directly,
something like the x86 early_serial_console.
Best Regards,
Petr
> +
> + return 0;
> +}
> +
> +static struct notifier_block ramoop_nb = {
> + .notifier_call = ramoops_console_notify,
> + .priority = INT_MAX,
> +};
> +
> static int __init ramoops_init(void)
> {
> + atomic_notifier_chain_register(&panic_notifier_list, &ramoop_nb);
> ramoops_register_dummy();
> return platform_driver_register(&ramoops_driver);
> }
> @@ -654,6 +669,7 @@ static void __exit ramoops_exit(void)
> platform_driver_unregister(&ramoops_driver);
> platform_device_unregister(dummy);
> kfree(dummy_data);
> + atomic_notifier_chain_unregister(&panic_notifier_list, &ramoop_nb);
> }
> module_exit(ramoops_exit);
>
> diff --git a/include/linux/pstore_ram.h b/include/linux/pstore_ram.h
> index 9c9d6c1..826a35b 100644
> --- a/include/linux/pstore_ram.h
> +++ b/include/linux/pstore_ram.h
> @@ -52,6 +52,7 @@ struct persistent_ram_zone {
> size_t old_log_size;
> };
>
> +extern void emergency_unlock_console(void);
> struct persistent_ram_zone *persistent_ram_new(phys_addr_t start, size_t size,
> u32 sig, struct persistent_ram_ecc_info *ecc_info,
> unsigned int memtype);
> diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
> index cf8c242..ece645c 100644
> --- a/kernel/printk/printk.c
> +++ b/kernel/printk/printk.c
> @@ -2107,6 +2107,12 @@ void resume_console(void)
> console_unlock();
> }
>
> +void emergency_unlock_console(void)
> +{
> + resume_console();
> +}
> +EXPORT_SYMBOL(emergency_unlock_console);
> +
> /**
> * console_cpu_notify - print deferred console messages after CPU hotplug
> * @self: notifier struct
> --
> 2.5.0
>
> Thanks,
> Andy
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ramoops: provide panic data even in suspend
[not found] ` <CAEG8FrHTbsJ8vwLAi_dcQ8q3axGtko=hkZ5p7X=TK7=HTro5Ag@mail.gmail.com>
@ 2015-08-11 16:10 ` Petr Mladek
0 siblings, 0 replies; 3+ messages in thread
From: Petr Mladek @ 2015-08-11 16:10 UTC (permalink / raw)
To: Dongdong Yang
Cc: Anton Vorontsov, Colin Cross, Kees Cook, Tony Luck, Andrew Morton,
Alex Elder, Luis R. Rodriguez, Peter Hurley, Joe Perches,
Tejun Heo, Ethan du, Linghua Gu, linux-kernel, Peter Zijlstra,
yangdongdong
On Thu 2015-08-06 22:37:15, Dongdong Yang wrote:
> >From 6b28004d7b3144d4d26d60fe0bf6a750bbab39f6 Mon Sep 17 00:00:00 2001
> From: yangdongdong <yangdongdong@xiaomi.com>
> Date: Wed, 5 Aug 2015 18:51:17 +0800
> Subject: [PATCH] fs/pstore: provide panic data even in suspend
>
> If system restart after panic, this patch also enables
> panic and oops messages which in suspend context to be
> logged into ramoops console buffer where it can be read
> back at some later point.
>
> Signed-off-by: yangdongdong <yangdongdong@xiaomi.com>
> Signed-off-by: gulinghua <gulinghua@xiaomi.com>
> Signed-off-by: duhui <duhui@xiaomi.com>
> ---
> fs/pstore/ram.c | 16 ++++++++++++++++
> include/linux/pstore_ram.h | 1 +
> kernel/printk/printk.c | 7 +++++++
> 3 files changed, 24 insertions(+)
>
> diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c
> index 6c26c4d..3d981a1 100644
> --- a/fs/pstore/ram.c
> +++ b/fs/pstore/ram.c
> @@ -642,8 +642,23 @@ static void ramoops_register_dummy(void)
> }
> }
>
> +static int ramoops_console_notify(struct notifier_block *this,
> + unsigned long event, void *ptr)
> +{
> + pr_emerg("ramoops unlock console ...\n");
> + emergency_unlock_console();
> +
> + return 0;
> +}
> +
> +static struct notifier_block ramoop_nb = {
> + .notifier_call = ramoops_console_notify,
> + .priority = INT_MAX,
> +};
> +
> static int __init ramoops_init(void)
> {
> + atomic_notifier_chain_register(&panic_notifier_list, &ramoop_nb);
> ramoops_register_dummy();
> return platform_driver_register(&ramoops_driver);
> }
> @@ -654,6 +669,7 @@ static void __exit ramoops_exit(void)
> platform_driver_unregister(&ramoops_driver);
> platform_device_unregister(dummy);
> kfree(dummy_data);
> + atomic_notifier_chain_unregister(&panic_notifier_list, &ramoop_nb);
> }
> module_exit(ramoops_exit);
>
> diff --git a/include/linux/pstore_ram.h b/include/linux/pstore_ram.h
> index 9c9d6c1..826a35b 100644
> --- a/include/linux/pstore_ram.h
> +++ b/include/linux/pstore_ram.h
> @@ -52,6 +52,7 @@ struct persistent_ram_zone {
> size_t old_log_size;
> };
>
> +extern void emergency_unlock_console(void);
> struct persistent_ram_zone *persistent_ram_new(phys_addr_t start, size_t
> size,
> u32 sig, struct persistent_ram_ecc_info *ecc_info,
> unsigned int memtype);
> diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
> index cf8c242..cfa22f5 100644
> --- a/kernel/printk/printk.c
> +++ b/kernel/printk/printk.c
> @@ -2107,6 +2107,13 @@ void resume_console(void)
> console_unlock();
> }
>
> +void emergency_unlock_console(void)
> +{
> + if (panic_timeout != 0)
> + resume_console();
Could you please explain the meaning of this test? I do not get it.
If you want to resume a potentially suspended console, you need to check if the
console is really suspended.
> +}
> +EXPORT_SYMBOL(emergency_unlock_console);
> +
> /**
> * console_cpu_notify - print deferred console messages after CPU hotplug
> * @self: notifier struct
> --
> 2.5.0
>
>
> The above PATCH-v2 with following update:
> - Change subject "[PATCH] ramoops" to "[PATCH-v2] fs/pstore"
> - Add panic_timeout as emergency_unlock condition
> - Add Ethan Du to signed-off list
>
> For Petr's concern on panic break, here adds panic_timeout check as
> emergency_unlock_console condition. Because our original intention is
> collecting suspend panic debugging information before system reboot.
I am afraid that you are too focused on your scenario and do not see
other possibilities. Suspend is only one state of the system.
The panic might happen at any time. Or did I miss anything?
Best Regards,
Petr
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-08-11 16:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-05 13:56 [PATCH] ramoops: provide panic data even in suspend check.kernel
2015-08-05 14:53 ` Petr Mladek
[not found] ` <CAEG8FrHTbsJ8vwLAi_dcQ8q3axGtko=hkZ5p7X=TK7=HTro5Ag@mail.gmail.com>
2015-08-11 16:10 ` Petr Mladek
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).