diff options
author | Philipp Reisner <philipp.reisner@linbit.com> | 2015-03-16 15:01:00 +0100 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2015-11-25 17:22:01 +0100 |
commit | 1c03e52083c8fa6e70a0b921d25d1916f68320fc (patch) | |
tree | 9fc11b476b0279673da722b3daeec78a2bbd6bc9 /drivers/block/drbd/drbd_receiver.c | |
parent | drbd: fix refcount error during detach of an already failed disk (diff) | |
download | linux-1c03e52083c8fa6e70a0b921d25d1916f68320fc.tar.xz linux-1c03e52083c8fa6e70a0b921d25d1916f68320fc.zip |
drbd: Rename asender to ack_receiver
This prepares the next patch where the sending on the meta (or
control) socket is moved to a dedicated workqueue.
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/block/drbd/drbd_receiver.c')
-rw-r--r-- | drivers/block/drbd/drbd_receiver.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/block/drbd/drbd_receiver.c b/drivers/block/drbd/drbd_receiver.c index 61b73c77a690..eed4ae9107b4 100644 --- a/drivers/block/drbd/drbd_receiver.c +++ b/drivers/block/drbd/drbd_receiver.c @@ -1099,7 +1099,7 @@ randomize: return 0; } - drbd_thread_start(&connection->asender); + drbd_thread_start(&connection->ack_receiver); mutex_lock(&connection->resource->conf_update); /* The discard_my_data flag is a single-shot modifier to the next @@ -4656,7 +4656,7 @@ static void conn_disconnect(struct drbd_connection *connection) conn_request_state(connection, NS(conn, C_NETWORK_FAILURE), CS_HARD); /* asender does not clean up anything. it must not interfere, either */ - drbd_thread_stop(&connection->asender); + drbd_thread_stop(&connection->ack_receiver); drbd_free_sock(connection); rcu_read_lock(); @@ -5487,7 +5487,7 @@ static struct asender_cmd asender_tbl[] = { [P_RETRY_WRITE] = { sizeof(struct p_block_ack), got_BlockAck }, }; -int drbd_asender(struct drbd_thread *thi) +int drbd_ack_receiver(struct drbd_thread *thi) { struct drbd_connection *connection = thi->connection; struct asender_cmd *cmd = NULL; |