Skip to content

Commit

Permalink
linux/zvol_os.c: cleanup limits for non-blk mq case
Browse files Browse the repository at this point in the history
Rob Noris suggested that we could clean up redundant limits for the case
of non-blk mq scenario.

Signed-off-by: Ameer Hamza <[email protected]>
  • Loading branch information
ixhamza committed Aug 20, 2024
1 parent 06b587f commit 9fb878e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions module/os/linux/zfs/zvol_os.c
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,6 @@ zvol_alloc_non_blk_mq(struct zvol_state_os *zso, zvol_queue_limits_t *limits)

zso->zvo_disk->minors = ZVOL_MINORS;
zso->zvo_queue = zso->zvo_disk->queue;
zvol_queue_limits_apply(limits, zso->zvo_queue);
#elif defined(HAVE_BLK_ALLOC_DISK_2ARG)
struct queue_limits qlimits;
zvol_queue_limits_convert(limits, &qlimits);
Expand All @@ -1266,10 +1265,6 @@ zvol_alloc_non_blk_mq(struct zvol_state_os *zso, zvol_queue_limits_t *limits)
zso->zvo_disk->minors = ZVOL_MINORS;
zso->zvo_queue = zso->zvo_disk->queue;

#ifndef HAVE_BLKDEV_QUEUE_LIMITS_FEATURES
blk_queue_set_write_cache(zso->zvo_queue, B_TRUE);
#endif

#else
zso->zvo_queue = blk_alloc_queue(NUMA_NO_NODE);
if (zso->zvo_queue == NULL)
Expand Down

0 comments on commit 9fb878e

Please sign in to comment.