mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:02:20 +00:00
help_next should increase position index
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>
This commit is contained in:
parent
d5226fa6db
commit
9f198a2ac5
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user