Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Jan 2019 19:20:14 +0000 (UTC)
From:      Stephen Hurd <shurd@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: r343099 - stable/11/sys/net
Message-ID:  <201901161920.x0GJKEgm045808@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: shurd
Date: Wed Jan 16 19:20:14 2019
New Revision: 343099
URL: https://svnweb.freebsd.org/changeset/base/343099

Log:
  MFC r342855:
  
  Use iflib_if_init_locked() during resume instead of iflib_init_locked().
  
  iflib_init_locked() assumes that iflib_stop() has been called, however,
  it is not called for suspend.  iflib_if_init_locked() calls stop then init,
  so fixes the problem.
  
  This was causing errors after a resume from suspend.
  
  PR:		224059
  Reported by:	zeising
  Sponsored by:	Limelight Networks

Modified:
  stable/11/sys/net/iflib.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/net/iflib.c
==============================================================================
--- stable/11/sys/net/iflib.c	Wed Jan 16 15:19:09 2019	(r343098)
+++ stable/11/sys/net/iflib.c	Wed Jan 16 19:20:14 2019	(r343099)
@@ -4540,7 +4540,7 @@ iflib_device_resume(device_t dev)
 
 	CTX_LOCK(ctx);
 	IFDI_RESUME(ctx);
-	iflib_init_locked(ctx);
+	iflib_if_init_locked(ctx);
 	CTX_UNLOCK(ctx);
 	for (int i = 0; i < NTXQSETS(ctx); i++, txq++)
 		iflib_txq_check_drain(txq, IFLIB_RESTART_BUDGET);



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