projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d5226fa
)
help_next should increase position index
author
Vasily Averin
<vvs@virtuozzo.com>
Fri, 24 Jan 2020 06:10:47 +0000
(09:10 +0300)
committer
Mike Marshall
<hubcap@omnibond.com>
Tue, 4 Feb 2020 20:22:04 +0000
(15:22 -0500)
if seq_file .next fuction does not change position index,
read after some lseek can generate unexpected output.
https://bugzilla.kernel.org/show_bug.cgi?id=206283
Signed-off-by: Vasily Averin <vvs@virtuozzo.com>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
fs/orangefs/orangefs-debugfs.c
patch
|
blob
|
history
diff --git
a/fs/orangefs/orangefs-debugfs.c
b/fs/orangefs/orangefs-debugfs.c
index 25543a966c48661085cb0b7c3437d5deff332ed4..29eaa45443727969bec61a845f8ea02061483574 100644
(file)
--- a/
fs/orangefs/orangefs-debugfs.c
+++ b/
fs/orangefs/orangefs-debugfs.c
@@
-273,6
+273,7
@@
static void *help_start(struct seq_file *m, loff_t *pos)
static void *help_next(struct seq_file *m, void *v, loff_t *pos)
{
+ (*pos)++;
gossip_debug(GOSSIP_DEBUGFS_DEBUG, "help_next: start\n");
return NULL;