Commit fec7e11a authored by Paul Durrant's avatar Paul Durrant Committed by Greg Kroah-Hartman

xen-netback: remove pointless clause from if statement

[ Upstream commit 0576eddf ]

This patch removes a test in start_new_rx_buffer() that checks whether
a copy operation is less than MAX_BUFFER_OFFSET in length, since
MAX_BUFFER_OFFSET is defined to be PAGE_SIZE and the only caller of
start_new_rx_buffer() already limits copy operations to PAGE_SIZE or less.
Signed-off-by: default avatarPaul Durrant <paul.durrant@citrix.com>
Cc: Ian Campbell <ian.campbell@citrix.com>
Cc: Wei Liu <wei.liu2@citrix.com>
Cc: Sander Eikelenboom <linux@eikelenboom.it>
Reported-By: default avatarSander Eikelenboom <linux@eikelenboom.it>
Tested-By: default avatarSander Eikelenboom <linux@eikelenboom.it>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1bc0f3b7
...@@ -338,8 +338,8 @@ static bool start_new_rx_buffer(int offset, unsigned long size, int head) ...@@ -338,8 +338,8 @@ static bool start_new_rx_buffer(int offset, unsigned long size, int head)
* into multiple copies tend to give large frags their * into multiple copies tend to give large frags their
* own buffers as before. * own buffers as before.
*/ */
if ((offset + size > MAX_BUFFER_OFFSET) && BUG_ON(size > MAX_BUFFER_OFFSET);
(size <= MAX_BUFFER_OFFSET) && offset && !head) if ((offset + size > MAX_BUFFER_OFFSET) && offset && !head)
return true; return true;
return false; return false;
......
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