QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
497 B
18 lines
497 B
#ifndef BLOCK_HELPERS_H
|
|
#define BLOCK_HELPERS_H
|
|
|
|
#include "qemu/units.h"
|
|
|
|
/* lower limit is sector size */
|
|
#define MIN_BLOCK_SIZE INT64_C(512)
|
|
#define MIN_BLOCK_SIZE_STR "512 B"
|
|
/*
|
|
* upper limit is arbitrary, 2 MiB looks sufficient for all sensible uses, and
|
|
* matches qcow2 cluster size limit
|
|
*/
|
|
#define MAX_BLOCK_SIZE (2 * MiB)
|
|
#define MAX_BLOCK_SIZE_STR "2 MiB"
|
|
|
|
bool check_block_size(const char *name, int64_t value, Error **errp);
|
|
|
|
#endif /* BLOCK_HELPERS_H */
|
|
|