Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 May 2019 17:59:02 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@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: r347846 - stable/11/sys/ofed/drivers/infiniband/ulp/ipoib
Message-ID:  <201905161759.x4GHx2uf022622@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Thu May 16 17:59:02 2019
New Revision: 347846
URL: https://svnweb.freebsd.org/changeset/base/347846

Log:
  MFC r347291:
  Handle IB_EVENT_DEVICE_FATAL event in ipoib.
  Perform flush if IB_EVENT_DEVICE_FATAL was received.
  
  Submitted by:	slavash@
  Sponsored by:	Mellanox Technologies

Modified:
  stable/11/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_verbs.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_verbs.c
==============================================================================
--- stable/11/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_verbs.c	Thu May 16 17:57:55 2019	(r347845)
+++ stable/11/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_verbs.c	Thu May 16 17:59:02 2019	(r347846)
@@ -280,7 +280,8 @@ void ipoib_event(struct ib_event_handler *handler,
 		queue_work(ipoib_workqueue, &priv->flush_light);
 	} else if (record->event == IB_EVENT_PORT_ERR ||
 		   record->event == IB_EVENT_PORT_ACTIVE ||
-		   record->event == IB_EVENT_LID_CHANGE) {
+		   record->event == IB_EVENT_LID_CHANGE ||
+		   record->event == IB_EVENT_DEVICE_FATAL) {
 		queue_work(ipoib_workqueue, &priv->flush_normal);
 	} else if (record->event == IB_EVENT_PKEY_CHANGE) {
 		queue_work(ipoib_workqueue, &priv->flush_heavy);



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