Commit 83f2029c authored by Stephen Rothwell's avatar Stephen Rothwell Committed by Philipp Reisner

linux-next: drbd tree build failure

Today's linux-next build (x86_64 allmodconfig) failed like this:

drivers/block/drbd/drbd_nl.c: In function 'drbd_setup_queue_param':
drivers/block/drbd/drbd_nl.c:707: error: implicit declaration of function 'blk_queue_stack_limits'

Caused by commit 6dc986e736ca1e76a45d025a920f3a66855fc2aa ("block:
Deprecate blk_queue_stack_limits") from the block tree.
Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarPhilipp Reisner <philipp.reisner@linbit.com>
parent b6a06601
...@@ -704,7 +704,7 @@ void drbd_setup_queue_param(struct drbd_conf *mdev, unsigned int max_seg_s) __mu ...@@ -704,7 +704,7 @@ void drbd_setup_queue_param(struct drbd_conf *mdev, unsigned int max_seg_s) __mu
blk_queue_max_segment_size(q, max_seg_s); blk_queue_max_segment_size(q, max_seg_s);
blk_queue_logical_block_size(q, 512); blk_queue_logical_block_size(q, 512);
blk_queue_segment_boundary(q, PAGE_SIZE-1); blk_queue_segment_boundary(q, PAGE_SIZE-1);
blk_queue_stack_limits(q, b); blk_stack_limits(&q->limits, &b->limits, 0);
if (b->merge_bvec_fn) if (b->merge_bvec_fn)
dev_warn(DEV, "Backing device's merge_bvec_fn() = %p\n", dev_warn(DEV, "Backing device's merge_bvec_fn() = %p\n",
......
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