]> git.baikalelectronics.ru Git - kernel.git/commit
pipe: fix incorrect caching of pipe state over pipe_wait()
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 6 Dec 2019 20:40:35 +0000 (12:40 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 6 Dec 2019 20:40:35 +0000 (12:40 -0800)
commita7ba9eacb9136595e55e63477483b5f5fec4f618
tree1c2822b9dad205cc2b594203b5e4e3614acbb831
parentaa8559fa419c0addf1c99c2aff69b10a84606b85
pipe: fix incorrect caching of pipe state over pipe_wait()

Similarly to commit 233af5126b2b ("pipe: Fix missing mask update after
pipe_wait()") this fixes a case where the pipe rewrite ended up caching
the pipe state incorrectly over a pipe lock drop event.

It wasn't quite as obvious, because you needed to splice data from a
pipe to a file, which is a fairly unusual operation, but it's completely
wrong.

Make sure we load the pipe head/tail/size information only after we've
waited for there to be data in the pipe.

While in that file, also make one of the splice helper functions use the
canonical arghument order for pipe_empty().  That's syntactic - pipe
emptiness is just that head and tail are equal, and thus mixing up head
and tail doesn't really matter.  It's still wrong, though.

Reported-by: David Sterba <dsterba@suse.cz>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/splice.c