mirror of https://github.com/m-labs/artiq.git
liblwip/netif/liteethif: follow lwip doc recommendations regarding end of pbuf chain detection
This commit is contained in:
parent
7290013671
commit
459da723d3
|
@ -59,10 +59,15 @@ static err_t liteeth_low_level_output(struct netif *netif, struct pbuf *p)
|
||||||
struct pbuf *q;
|
struct pbuf *q;
|
||||||
|
|
||||||
txlen = 0;
|
txlen = 0;
|
||||||
for(q = p; q != NULL; q = q->next) {
|
q = p;
|
||||||
|
while(q) {
|
||||||
memcpy(txbuffer, q->payload, q->len);
|
memcpy(txbuffer, q->payload, q->len);
|
||||||
txbuffer += q->len;
|
txbuffer += q->len;
|
||||||
txlen += q->len;
|
txlen += q->len;
|
||||||
|
if(q->tot_len != q->len)
|
||||||
|
q = q->next;
|
||||||
|
else
|
||||||
|
q = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
ethmac_sram_reader_slot_write(txslot);
|
ethmac_sram_reader_slot_write(txslot);
|
||||||
|
@ -91,11 +96,14 @@ static struct pbuf *liteeth_low_level_input(struct netif *netif)
|
||||||
rxbuffer = rxbuffer0;
|
rxbuffer = rxbuffer0;
|
||||||
|
|
||||||
p = pbuf_alloc(PBUF_RAW, rxlen, PBUF_POOL);
|
p = pbuf_alloc(PBUF_RAW, rxlen, PBUF_POOL);
|
||||||
if(p != NULL) {
|
q = p;
|
||||||
for(q = p; q != NULL; q = q->next) {
|
while(q) {
|
||||||
memcpy(q->payload, rxbuffer, q->len);
|
memcpy(q->payload, rxbuffer, q->len);
|
||||||
rxbuffer += q->len;
|
rxbuffer += q->len;
|
||||||
}
|
if(q->tot_len != q->len)
|
||||||
|
q = q->next;
|
||||||
|
else
|
||||||
|
q = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
return p;
|
return p;
|
||||||
|
|
Loading…
Reference in New Issue