svn commit: r281264 - stable/10/sys/dev/cxgbe

Navdeep Parhar np at FreeBSD.org
Wed Apr 8 05:02:23 UTC 2015


Author: np
Date: Wed Apr  8 05:02:21 2015
New Revision: 281264
URL: https://svnweb.freebsd.org/changeset/base/281264

Log:
  MFC r279092:
  
  cxgbe(4): there is no need to force an "unimplemented" panic needlessly.
  The calls to free_nm_txq and free_nm_rxq are made just a few lines prior
  to the panic.

Modified:
  stable/10/sys/dev/cxgbe/t4_sge.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/cxgbe/t4_sge.c
==============================================================================
--- stable/10/sys/dev/cxgbe/t4_sge.c	Wed Apr  8 04:40:04 2015	(r281263)
+++ stable/10/sys/dev/cxgbe/t4_sge.c	Wed Apr  8 05:02:21 2015	(r281264)
@@ -1244,9 +1244,6 @@ t4_teardown_port_queues(struct port_info
 			free_ofld_rxq(pi, ofld_rxq);
 	}
 #endif
-#ifdef DEV_NETMAP
-	CXGBE_UNIMPLEMENTED(__func__);
-#endif
 
 	return (0);
 }


More information about the svn-src-all mailing list