svn commit: r330316 - stable/11/etc
Eitan Adler
eadler at FreeBSD.org
Sat Mar 3 10:15:38 UTC 2018
Author: eadler
Date: Sat Mar 3 10:15:37 2018
New Revision: 330316
URL: https://svnweb.freebsd.org/changeset/base/330316
Log:
MFC r313276:
Use kldload -n when loading if_deqna
This fixes if_deqna from being loaded by accident twice if it's already loaded
in the kernel.
Modified:
stable/11/etc/devd.conf
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/etc/devd.conf
==============================================================================
--- stable/11/etc/devd.conf Sat Mar 3 10:01:12 2018 (r330315)
+++ stable/11/etc/devd.conf Sat Mar 3 10:15:37 2018 (r330316)
@@ -272,7 +272,7 @@ nomatch 10 {
match "bus" "pccard[0-9]+";
match "manufacturer" "0x1234";
match "product" "0x2323";
- action "kldload if_deqna";
+ action "kldload -n if_deqna";
};
attach 10 {
device-name "deqna[0-9]+";
More information about the svn-src-stable-11
mailing list