svn commit: r231607 - stable/9/sys/dev/cxgbe/common
Navdeep Parhar
np at FreeBSD.org
Mon Feb 13 19:41:01 UTC 2012
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)
More information about the svn-src-stable-9
mailing list