tags 652056 + patch moreinfo quit AymanHotmail wrote:
>> Is it also a kernel BUG at [...]/net/core/dev.c:3719, like the >> original one, and is the backtrace the same? > > Well according to Image_02, it give a kernel BUG at > [...]/net/core/dev.c:3831 , and the backtrace is the same. Thanks much. Can you try this patch (against a sid or upstream 3.2.1 kernel)? See [1] for instructions. [1] http://kernel-handbook.alioth.debian.org/ch-common-tasks.html commit b189e810619a Author: françois romieu <[email protected]> Date: Sun Jan 8 13:41:33 2012 +0000 8139cp: fix missing napi_gro_flush. The driver uses __napi_complete and napi_gro_receive. Without it, the driver hits the BUG_ON(n->gro_list) assertion hard in __napi_complete. Signed-off-by: Francois Romieu <[email protected]> Tested-by: Marin Glibic <[email protected]> Signed-off-by: David S. Miller <[email protected]> diff --git a/drivers/net/ethernet/realtek/8139cp.c b/drivers/net/ethernet/realtek/8139cp.c index cc6b391479ca..abc79076f867 100644 --- a/drivers/net/ethernet/realtek/8139cp.c +++ b/drivers/net/ethernet/realtek/8139cp.c @@ -563,6 +563,7 @@ rx_next: if (cpr16(IntrStatus) & cp_rx_intr_mask) goto rx_status_loop; + napi_gro_flush(napi); spin_lock_irqsave(&cp->lock, flags); __napi_complete(napi); cpw16_f(IntrMask, cp_intr_mask); -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/20120126084132.GB1911@burratino

