aboutsummaryrefslogtreecommitdiffstats
path: root/lib/netdev-notifier-error-inject.c
diff options
context:
space:
mode:
authorIdo Schimmel <idosch@mellanox.com>2015-12-03 06:12:04 -0500
committerDavid S. Miller <davem@davemloft.net>2015-12-03 11:49:23 -0500
commitc39d0454ec9b703d3540dd10a2e9692f89aa48ab (patch)
treea75cef967b86ab7cc61994b07b1269b04c5fe2e5 /lib/netdev-notifier-error-inject.c
parentb03804e7c3ad41c265c0ca21ddb306b252b4f99f (diff)
net: Add support for CHANGEUPPER notifier error injection
Since CHANGEUPPER can now fail, add support for it in the newly introduced netdev notifier error injection infrastructure. Signed-off-by: Ido Schimmel <idosch@mellanox.com> Signed-off-by: Jiri Pirko <jiri@mellanox.com> Acked-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib/netdev-notifier-error-inject.c')
-rw-r--r--lib/netdev-notifier-error-inject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/netdev-notifier-error-inject.c b/lib/netdev-notifier-error-inject.c
index b2b856675d61..13e9c62e216f 100644
--- a/lib/netdev-notifier-error-inject.c
+++ b/lib/netdev-notifier-error-inject.c
@@ -18,6 +18,7 @@ static struct notifier_err_inject netdev_notifier_err_inject = {
18 { NOTIFIER_ERR_INJECT_ACTION(NETDEV_POST_INIT) }, 18 { NOTIFIER_ERR_INJECT_ACTION(NETDEV_POST_INIT) },
19 { NOTIFIER_ERR_INJECT_ACTION(NETDEV_PRECHANGEMTU) }, 19 { NOTIFIER_ERR_INJECT_ACTION(NETDEV_PRECHANGEMTU) },
20 { NOTIFIER_ERR_INJECT_ACTION(NETDEV_PRECHANGEUPPER) }, 20 { NOTIFIER_ERR_INJECT_ACTION(NETDEV_PRECHANGEUPPER) },
21 { NOTIFIER_ERR_INJECT_ACTION(NETDEV_CHANGEUPPER) },
21 {} 22 {}
22 } 23 }
23}; 24};