Skip to content

Commit

Permalink
pmem: flag pmem block devices as non-rotational
Browse files Browse the repository at this point in the history
...since they are effectively SSDs as far as userspace is concerned.

Reviewed-by: Vishal Verma <[email protected]>
Signed-off-by: Dan Williams <[email protected]>
  • Loading branch information
djbw committed Jun 26, 2015
1 parent f0dc089 commit 0f51c4f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/nvdimm/pmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ static int pmem_attach_disk(struct nd_namespace_common *ndns,
blk_queue_make_request(pmem->pmem_queue, pmem_make_request);
blk_queue_max_hw_sectors(pmem->pmem_queue, UINT_MAX);
blk_queue_bounce_limit(pmem->pmem_queue, BLK_BOUNCE_ANY);
queue_flag_set_unlocked(QUEUE_FLAG_NONROT, pmem->pmem_queue);

disk = alloc_disk(0);
if (!disk) {
Expand Down

0 comments on commit 0f51c4f

Please sign in to comment.