svn commit: r315192 - head/sys/net

Andrey V. Elsukov ae at FreeBSD.org
Mon Mar 13 09:04:11 UTC 2017


Author: ae
Date: Mon Mar 13 09:04:10 2017
New Revision: 315192
URL: https://svnweb.freebsd.org/changeset/base/315192

Log:
  Ignore ifnet renaming in the bpf ifnet departure handler.
  
  PR:		213015
  MFC after:	1 week

Modified:
  head/sys/net/bpf.c

Modified: head/sys/net/bpf.c
==============================================================================
--- head/sys/net/bpf.c	Mon Mar 13 08:04:25 2017	(r315191)
+++ head/sys/net/bpf.c	Mon Mar 13 09:04:10 2017	(r315192)
@@ -2678,6 +2678,10 @@ bpf_ifdetach(void *arg __unused, struct 
 	struct bpf_if *bp, *bp_temp;
 	int nmatched = 0;
 
+	/* Ignore ifnet renaming. */
+	if (ifp->if_flags & IFF_RENAMING)
+		return;
+
 	BPF_LOCK();
 	/*
 	 * Find matching entries in free list.


More information about the svn-src-all mailing list