Author: np
Date: Mon Feb 13 19:41:01 2012
New Revision: 231607
URL: http://svn.freebsd.org/changeset/base/231607

Log:
  MFC r231592:
  Use the non-sleeping variang of t4_wr_mbox in code that can be called
  with locks held.

Modified:
  stable/9/sys/dev/cxgbe/common/t4_hw.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/dev/cxgbe/common/t4_hw.c
==============================================================================
--- stable/9/sys/dev/cxgbe/common/t4_hw.c       Mon Feb 13 19:36:09 2012        
(r231606)
+++ stable/9/sys/dev/cxgbe/common/t4_hw.c       Mon Feb 13 19:41:01 2012        
(r231607)
@@ -4314,7 +4314,7 @@ int t4_change_mac(struct adapter *adap, 
                                V_FW_VI_MAC_CMD_IDX(idx));
        memcpy(p->macaddr, addr, sizeof(p->macaddr));
 
-       ret = t4_wr_mbox(adap, mbox, &c, sizeof(c), &c);
+       ret = t4_wr_mbox_ns(adap, mbox, &c, sizeof(c), &c);
        if (ret == 0) {
                ret = G_FW_VI_MAC_CMD_IDX(ntohs(p->valid_to_idx));
                if (ret >= FW_CLS_TCAM_NUM_ENTRIES)
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to