svn commit: r202875 - stable/7/sys/dev/cxgb

Navdeep Parhar np at FreeBSD.org
Sat Jan 23 08:43:11 UTC 2010


Author: np
Date: Sat Jan 23 08:43:11 2010
New Revision: 202875
URL: http://svn.freebsd.org/changeset/base/202875

Log:
  MFC r202863
  
  Don't forget to release the adapter lock for a no-op.

Modified:
  stable/7/sys/dev/cxgb/cxgb_main.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/dev/cxgb/cxgb_main.c
==============================================================================
--- stable/7/sys/dev/cxgb/cxgb_main.c	Sat Jan 23 08:37:04 2010	(r202874)
+++ stable/7/sys/dev/cxgb/cxgb_main.c	Sat Jan 23 08:43:11 2010	(r202875)
@@ -2061,6 +2061,8 @@ fail:
 			p->if_flags = ifp->if_flags;
 		} else if (ifp->if_drv_flags & IFF_DRV_RUNNING)
 			error = cxgb_uninit_locked(p);
+		else
+			ADAPTER_UNLOCK(sc);
 
 		ADAPTER_LOCK_ASSERT_NOTOWNED(sc);
 		break;


More information about the svn-src-stable mailing list