diff options
Diffstat (limited to 'net/sunrpc/socklib.c')
-rw-r--r-- | net/sunrpc/socklib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sunrpc/socklib.c b/net/sunrpc/socklib.c index 145e6784f508..0a648c502fc3 100644 --- a/net/sunrpc/socklib.c +++ b/net/sunrpc/socklib.c | |||
@@ -114,7 +114,7 @@ ssize_t xdr_partial_copy_from_skb(struct xdr_buf *xdr, unsigned int base, struct | |||
114 | } | 114 | } |
115 | 115 | ||
116 | len = PAGE_CACHE_SIZE; | 116 | len = PAGE_CACHE_SIZE; |
117 | kaddr = kmap_atomic(*ppage, KM_SKB_SUNRPC_DATA); | 117 | kaddr = kmap_atomic(*ppage); |
118 | if (base) { | 118 | if (base) { |
119 | len -= base; | 119 | len -= base; |
120 | if (pglen < len) | 120 | if (pglen < len) |
@@ -127,7 +127,7 @@ ssize_t xdr_partial_copy_from_skb(struct xdr_buf *xdr, unsigned int base, struct | |||
127 | ret = copy_actor(desc, kaddr, len); | 127 | ret = copy_actor(desc, kaddr, len); |
128 | } | 128 | } |
129 | flush_dcache_page(*ppage); | 129 | flush_dcache_page(*ppage); |
130 | kunmap_atomic(kaddr, KM_SKB_SUNRPC_DATA); | 130 | kunmap_atomic(kaddr); |
131 | copied += ret; | 131 | copied += ret; |
132 | if (ret != len || !desc->count) | 132 | if (ret != len || !desc->count) |
133 | goto out; | 133 | goto out; |