nfsd: fix nfsd_vfs_read() splice actor setup

When nfsd was transitioned to use splice instead of sendfile() for data
transfers, a line setting the page index was lost. Restore it, so that
nfsd is functional when that path is used.

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Jens Axboe and committed by Linus Torvalds 4fbef206 4fd88517

+1
+1
fs/nfsd/vfs.c
··· 879 .u.data = rqstp, 880 }; 881 882 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor); 883 } else { 884 oldfs = get_fs();
··· 879 .u.data = rqstp, 880 }; 881 882 + rqstp->rq_resused = 1; 883 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor); 884 } else { 885 oldfs = get_fs();