svn commit: r213663 - stable/7/sys/dev/sf

Pyun YongHyeon yongari at FreeBSD.org
Sat Oct 9 20:52:37 UTC 2010


Author: yongari
Date: Sat Oct  9 20:52:36 2010
New Revision: 213663
URL: http://svn.freebsd.org/changeset/base/213663

Log:
  Fix build breakage introducted in r213604.

Modified:
  stable/7/sys/dev/sf/if_sf.c

Modified: stable/7/sys/dev/sf/if_sf.c
==============================================================================
--- stable/7/sys/dev/sf/if_sf.c	Sat Oct  9 20:20:27 2010	(r213662)
+++ stable/7/sys/dev/sf/if_sf.c	Sat Oct  9 20:52:36 2010	(r213663)
@@ -1824,7 +1824,7 @@ sf_poll(struct ifnet *ifp, enum poll_cmd
 				ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
 				sf_init_locked(sc);
 				SF_UNLOCK(sc);
-				return (rx_npkts);
+				return;
 			} else if ((status & SF_ISR_NO_TX_CSUM) != 0) {
 				sc->sf_statistics.sf_tx_gfp_stall++;
 #ifdef	SF_GFP_DEBUG


More information about the svn-src-stable-7 mailing list