aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Bowling <kbowling@FreeBSD.org>2021-04-15 16:48:41 +0000
committerKevin Bowling <kbowling@FreeBSD.org>2021-05-18 07:48:04 +0000
commit94c02a765cb7f68c80844acb5898be90dc4069c5 (patch)
treee24114050e30cff8d99d340e3cc4ce8d9da360be
parent8addaaa5fb864190882dfcf1a1ad3d7af802dd35 (diff)
downloadsrc-94c02a765cb7f68c80844acb5898be90dc4069c5.tar.gz
src-94c02a765cb7f68c80844acb5898be90dc4069c5.zip
e1000: disable hw.em.sbp debug setting
This is a debugging tunable that shouldn't have retained this setting after the initial iflib conversion of the driver PR: 248934 Reported by: Franco Fichtner <franco@opnsense.org> Reviewed by: markj MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D29768 (cherry picked from commit 548d8a131d536d5f8e0818ff8cff7ffd63dbedfe)
-rw-r--r--sys/dev/e1000/if_em.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/e1000/if_em.c b/sys/dev/e1000/if_em.c
index 32c07f05dec8..2c13f7750af2 100644
--- a/sys/dev/e1000/if_em.c
+++ b/sys/dev/e1000/if_em.c
@@ -508,7 +508,7 @@ SYSCTL_INT(_hw_em, OID_AUTO, smart_pwr_down, CTLFLAG_RDTUN, &em_smart_pwr_down,
0, "Set to true to leave smart power down enabled on newer adapters");
/* Controls whether promiscuous also shows bad packets */
-static int em_debug_sbp = TRUE;
+static int em_debug_sbp = FALSE;
SYSCTL_INT(_hw_em, OID_AUTO, sbp, CTLFLAG_RDTUN, &em_debug_sbp, 0,
"Show bad packets in promiscuous mode");