All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] debugfs: Fix debugfs_read_file_str()
@ 2021-05-27  9:11 Dietmar Eggemann
  2021-05-29  1:51 ` Steven Rostedt
  2021-06-04  8:39 ` Peter Zijlstra
  0 siblings, 2 replies; 4+ messages in thread
From: Dietmar Eggemann @ 2021-05-27  9:11 UTC (permalink / raw)
  To: Ingo Molnar, Peter Zijlstra
  Cc: Juri Lelli, Vincent Guittot, Steven Rostedt, Greg Kroah-Hartman,
	Valentin Schneider, linux-kernel

Read the entire size of the buffer, including the trailing new line
character.
Discovered while reading the sched domain names of CPU0:

before:

cat /sys/kernel/debug/sched/domains/cpu0/domain*/name
SMTMCDIE

after:

cat /sys/kernel/debug/sched/domains/cpu0/domain*/name
SMT
MC
DIE

Fixes: 9af0440ec86eb ("debugfs: Implement debugfs_create_str()")
Signed-off-by: Dietmar Eggemann <dietmar.eggemann@arm.com>
---
 fs/debugfs/file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c
index e813acfaa6e8..ba7c01cd9a5d 100644
--- a/fs/debugfs/file.c
+++ b/fs/debugfs/file.c
@@ -893,7 +893,7 @@ ssize_t debugfs_read_file_str(struct file *file, char __user *user_buf,
 
 	copy[copy_len] = '\n';
 
-	ret = simple_read_from_buffer(user_buf, count, ppos, copy, copy_len);
+	ret = simple_read_from_buffer(user_buf, count, ppos, copy, len);
 	kfree(copy);
 
 	return ret;
-- 
2.25.1


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

end of thread, other threads:[~2021-06-04  8:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-27  9:11 [PATCH] debugfs: Fix debugfs_read_file_str() Dietmar Eggemann
2021-05-29  1:51 ` Steven Rostedt
2021-06-04  8:39 ` Peter Zijlstra
2021-06-04  8:41   ` Greg Kroah-Hartman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.