Skip to content
Snippets Groups Projects
Commit b94e72e2 authored by Casey Leedom's avatar Casey Leedom Committed by David S. Miller
Browse files

cxgb4vf: fix bug in Generic Receive Offload


Fix botch in Generic Receive Offload (the Packet Gather List Total length
field wasn't being initialized).

Signed-off-by: default avatarCasey Leedom <leedom@chelsio.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 53c7886c
No related branches found
No related tags found
No related merge requests found
...@@ -1679,6 +1679,7 @@ int process_responses(struct sge_rspq *rspq, int budget) ...@@ -1679,6 +1679,7 @@ int process_responses(struct sge_rspq *rspq, int budget)
} }
len = RSPD_LEN(len); len = RSPD_LEN(len);
} }
gl.tot_len = len;
/* /*
* Gather packet fragments. * Gather packet fragments.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment