@@ -1293,6 +1293,7 @@ static int hdev_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
if (check_for_dasd(s->fd) < 0) {
return -ENOTSUP;
}
+ bsz->file = false;
bsz->opt_io = 0;
bsz->discard_granularity = -1;
ret = probe_logical_blocksize(s->fd, &bsz->log);
@@ -2135,6 +2136,7 @@ static int raw_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
struct statfs buf;
if (!fstatfs(s->fd, &buf)) {
+ bsz->file = true;
bsz->phys = 0;
bsz->log = 0;
bsz->opt_io = buf.f_iosize;
@@ -987,6 +987,7 @@ static uint32_t nvme_get_blocksize(BlockDriverState *bs)
static int nvme_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
{
uint32_t blocksize = nvme_get_blocksize(bs);
+ bsz->file = false;
bsz->phys = blocksize;
bsz->log = blocksize;
bsz->opt_io = 0;
@@ -65,25 +65,42 @@ bool blkconf_blocksizes(BlockConf *conf, Error **errp)
{
BlockBackend *blk = conf->blk;
BlockSizes blocksizes;
- int backend_ret;
+ bool use_blocksizes;
+
+ switch (conf->backend_defaults) {
+ case ON_OFF_AUTO_AUTO:
+ use_blocksizes = !blk_probe_blocksizes(blk, &blocksizes) &&
+ !blocksizes.file;
+ break;
+
+ case ON_OFF_AUTO_ON:
+ use_blocksizes = !blk_probe_blocksizes(blk, &blocksizes);
+ break;
+
+ case ON_OFF_AUTO_OFF:
+ use_blocksizes = false;
+ break;
+
+ default:
+ abort();
+ }
- backend_ret = blk_probe_blocksizes(blk, &blocksizes);
/* fill in detected values if they are not defined via qemu command line */
if (!conf->physical_block_size) {
- if (!backend_ret && blocksizes.phys) {
+ if (use_blocksizes && blocksizes.phys) {
conf->physical_block_size = blocksizes.phys;
} else {
conf->physical_block_size = BDRV_SECTOR_SIZE;
}
}
if (!conf->logical_block_size) {
- if (!backend_ret && blocksizes.log) {
+ if (use_blocksizes && blocksizes.log) {
conf->logical_block_size = blocksizes.log;
} else {
conf->logical_block_size = BDRV_SECTOR_SIZE;
}
}
- if (!backend_ret) {
+ if (use_blocksizes) {
if (!conf->opt_io_size) {
conf->opt_io_size = blocksizes.opt_io;
}
@@ -91,6 +91,7 @@ typedef enum {
} BdrvRequestFlags;
typedef struct BlockSizes {
+ bool file;
uint32_t phys;
uint32_t log;
uint32_t discard_granularity;
@@ -19,6 +19,7 @@
typedef struct BlockConf {
BlockBackend *blk;
+ OnOffAuto backend_defaults;
uint32_t physical_block_size;
uint32_t logical_block_size;
uint32_t min_io_size;
@@ -48,6 +49,8 @@ static inline unsigned int get_physical_block_exp(BlockConf *conf)
}
#define DEFINE_BLOCK_PROPERTIES_BASE(_state, _conf) \
+ DEFINE_PROP_ON_OFF_AUTO("backend_defaults", _state, \
+ _conf.backend_defaults, ON_OFF_AUTO_AUTO), \
DEFINE_PROP_BLOCKSIZE("logical_block_size", _state, \
_conf.logical_block_size), \
DEFINE_PROP_BLOCKSIZE("physical_block_size", _state, \
backend_defaults property allow users to control if default block properties should be decided with backend information. If it is off, any backend information will be discarded, which is suitable if you plan to perform live migration to a different disk backend. If it is on, a block device may utilize backend information more aggressively. By default, it is auto, which uses backend information from physical devices and ignores one from file. It is consistent with the older versions, and should be aligned with the user expectation that a file backend is more independent of host than a physical device backend. Signed-off-by: Akihiko Odaki <akihiko.odaki@gmail.com> --- block/file-posix.c | 2 ++ block/nvme.c | 1 + hw/block/block.c | 27 ++++++++++++++++++++++----- include/block/block.h | 1 + include/hw/block/block.h | 3 +++ 5 files changed, 29 insertions(+), 5 deletions(-)