diff options
Diffstat (limited to 'block_int.h')
-rw-r--r-- | block_int.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/block_int.h b/block_int.h index bd86af00a2..b460c369ca 100644 --- a/block_int.h +++ b/block_int.h @@ -221,6 +221,12 @@ struct BlockDriver { QLIST_ENTRY(BlockDriver) list; }; +/* + * Note: the function bdrv_append() copies and swaps contents of + * BlockDriverStates, so if you add new fields to this struct, please + * inspect bdrv_append() to determine if the new fields need to be + * copied as well. + */ struct BlockDriverState { int64_t total_sectors; /* if we are reading a disk image, give its size in sectors */ |