diff options
author | Ying Xue <ying.xue@windriver.com> | 2015-01-09 10:27:03 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-01-13 00:24:32 +0300 |
commit | 54fef04ad05f15984082c225fe47ce6af8ea1c5c (patch) | |
tree | 64947b8d36dee12d05b51206c25ccc4c6c63da4f /net/tipc/link.c | |
parent | f2f2a96a20d52d65aa79bd4019af43bbfb0e1528 (diff) | |
download | linux-54fef04ad05f15984082c225fe47ce6af8ea1c5c.tar.xz |
tipc: remove unused tipc_link_get_max_pkt routine
Signed-off-by: Ying Xue <ying.xue@windriver.com>
Tested-by: Tero Aho <Tero.Aho@coriant.com>
Reviewed-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/link.c')
-rw-r--r-- | net/tipc/link.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/net/tipc/link.c b/net/tipc/link.c index f2531a8efa54..f23105852cb3 100644 --- a/net/tipc/link.c +++ b/net/tipc/link.c @@ -2267,33 +2267,6 @@ struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_s return buf; } -/** - * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination - * @dest: network address of destination node - * @selector: used to select from set of active links - * - * If no active link can be found, uses default maximum packet size. - */ -u32 tipc_link_get_max_pkt(u32 dest, u32 selector) -{ - struct tipc_node *n_ptr; - struct tipc_link *l_ptr; - u32 res = MAX_PKT_DEFAULT; - - if (dest == tipc_own_addr) - return MAX_MSG_SIZE; - - n_ptr = tipc_node_find(dest); - if (n_ptr) { - tipc_node_lock(n_ptr); - l_ptr = n_ptr->active_links[selector & 1]; - if (l_ptr) - res = l_ptr->max_pkt; - tipc_node_unlock(n_ptr); - } - return res; -} - static void link_print(struct tipc_link *l_ptr, const char *str) { struct tipc_bearer *b_ptr; |