From: Andy Grover Date: Fri, 30 Oct 2009 08:51:56 +0000 (+0000) Subject: RDS: Do not send congestion updates to loopback connections X-Git-Tag: Ubuntu-5.10.0-12.13~30462^2~571 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=0514f8a9c0cbd26afa70dc56406cc0ee1e134dcf;p=mirror_ubuntu-hirsute-kernel.git RDS: Do not send congestion updates to loopback connections This issue was discovered by HP's Pradeep and fixed in OFED 1.3, but not fixed in later versions, since the fix's implementation was not immediately applyable to the later code. This patch should do the trick for 1.4+ codebases. Signed-off-by: Andy Grover Signed-off-by: David S. Miller --- diff --git a/net/rds/cong.c b/net/rds/cong.c index dd2711df640b..6d06cac2649c 100644 --- a/net/rds/cong.c +++ b/net/rds/cong.c @@ -218,6 +218,8 @@ void rds_cong_queue_updates(struct rds_cong_map *map) spin_lock_irqsave(&rds_cong_lock, flags); list_for_each_entry(conn, &map->m_conn_list, c_map_item) { + if (conn->c_loopback) + continue; if (!test_and_set_bit(0, &conn->c_map_queued)) { rds_stats_inc(s_cong_update_queued); queue_delayed_work(rds_wq, &conn->c_send_w, 0);