Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Apr 2019 08:01:59 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r346951 - stable/11/sys/dev/cxgbe
Message-ID:  <201904300801.x3U81xB2072703@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: np
Date: Tue Apr 30 08:01:59 2019
New Revision: 346951
URL: https://svnweb.freebsd.org/changeset/base/346951

Log:
  MFC r343233:
  
  cxgbe(4): Clear the reply-pending status of a hashfilter when the reply
  indicates an error.  Also, do not remove it twice from the hf list in
  this case.
  
  Submitted by:	Krishnamraju Eraparaju @ Chelsio
  Sponsored by:	Chelsio Communicatons

Modified:
  stable/11/sys/dev/cxgbe/t4_filter.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/cxgbe/t4_filter.c
==============================================================================
--- stable/11/sys/dev/cxgbe/t4_filter.c	Tue Apr 30 07:53:15 2019	(r346950)
+++ stable/11/sys/dev/cxgbe/t4_filter.c	Tue Apr 30 08:01:59 2019	(r346951)
@@ -1229,6 +1229,7 @@ t4_hashfilter_ao_rpl(struct sge_iq *iq, const struct r
 		/* provide errno instead of tid to ioctl */
 		f->tid = act_open_rpl_status_to_errno(status);
 		f->valid = 0;
+		f->pending = 0;
 		if (act_open_has_tid(status))
 			release_tid(sc, GET_TID(cpl), &sc->sge.ctrlq[0]);
 		free_filter_resources(f);
@@ -1587,7 +1588,6 @@ set_hashfilter(struct adapter *sc, struct t4_filter *t
 				f->locked = 0;
 				t->idx = f->tid;
 			} else {
-				remove_hf(sc, f);
 				rc = f->tid;
 				free(f, M_CXGBE);
 			}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904300801.x3U81xB2072703>