OSDN Git Service

CIFS: Fix splice read for non-cached files
authorPavel Shilovsky <pshilov@microsoft.com>
Thu, 19 Jan 2017 21:53:15 +0000 (13:53 -0800)
committerSteve French <smfrench@gmail.com>
Wed, 1 Feb 2017 22:46:34 +0000 (16:46 -0600)
commit9c25702cee1405099f982894c865c163de7909a8
tree7cf7049307af9ce699131499a9e5f646b8c9dfef
parentb9be76d585d48cb25af8db0d35e1ef9030fbe13a
CIFS: Fix splice read for non-cached files

Currently we call copy_page_to_iter() for uncached reading into a pipe.
This is wrong because it treats pages as VFS cache pages and copies references
rather than actual data. When we are trying to read from the pipe we end up
calling page_cache_pipe_buf_confirm() which returns -ENODATA. This error
is translated into 0 which is returned to a user.

This issue is reproduced by running xfs-tests suite (generic test #249)
against mount points with "cache=none". Fix it by mapping pages manually
and calling copy_to_iter() that copies data into the pipe.

Cc: Stable <stable@vger.kernel.org>
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
fs/cifs/file.c