diff options
author | Chris Mason <chris.mason@oracle.com> | 2010-04-15 16:38:14 -0400 |
---|---|---|
committer | Andy Grover <andy.grover@oracle.com> | 2010-09-08 21:12:24 -0400 |
commit | 9e29db0e3645cafa980e68a9c717a761448389e1 (patch) | |
tree | 4ce87432acbda8e16c27c97f3d1ae5339bb53559 /net/rds/connection.c | |
parent | acfcd4d4ec4ed8cb504f96d4fabb7a94029b362b (diff) |
RDS: Use a generation counter to avoid rds_send_xmit loop
rds_send_xmit is required to loop around after it releases the lock
because someone else could done a trylock, found someone working on the
list and backed off.
But, once we drop our lock, it is possible that someone else does come
in and make progress on the list. We should detect this and not loop
around if another process is actually working on the list.
This patch adds a generation counter that is bumped every time we
get the lock and do some send work. If the retry notices someone else
has bumped the generation counter, it does not need to loop around and
continue working.
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Signed-off-by: Andy Grover <andy.grover@oracle.com>
Diffstat (limited to 'net/rds/connection.c')
-rw-r--r-- | net/rds/connection.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/rds/connection.c b/net/rds/connection.c index 56aebe444ad3..7e4e9dfdbc0b 100644 --- a/net/rds/connection.c +++ b/net/rds/connection.c | |||
@@ -147,6 +147,7 @@ static struct rds_connection *__rds_conn_create(__be32 laddr, __be32 faddr, | |||
147 | conn->c_next_tx_seq = 1; | 147 | conn->c_next_tx_seq = 1; |
148 | 148 | ||
149 | spin_lock_init(&conn->c_send_lock); | 149 | spin_lock_init(&conn->c_send_lock); |
150 | atomic_set(&conn->c_send_generation, 1); | ||
150 | INIT_LIST_HEAD(&conn->c_send_queue); | 151 | INIT_LIST_HEAD(&conn->c_send_queue); |
151 | INIT_LIST_HEAD(&conn->c_retrans); | 152 | INIT_LIST_HEAD(&conn->c_retrans); |
152 | 153 | ||