diff options
author | Allan Stephens <allan.stephens@windriver.com> | 2011-10-19 22:58:29 +0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-12-27 20:33:41 +0400 |
commit | 8c12118db77dce5a7abf1a0e87af56592fdd7c09 (patch) | |
tree | 77d267ff594515bbe59b01c338c26d8c4d39aec2 /net/tipc/core.c | |
parent | bfec73d7e45cdf570d649a547050295789e1e6fb (diff) | |
download | linux-8c12118db77dce5a7abf1a0e87af56592fdd7c09.tar.xz |
tipc: Minor optimization to deactivation of Ethernet media suppot
Change TIPC's shutdown code to deactivate generic networking support
before terminating Ethernet media support. The deactivation of generic
networking support causes all existing bearers to be destroyed, meaning
the Ethernet media termination routine no longer has to bother marking
them as unavailable.
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/tipc/core.c')
-rw-r--r-- | net/tipc/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/core.c b/net/tipc/core.c index c21331d58fdb..2691cd57b8a8 100644 --- a/net/tipc/core.c +++ b/net/tipc/core.c @@ -99,8 +99,8 @@ struct sk_buff *tipc_buf_acquire(u32 size) static void tipc_core_stop_net(void) { - tipc_eth_media_stop(); tipc_net_stop(); + tipc_eth_media_stop(); } /** |