diff options
author | Allan Stephens <allan.stephens@windriver.com> | 2010-05-11 18:30:11 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-13 10:02:24 +0400 |
commit | 01fee256a675f6492fc6945bbb9b59640d8705d4 (patch) | |
tree | ab5ac9e161298795006b85a53eb9354a1605d3a0 /net/tipc/discover.c | |
parent | 15e979da7c9ddddd55d2eb81e962dbb2aac51ad1 (diff) | |
download | linux-01fee256a675f6492fc6945bbb9b59640d8705d4.tar.xz |
tipc: Relocate trivial link status functions to header file
Rather than live in link.c where they can only be used in that file alone,
these helper routines are better served by being in link.h
Relocated are the following:
link_working_working
link_working_unknown
link_reset_unknown
link_reset_reset
link_blocked
link_congested
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/discover.c')
-rw-r--r-- | net/tipc/discover.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/discover.c b/net/tipc/discover.c index 74b7d1e28aec..ce1390a0cd00 100644 --- a/net/tipc/discover.c +++ b/net/tipc/discover.c @@ -224,7 +224,7 @@ void tipc_disc_recv_msg(struct sk_buff *buf, struct bearer *b_ptr) memcpy(addr, &media_addr, sizeof(*addr)); tipc_link_reset(link); } - link_fully_up = (link->state == WORKING_WORKING); + link_fully_up = link_working_working(link); spin_unlock_bh(&n_ptr->lock); if ((type == DSC_RESP_MSG) || link_fully_up) return; |