diff options
author | 2020-09-25 10:46:11 -0700 | |
---|---|---|
committer | 2020-09-25 10:46:11 -0700 | |
commit | 6d28cf7dfede6cfca5119a0d415a6a447c68f3a0 (patch) | |
tree | 502b4318613e18453544e18cb0e52a171968a179 | |
parent | Merge tag 'pm-5.9-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm (diff) | |
parent | SUNRPC: Fix svc_flush_dcache() (diff) | |
download | wireguard-linux-6d28cf7dfede6cfca5119a0d415a6a447c68f3a0.tar.xz wireguard-linux-6d28cf7dfede6cfca5119a0d415a6a447c68f3a0.zip |
Merge tag 'nfsd-5.9-2' of git://git.linux-nfs.org/projects/cel/cel-2.6
Pull NFS server fix from Chuck Lever:
"Fix incorrect calculation on platforms that implement
flush_dcache_page()"
* tag 'nfsd-5.9-2' of git://git.linux-nfs.org/projects/cel/cel-2.6:
SUNRPC: Fix svc_flush_dcache()
Diffstat (limited to '')
-rw-r--r-- | net/sunrpc/svcsock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c index d5805fa1d066..c2752e2b9ce3 100644 --- a/net/sunrpc/svcsock.c +++ b/net/sunrpc/svcsock.c @@ -228,7 +228,7 @@ static int svc_one_sock_name(struct svc_sock *svsk, char *buf, int remaining) static void svc_flush_bvec(const struct bio_vec *bvec, size_t size, size_t seek) { struct bvec_iter bi = { - .bi_size = size, + .bi_size = size + seek, }; struct bio_vec bv; |