svn commit: r231599 - stable/9/sys/dev/cxgbe
Navdeep Parhar
np at FreeBSD.org
Mon Feb 13 19:25:38 UTC 2012
Author: np
Date: Mon Feb 13 19:25:37 2012
New Revision: 231599
URL: http://svn.freebsd.org/changeset/base/231599
Log:
MFC r231120:
Acquire the adapter lock before updating fields of the filter structure.
Modified:
stable/9/sys/dev/cxgbe/t4_main.c
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/dev/cxgbe/t4_main.c
==============================================================================
--- stable/9/sys/dev/cxgbe/t4_main.c Mon Feb 13 19:18:08 2012 (r231598)
+++ stable/9/sys/dev/cxgbe/t4_main.c Mon Feb 13 19:25:37 2012 (r231599)
@@ -4839,22 +4839,22 @@ filter_rpl(struct sge_iq *iq, const stru
unsigned int rc = G_COOKIE(rpl->cookie);
struct filter_entry *f = &sc->tids.ftid_tab[idx];
+ ADAPTER_LOCK(sc);
if (rc == FW_FILTER_WR_FLT_ADDED) {
f->smtidx = (be64toh(rpl->oldval) >> 24) & 0xff;
f->pending = 0; /* asynchronous setup completed */
f->valid = 1;
- return (0);
- }
+ } else {
+ if (rc != FW_FILTER_WR_FLT_DELETED) {
+ /* Add or delete failed, display an error */
+ log(LOG_ERR,
+ "filter %u setup failed with error %u\n",
+ idx, rc);
+ }
- if (rc != FW_FILTER_WR_FLT_DELETED) {
- /* Add or delete failed, need to display an error */
- device_printf(sc->dev,
- "filter %u setup failed with error %u\n", idx, rc);
+ clear_filter(f);
+ sc->tids.ftids_in_use--;
}
-
- clear_filter(f);
- ADAPTER_LOCK(sc);
- sc->tids.ftids_in_use--;
ADAPTER_UNLOCK(sc);
}
More information about the svn-src-stable-9
mailing list