diff options
Diffstat (limited to 'net')
| -rw-r--r-- | net/sunrpc/xdr.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/xdr.c b/net/sunrpc/xdr.c index f87a2d8f23a7..5d2b3e6979fb 100644 --- a/net/sunrpc/xdr.c +++ b/net/sunrpc/xdr.c @@ -984,7 +984,7 @@ static noinline __be32 *xdr_get_next_encode_buffer(struct xdr_stream *xdr,  	p = page_address(*xdr->page_ptr);  	xdr->p = p + frag2bytes;  	space_left = xdr->buf->buflen - xdr->buf->len; -	if (space_left - nbytes >= PAGE_SIZE) +	if (space_left - frag1bytes >= PAGE_SIZE)  		xdr->end = p + PAGE_SIZE;  	else  		xdr->end = p + space_left - frag1bytes;  | 
