public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
* [patch]  PM / hibernate: memory corruption in resumedelay_setup()
@ 2014-05-14 12:57 Dan Carpenter
  2014-05-14 15:56 ` Pavel Machek
  0 siblings, 1 reply; 5+ messages in thread
From: Dan Carpenter @ 2014-05-14 12:57 UTC (permalink / raw)
  To: Rafael J. Wysocki, Fabian Frederick
  Cc: Len Brown, Pavel Machek, linux-pm, kernel-janitors

"resume_delay" is not an unsigned long, it's an int, so this will
corrupt memory on 64 bit systems.

Fixes: 317cf7e5e85e ('PM / hibernate: convert simple_strtoul to kstrtoul')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index 2377ff7..3659b26 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -1115,8 +1115,9 @@ static int __init resumewait_setup(char *str)
 
 static int __init resumedelay_setup(char *str)
 {
-	int rc = kstrtoul(str, 0, (unsigned long *)&resume_delay);
+	int rc;
 
+	rc = kstrtoint(str, 0, &resume_delay);
 	if (rc)
 		return rc;
 	return 1;

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

end of thread, other threads:[~2014-05-19 23:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-14 12:57 [patch] PM / hibernate: memory corruption in resumedelay_setup() Dan Carpenter
2014-05-14 15:56 ` Pavel Machek
2014-05-14 16:08   ` [patch v2] " Dan Carpenter
2014-05-14 20:29     ` Pavel Machek
2014-05-19 23:23       ` 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