The patch titled declance: Fix RX ownership handover has been added to the -mm tree. Its filename is declance-fix-pmax-and-pmad-support-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: declance: Fix RX ownership handover From: "Maciej W. Rozycki" <macro@xxxxxxxxxxxxxx> The change for PMAD support introduced a bug, where the ownership of RX descriptors was given back to the LANCE in the wrong way. Occasional lockups would happen as a result. This is a fix for this problem. Signed-off-by: Maciej W. Rozycki <macro@xxxxxxxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Cc: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/declance.c | 1 - 1 file changed, 1 deletion(-) diff -puN drivers/net/declance.c~declance-fix-pmax-and-pmad-support-fix drivers/net/declance.c --- a/drivers/net/declance.c~declance-fix-pmax-and-pmad-support-fix +++ a/drivers/net/declance.c @@ -628,7 +628,6 @@ static int lance_rx(struct net_device *d /* Return the packet to the pool */ *rds_ptr(rd, mblength, lp->type) = 0; *rds_ptr(rd, length, lp->type) = -RX_BUFF_SIZE | 0xf000; - *rds_ptr(rd, rmd1, lp->type) = LE_R1_OWN; *rds_ptr(rd, rmd1, lp->type) = ((lp->rx_buf_ptr_lnc[entry] >> 16) & 0xff) | LE_R1_OWN; lp->rx_new = (entry + 1) & RX_RING_MOD_MASK; _ Patches currently in -mm which might be from macro@xxxxxxxxxxxxxx are git-netdev-all.patch declance-fix-pmax-and-pmad-support.patch declance-fix-pmax-and-pmad-support-fix.patch dz-fixes-to-make-it-work.patch dz-fixes-to-make-it-work-fix.patch pmagb-b-fb-fix-a-default-clock.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html