aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/link.c
diff options
context:
space:
mode:
authorAllan Stephens <allan.stephens@windriver.com>2011-04-19 10:17:58 -0400
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-05-10 16:03:53 -0400
commitbebc55aeffa72d8198e5c54cab9973a30e92f854 (patch)
treefe7ec71280dd2ec218e831b5849e89a8d7dc37bc /net/tipc/link.c
parent7f47f5c751c93f2ca9e7f0ef6c0915162ac9e076 (diff)
tipc: Fix sk_buff leaks when link congestion is detected
Modifies a TIPC send routine that did not discard the outgoing sk_buff if it was not transmitted because of link congestion; this eliminates the potential for buffer leakage in the many callers who did not clean up the unsent buffer. (The two routines that previously did discard the unsent buffer have been updated to eliminate their now-redundant clean up.) Signed-off-by: Allan Stephens <allan.stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/tipc/link.c')
-rw-r--r--net/tipc/link.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/net/tipc/link.c b/net/tipc/link.c
index 02b083e5c219..2a9f44a203eb 100644
--- a/net/tipc/link.c
+++ b/net/tipc/link.c
@@ -864,8 +864,9 @@ int tipc_link_send_buf(struct link *l_ptr, struct sk_buff *buf)
864 864
865 if (unlikely(queue_size >= queue_limit)) { 865 if (unlikely(queue_size >= queue_limit)) {
866 if (imp <= TIPC_CRITICAL_IMPORTANCE) { 866 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
867 return link_schedule_port(l_ptr, msg_origport(msg), 867 link_schedule_port(l_ptr, msg_origport(msg), size);
868 size); 868 buf_discard(buf);
869 return -ELINKCONG;
869 } 870 }
870 buf_discard(buf); 871 buf_discard(buf);
871 if (imp > CONN_MANAGER) { 872 if (imp > CONN_MANAGER) {
@@ -1069,8 +1070,6 @@ again:
1069 if (likely(buf)) { 1070 if (likely(buf)) {
1070 res = link_send_buf_fast(l_ptr, buf, 1071 res = link_send_buf_fast(l_ptr, buf,
1071 &sender->max_pkt); 1072 &sender->max_pkt);
1072 if (unlikely(res < 0))
1073 buf_discard(buf);
1074exit: 1073exit:
1075 tipc_node_unlock(node); 1074 tipc_node_unlock(node);
1076 read_unlock_bh(&tipc_net_lock); 1075 read_unlock_bh(&tipc_net_lock);