]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
tipc: remove unused tipc_link_get_max_pkt routine
authorYing Xue <ying.xue@windriver.com>
Fri, 9 Jan 2015 07:27:03 +0000 (15:27 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 12 Jan 2015 21:24:32 +0000 (16:24 -0500)
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>
net/tipc/link.c
net/tipc/link.h

index f2531a8efa54f479d97700b6c24fedd77def52b0..f23105852cb36f1c520e8dc7b743c4629d65c4ac 100644 (file)
@@ -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;
index e96c318f5c7356b2ab072970d4480dbc72c28356..692268dca4b951b958ae0390b2a4f956707e4469 100644 (file)
@@ -220,7 +220,6 @@ void tipc_link_reset_list(unsigned int bearer_id);
 int tipc_link_xmit_skb(struct sk_buff *skb, u32 dest, u32 selector);
 int tipc_link_xmit(struct sk_buff_head *list, u32 dest, u32 selector);
 int __tipc_link_xmit(struct tipc_link *link, struct sk_buff_head *list);
-u32 tipc_link_get_max_pkt(u32 dest, u32 selector);
 void tipc_link_bundle_rcv(struct sk_buff *buf);
 void tipc_link_proto_xmit(struct tipc_link *l_ptr, u32 msg_typ, int prob,
                          u32 gap, u32 tolerance, u32 priority, u32 acked_mtu);