mirror of
https://github.com/ceph/ceph
synced 2025-04-04 23:42:13 +00:00
test_librbd_fsx: flush before discard in krbd mode
We need to sync dirty pages before issuing BLKDISCARD, explained in a comment. Fixes: #11448 Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
This commit is contained in:
parent
2e8d476e7a
commit
bd050240ce
@ -658,6 +658,20 @@ krbd_discard(struct rbd_ctx *ctx, uint64_t off, uint64_t len)
|
|||||||
uint64_t range[2] = { off, len };
|
uint64_t range[2] = { off, len };
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* BLKDISCARD doesn't affect dirty pages. This means we can't
|
||||||
|
* rely on discarded sectors to match good_buf (i.e. contain
|
||||||
|
* zeros) without a preceding cache flush:
|
||||||
|
*
|
||||||
|
* write 0..3M
|
||||||
|
* discard 1..2M
|
||||||
|
*
|
||||||
|
* results in "data data data" rather than "data 0000 data".
|
||||||
|
*/
|
||||||
|
ret = __krbd_flush(ctx);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* off and len must be 512-byte aligned, otherwise BLKDISCARD
|
* off and len must be 512-byte aligned, otherwise BLKDISCARD
|
||||||
* will fail with -EINVAL. This means that -K (enable krbd
|
* will fail with -EINVAL. This means that -K (enable krbd
|
||||||
@ -697,11 +711,18 @@ krbd_resize(struct rbd_ctx *ctx, uint64_t size)
|
|||||||
assert(size % truncbdy == 0);
|
assert(size % truncbdy == 0);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This is essential: when krbd detects a size change, it calls
|
* When krbd detects a size change, it calls revalidate_disk(),
|
||||||
* revalidate_disk(), which ends up calling invalidate_bdev(),
|
* which ends up calling invalidate_bdev(), which invalidates
|
||||||
* which invalidates only clean buffers. The cache flush makes
|
* clean pages and does nothing about dirty pages beyond the
|
||||||
* it invalidate everything, which is what we need if we are
|
* new size. The preceding cache flush makes sure those pages
|
||||||
* shrinking.
|
* are invalidated, which is what we need on shrink:
|
||||||
|
*
|
||||||
|
* write 0..1M
|
||||||
|
* resize 0
|
||||||
|
* resize 2M
|
||||||
|
* write 1..2M
|
||||||
|
*
|
||||||
|
* results in "data data" rather than "0000 data".
|
||||||
*/
|
*/
|
||||||
ret = __krbd_flush(ctx);
|
ret = __krbd_flush(ctx);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user