summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/intel-ethernet/files/disable_MDD_by_default.patch
diff options
context:
space:
mode:
authorDragos Ciprian Nedelcu <Dragos.Ciprian.Nedelcu@enea.com>2021-02-25 09:48:09 +0100
committerDragos Ciprian Nedelcu <Dragos.Ciprian.Nedelcu@enea.com>2021-02-25 10:29:45 +0100
commitb7582167f4956d00a1f0377d957182d7cd06a6e9 (patch)
tree8a5a27768facd7f3f5e154f9a78d4d248608b5e8 /recipes-kernel/intel-ethernet/files/disable_MDD_by_default.patch
parente355659071157edb846b19708b2dadc1e4b29be1 (diff)
downloadmeta-nfv-access-bsp-x86-EE240_HotFix1.tar.gz
Set default value for Malicious Driver Detection to disabled in ixgbe driver. Also prevent MDD from being enabled. Signed-off-by: Dragos Ciprian Nedelcu <Dragos.Ciprian.Nedelcu@enea.com> Change-Id: I84fc98070b376814549048f307032ed0bd355bc9
Diffstat (limited to 'recipes-kernel/intel-ethernet/files/disable_MDD_by_default.patch')
-rw-r--r--recipes-kernel/intel-ethernet/files/disable_MDD_by_default.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/recipes-kernel/intel-ethernet/files/disable_MDD_by_default.patch b/recipes-kernel/intel-ethernet/files/disable_MDD_by_default.patch
deleted file mode 100644
index 3da16c5..0000000
--- a/recipes-kernel/intel-ethernet/files/disable_MDD_by_default.patch
+++ /dev/null
@@ -1,15 +0,0 @@
1Index: src/ixgbe_param.c
2===================================================================
3--- src.orig/ixgbe_param.c
4+++ src/ixgbe_param.c
5@@ -1232,8 +1232,8 @@ void ixgbe_check_options(struct ixgbe_ad
6 struct ixgbe_option opt = {
7 .type = enable_option,
8 .name = "Malicious Driver Detection",
9- .err = "defaulting to Enabled",
10- .def = OPTION_ENABLED,
11+ .err = "defaulting to Disabled",
12+ .def = OPTION_DISABLED,
13 };
14
15 switch (adapter->hw.mac.type) {