Commit 34a78b48 authored by J. Bruce Fields's avatar J. Bruce Fields

nfsd4: read encoding cleanup

Trivial cleanup, no change in functionality.
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent dc97618d
...@@ -3075,6 +3075,7 @@ static __be32 nfsd4_encode_splice_read( ...@@ -3075,6 +3075,7 @@ static __be32 nfsd4_encode_splice_read(
struct file *file, unsigned long maxcount) struct file *file, unsigned long maxcount)
{ {
struct xdr_stream *xdr = &resp->xdr; struct xdr_stream *xdr = &resp->xdr;
struct xdr_buf *buf = xdr->buf;
u32 eof; u32 eof;
int starting_len = xdr->buf->len - 8; int starting_len = xdr->buf->len - 8;
int space_left; int space_left;
...@@ -3097,7 +3098,7 @@ static __be32 nfsd4_encode_splice_read( ...@@ -3097,7 +3098,7 @@ static __be32 nfsd4_encode_splice_read(
* page length; reset it so as not to confuse * page length; reset it so as not to confuse
* xdr_truncate_encode: * xdr_truncate_encode:
*/ */
xdr->buf->page_len = 0; buf->page_len = 0;
return nfserr; return nfserr;
} }
...@@ -3105,29 +3106,29 @@ static __be32 nfsd4_encode_splice_read( ...@@ -3105,29 +3106,29 @@ static __be32 nfsd4_encode_splice_read(
read->rd_fhp->fh_dentry->d_inode->i_size); read->rd_fhp->fh_dentry->d_inode->i_size);
tmp = htonl(eof); tmp = htonl(eof);
write_bytes_to_xdr_buf(xdr->buf, starting_len , &tmp, 4); write_bytes_to_xdr_buf(buf, starting_len , &tmp, 4);
tmp = htonl(maxcount); tmp = htonl(maxcount);
write_bytes_to_xdr_buf(xdr->buf, starting_len + 4, &tmp, 4); write_bytes_to_xdr_buf(buf, starting_len + 4, &tmp, 4);
resp->xdr.buf->page_len = maxcount; buf->page_len = maxcount;
xdr->buf->len += maxcount; buf->len += maxcount;
xdr->page_ptr += (maxcount + PAGE_SIZE - 1) / PAGE_SIZE; xdr->page_ptr += (maxcount + PAGE_SIZE - 1) / PAGE_SIZE;
xdr->iov = xdr->buf->tail; xdr->iov = buf->tail;
/* Use rest of head for padding and remaining ops: */ /* Use rest of head for padding and remaining ops: */
resp->xdr.buf->tail[0].iov_base = xdr->p; buf->tail[0].iov_base = xdr->p;
resp->xdr.buf->tail[0].iov_len = 0; buf->tail[0].iov_len = 0;
if (maxcount&3) { if (maxcount&3) {
p = xdr_reserve_space(xdr, 4); p = xdr_reserve_space(xdr, 4);
WRITE32(0); WRITE32(0);
resp->xdr.buf->tail[0].iov_base += maxcount&3; buf->tail[0].iov_base += maxcount&3;
resp->xdr.buf->tail[0].iov_len = 4 - (maxcount&3); buf->tail[0].iov_len = 4 - (maxcount&3);
xdr->buf->len -= (maxcount&3); buf->len -= (maxcount&3);
} }
space_left = min_t(int, (void *)xdr->end - (void *)xdr->p, space_left = min_t(int, (void *)xdr->end - (void *)xdr->p,
xdr->buf->buflen - xdr->buf->len); buf->buflen - buf->len);
xdr->buf->buflen = xdr->buf->len + space_left; buf->buflen = buf->len + space_left;
xdr->end = (__be32 *)((void *)xdr->end + space_left); xdr->end = (__be32 *)((void *)xdr->end + space_left);
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment