mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-29 21:06:41 +07:00
drbd: use resource name in workqueue
Since kernel 3.3, we can use snprintf-style arguments to create a 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>
This commit is contained in:
parent
f5ec0173b9
commit
39e91a60c8
@ -2694,8 +2694,8 @@ static int init_submitter(struct drbd_device *device)
|
||||
{
|
||||
/* opencoded create_singlethread_workqueue(),
|
||||
* to be able to say "drbd%d", ..., minor */
|
||||
device->submit.wq = alloc_workqueue("drbd%u_submit",
|
||||
WQ_UNBOUND | WQ_MEM_RECLAIM, 1, device->minor);
|
||||
device->submit.wq =
|
||||
alloc_ordered_workqueue("drbd%u_submit", WQ_MEM_RECLAIM, device->minor);
|
||||
if (!device->submit.wq)
|
||||
return -ENOMEM;
|
||||
|
||||
|
@ -1124,7 +1124,10 @@ static int conn_connect(struct drbd_connection *connection)
|
||||
}
|
||||
|
||||
drbd_thread_start(&connection->ack_receiver);
|
||||
connection->ack_sender = create_singlethread_workqueue("drbd_ack_sender");
|
||||
/* opencoded create_singlethread_workqueue(),
|
||||
* to be able to use format string arguments */
|
||||
connection->ack_sender =
|
||||
alloc_ordered_workqueue("drbd_as_%s", WQ_MEM_RECLAIM, connection->resource->name);
|
||||
if (!connection->ack_sender) {
|
||||
drbd_err(connection, "Failed to create workqueue ack_sender\n");
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user