diff options
author | Denis V. Lunev <den@openvz.org> | 2008-02-28 23:46:17 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-02-28 23:46:17 -0500 |
commit | 6133fb1aa137b35a8fa91ec17977ebf6a41456ec (patch) | |
tree | 5bd2411fa97f9712f25ee95053a242db025b209c /drivers/s390 | |
parent | 6fc68624e524014fcd95faf726f855eb348f2e87 (diff) |
[NETNS]: Disable inetaddr notifiers in namespaces other than initial.
ip_fib_init is kept enabled. It is already namespace-aware.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/s390')
-rw-r--r-- | drivers/s390/net/qeth_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/s390/net/qeth_main.c b/drivers/s390/net/qeth_main.c index 62606ce26e5..d063e9ecf80 100644 --- a/drivers/s390/net/qeth_main.c +++ b/drivers/s390/net/qeth_main.c | |||
@@ -8622,6 +8622,9 @@ qeth_ip_event(struct notifier_block *this, | |||
8622 | struct qeth_ipaddr *addr; | 8622 | struct qeth_ipaddr *addr; |
8623 | struct qeth_card *card; | 8623 | struct qeth_card *card; |
8624 | 8624 | ||
8625 | if (dev->nd_net != &init_net) | ||
8626 | return NOTIFY_DONE; | ||
8627 | |||
8625 | QETH_DBF_TEXT(trace,3,"ipevent"); | 8628 | QETH_DBF_TEXT(trace,3,"ipevent"); |
8626 | card = qeth_get_card_from_dev(dev); | 8629 | card = qeth_get_card_from_dev(dev); |
8627 | if (!card) | 8630 | if (!card) |