[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1664a8ea72b34db4bef860004166875ab70898ee.1433442778.git.joe@perches.com>
Date: Thu, 4 Jun 2015 11:36:44 -0700
From: Joe Perches <joe@...ches.com>
To: linux-pm@...r.kernel.org, "Rafael J. Wysocki" <rjw@...ysocki.net>,
Len Brown <len.brown@...el.com>, Pavel Machek <pavel@....cz>
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH 1/6] power: hibernate: Use separate messages for "Syncing filesystems"
Add the ability to see how long it takes to sync the filesystems
via the printk time mechanism.
Start to standardize the printk "PM: doing something...done"
messages on two separate lines.
Signed-off-by: Joe Perches <joe@...ches.com>
---
kernel/power/hibernate.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index 2329daa..2466d78 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -663,9 +663,9 @@ int hibernate(void)
if (error)
goto Exit;
- printk(KERN_INFO "PM: Syncing filesystems ... ");
+ printk(KERN_INFO "PM: Syncing filesystems ...\n");
sys_sync();
- printk("done.\n");
+ printk(KERN_INFO "PM: Syncing filesystems: done\n");
error = freeze_processes();
if (error)
--
2.1.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists