Commit ce3ded10 authored by David Sterba's avatar David Sterba

btrfs: simplify workqueue name when allocating

The workqueue name is constructed from a format string but the prefix
does not need to be set by %s.
Reviewed-by: default avatarNikolay Borisov <nborisov@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 09ba3bc9
...@@ -139,13 +139,11 @@ __btrfs_alloc_workqueue(struct btrfs_fs_info *fs_info, const char *name, ...@@ -139,13 +139,11 @@ __btrfs_alloc_workqueue(struct btrfs_fs_info *fs_info, const char *name,
} }
if (flags & WQ_HIGHPRI) if (flags & WQ_HIGHPRI)
ret->normal_wq = alloc_workqueue("%s-%s-high", flags, ret->normal_wq = alloc_workqueue("btrfs-%s-high", flags,
ret->current_active, "btrfs", ret->current_active, name);
name);
else else
ret->normal_wq = alloc_workqueue("%s-%s", flags, ret->normal_wq = alloc_workqueue("btrfs-%s", flags,
ret->current_active, "btrfs", ret->current_active, name);
name);
if (!ret->normal_wq) { if (!ret->normal_wq) {
kfree(ret); kfree(ret);
return NULL; return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment