svn commit: r202874 - stable/8/sys/dev/cxgb

Navdeep Parhar np at FreeBSD.org
Sat Jan 23 08:37:04 UTC 2010


Author: np
Date: Sat Jan 23 08:37:04 2010
New Revision: 202874
URL: http://svn.freebsd.org/changeset/base/202874

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

Modified:
  stable/8/sys/dev/cxgb/cxgb_main.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/dev/cxgb/cxgb_main.c
==============================================================================
--- stable/8/sys/dev/cxgb/cxgb_main.c	Sat Jan 23 07:57:17 2010	(r202873)
+++ stable/8/sys/dev/cxgb/cxgb_main.c	Sat Jan 23 08:37:04 2010	(r202874)
@@ -2078,6 +2078,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-all mailing list