diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/sunrpc/xdr.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/sunrpc/xdr.c b/net/sunrpc/xdr.c index 08f50afd5f2a..56055632f151 100644 --- a/net/sunrpc/xdr.c +++ b/net/sunrpc/xdr.c | |||
@@ -318,7 +318,10 @@ xdr_shrink_bufhead(struct xdr_buf *buf, size_t len) | |||
318 | 318 | ||
319 | tail = buf->tail; | 319 | tail = buf->tail; |
320 | head = buf->head; | 320 | head = buf->head; |
321 | BUG_ON (len > head->iov_len); | 321 | |
322 | WARN_ON_ONCE(len > head->iov_len); | ||
323 | if (len > head->iov_len) | ||
324 | len = head->iov_len; | ||
322 | 325 | ||
323 | /* Shift the tail first */ | 326 | /* Shift the tail first */ |
324 | if (tail->iov_len != 0) { | 327 | if (tail->iov_len != 0) { |