Commit 280caac0 authored by J. Bruce Fields's avatar J. Bruce Fields

rpc: change comments to assertions

Reported-by: default avatarAndrea Arcangeli <aarcange@redhat.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent ed38c069
...@@ -619,7 +619,8 @@ void xdr_truncate_encode(struct xdr_stream *xdr, size_t len) ...@@ -619,7 +619,8 @@ void xdr_truncate_encode(struct xdr_stream *xdr, size_t len)
buf->len -= fraglen; buf->len -= fraglen;
if (tail->iov_len) { if (tail->iov_len) {
xdr->p = tail->iov_base + tail->iov_len; xdr->p = tail->iov_base + tail->iov_len;
/* xdr->end, xdr->iov should be set already */ WARN_ON_ONCE(!xdr->end);
WARN_ON_ONCE(!xdr->iov);
return; return;
} }
WARN_ON_ONCE(fraglen); WARN_ON_ONCE(fraglen);
...@@ -635,7 +636,7 @@ void xdr_truncate_encode(struct xdr_stream *xdr, size_t len) ...@@ -635,7 +636,7 @@ void xdr_truncate_encode(struct xdr_stream *xdr, size_t len)
xdr->p = page_address(*xdr->page_ptr); xdr->p = page_address(*xdr->page_ptr);
xdr->end = (void *)xdr->p + PAGE_SIZE; xdr->end = (void *)xdr->p + PAGE_SIZE;
xdr->p = (void *)xdr->p + (new % PAGE_SIZE); xdr->p = (void *)xdr->p + (new % PAGE_SIZE);
/* xdr->iov should already be NULL */ WARN_ON_ONCE(xdr->iov);
return; return;
} }
if (fraglen) { if (fraglen) {
......
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