* [PATCH v2] PM: thaw_processes: Rewrite restarting tasks log to remove stray *done.*
@ 2025-05-11 17:46 Paul Menzel
2025-05-12 14:48 ` Paul Menzel
0 siblings, 1 reply; 3+ messages in thread
From: Paul Menzel @ 2025-05-11 17:46 UTC (permalink / raw)
To: Rafael J. Wysocki, Pavel Machek, Len Brown
Cc: Paul Menzel, linux-pm, linux-kernel
`pr_cont()` unfortunately does not work here, as other parts of the
Linux kernel log between the two log lines:
[18445.295056] r8152-cfgselector 4-1.1.3: USB disconnect, device number 5
[18445.295112] OOM killer enabled.
[18445.295115] Restarting tasks ...
[18445.295185] usb 3-1: USB disconnect, device number 2
[18445.295193] usb 3-1.1: USB disconnect, device number 3
[18445.296262] usb 3-1.5: USB disconnect, device number 4
[18445.297017] done.
[18445.297029] random: crng reseeded on system resumption
`pr_cont()` also uses the default log level, normally warning, if the
corresponding log line is interrupted.
Therefore, replace the `pr_cont()`, and explicitly log it as a separate
line with log level info:
Restarting tasks: Starting
[…]
Restarting tasks: Done
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
---
kernel/power/process.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/power/process.c b/kernel/power/process.c
index 66ac067d9ae6..1938fafa9172 100644
--- a/kernel/power/process.c
+++ b/kernel/power/process.c
@@ -189,7 +189,7 @@ void thaw_processes(void)
oom_killer_enable();
- pr_info("Restarting tasks ... ");
+ pr_info("Restarting tasks: Starting\n");
__usermodehelper_set_disable_depth(UMH_FREEZING);
thaw_workqueues();
@@ -208,7 +208,7 @@ void thaw_processes(void)
usermodehelper_enable();
schedule();
- pr_cont("done.\n");
+ pr_info("Restarting tasks: Done\n");
trace_suspend_resume(TPS("thaw_processes"), 0, false);
}
--
2.49.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] PM: thaw_processes: Rewrite restarting tasks log to remove stray *done.*
2025-05-11 17:46 [PATCH v2] PM: thaw_processes: Rewrite restarting tasks log to remove stray *done.* Paul Menzel
@ 2025-05-12 14:48 ` Paul Menzel
2025-05-16 20:25 ` Rafael J. Wysocki
0 siblings, 1 reply; 3+ messages in thread
From: Paul Menzel @ 2025-05-12 14:48 UTC (permalink / raw)
To: Rafael J. Wysocki, Pavel Machek, Len Brown; +Cc: linux-pm, linux-kernel
[add change-log]
Am 11.05.25 um 19:46 schrieb Paul Menzel:
> `pr_cont()` unfortunately does not work here, as other parts of the
> Linux kernel log between the two log lines:
>
> [18445.295056] r8152-cfgselector 4-1.1.3: USB disconnect, device number 5
> [18445.295112] OOM killer enabled.
> [18445.295115] Restarting tasks ...
> [18445.295185] usb 3-1: USB disconnect, device number 2
> [18445.295193] usb 3-1.1: USB disconnect, device number 3
> [18445.296262] usb 3-1.5: USB disconnect, device number 4
> [18445.297017] done.
> [18445.297029] random: crng reseeded on system resumption
>
> `pr_cont()` also uses the default log level, normally warning, if the
> corresponding log line is interrupted.
>
> Therefore, replace the `pr_cont()`, and explicitly log it as a separate
> line with log level info:
>
> Restarting tasks: Starting
> […]
> Restarting tasks: Done
>
> Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
> ---
v2: Use log message texts suggested by Rafael.
> kernel/power/process.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/power/process.c b/kernel/power/process.c
> index 66ac067d9ae6..1938fafa9172 100644
> --- a/kernel/power/process.c
> +++ b/kernel/power/process.c
> @@ -189,7 +189,7 @@ void thaw_processes(void)
>
> oom_killer_enable();
>
> - pr_info("Restarting tasks ... ");
> + pr_info("Restarting tasks: Starting\n");
>
> __usermodehelper_set_disable_depth(UMH_FREEZING);
> thaw_workqueues();
> @@ -208,7 +208,7 @@ void thaw_processes(void)
> usermodehelper_enable();
>
> schedule();
> - pr_cont("done.\n");
> + pr_info("Restarting tasks: Done\n");
> trace_suspend_resume(TPS("thaw_processes"), 0, false);
> }
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] PM: thaw_processes: Rewrite restarting tasks log to remove stray *done.*
2025-05-12 14:48 ` Paul Menzel
@ 2025-05-16 20:25 ` Rafael J. Wysocki
0 siblings, 0 replies; 3+ messages in thread
From: Rafael J. Wysocki @ 2025-05-16 20:25 UTC (permalink / raw)
To: Paul Menzel
Cc: Rafael J. Wysocki, Pavel Machek, Len Brown, linux-pm,
linux-kernel
On Mon, May 12, 2025 at 4:48 PM Paul Menzel <pmenzel@molgen.mpg.de> wrote:
>
> [add change-log]
>
> Am 11.05.25 um 19:46 schrieb Paul Menzel:
> > `pr_cont()` unfortunately does not work here, as other parts of the
> > Linux kernel log between the two log lines:
> >
> > [18445.295056] r8152-cfgselector 4-1.1.3: USB disconnect, device number 5
> > [18445.295112] OOM killer enabled.
> > [18445.295115] Restarting tasks ...
> > [18445.295185] usb 3-1: USB disconnect, device number 2
> > [18445.295193] usb 3-1.1: USB disconnect, device number 3
> > [18445.296262] usb 3-1.5: USB disconnect, device number 4
> > [18445.297017] done.
> > [18445.297029] random: crng reseeded on system resumption
> >
> > `pr_cont()` also uses the default log level, normally warning, if the
> > corresponding log line is interrupted.
> >
> > Therefore, replace the `pr_cont()`, and explicitly log it as a separate
> > line with log level info:
> >
> > Restarting tasks: Starting
> > […]
> > Restarting tasks: Done
> >
> > Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
> > ---
>
> v2: Use log message texts suggested by Rafael.
>
> > kernel/power/process.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/kernel/power/process.c b/kernel/power/process.c
> > index 66ac067d9ae6..1938fafa9172 100644
> > --- a/kernel/power/process.c
> > +++ b/kernel/power/process.c
> > @@ -189,7 +189,7 @@ void thaw_processes(void)
> >
> > oom_killer_enable();
> >
> > - pr_info("Restarting tasks ... ");
> > + pr_info("Restarting tasks: Starting\n");
> >
> > __usermodehelper_set_disable_depth(UMH_FREEZING);
> > thaw_workqueues();
> > @@ -208,7 +208,7 @@ void thaw_processes(void)
> > usermodehelper_enable();
> >
> > schedule();
> > - pr_cont("done.\n");
> > + pr_info("Restarting tasks: Done\n");
> > trace_suspend_resume(TPS("thaw_processes"), 0, false);
> > }
> >
An analogous change, which I have forgotten about, has been made
already in this cycle, but I prefer the way the messages look after
your changes, so I've rebased your patch on top of the other one and
applied it for 6.16.
Thanks!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-05-16 20:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-11 17:46 [PATCH v2] PM: thaw_processes: Rewrite restarting tasks log to remove stray *done.* Paul Menzel
2025-05-12 14:48 ` Paul Menzel
2025-05-16 20:25 ` Rafael J. Wysocki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox