5551449bb8
Parameter @id is no longer used, drop. Return a bool to indicate success / failure, as recommended by qapi/error.h. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-ID: <20241010150144.986655-4-armbru@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
19 lines
497 B
C
19 lines
497 B
C
#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 */
|