Home
last modified time | relevance | path

Searched refs:cause (Results 1 – 2 of 2) sorted by relevance

/sys/dev/
De1000.c278 uint32_t cause = MMIO_Read32(dev, E1000_REG_ICR); in E1000_Interrupt() local
281 if (cause & ICR_LSC) { in E1000_Interrupt()
282 cause &= ~ICR_LSC; in E1000_Interrupt()
287 if (cause & 3) { in E1000_Interrupt()
288 cause &= ~3; in E1000_Interrupt()
293 if (cause & ICR_RXO) { in E1000_Interrupt()
294 cause &= ~ICR_RXO; in E1000_Interrupt()
301 if (cause & ICR_RXT0) { in E1000_Interrupt()
302 cause &= ~ICR_RXT0; in E1000_Interrupt()
306 if (cause != 0) { in E1000_Interrupt()
[all …]
/lib/liblwip/
DCHANGELOG722 * api_msg.c: Fixed bug #29617 (sometime cause stall on delete listening
2215 this change cause an API breakage for netconn_addr, since a parameter
2216 type change. Any compiler should cause an error without any changes in
2526 result and can cause a crash. lwip_send now check netbuf_ref result.
2539 * api_lib.c: patch for netconn_write(), fixes a possible race condition which cause
2663 * pbuf.c: Fix BUG#19168 - pbuf_free can cause deadlock (if
3088 * A bug in tcp_parseopt() could cause the stack to hang because of a
3166 * IP forwarding could cause memory leakage. This has been fixed.