diff options
author | Peter Lieven <pl@kamp.de> | 2013-11-27 11:07:04 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-12-05 11:45:24 +0100 |
commit | 7337acaf219fc988e7ba91780b11770ff95169b4 (patch) | |
tree | ee7c24b1c4b567de4a76bf324956903c33af92c0 /include | |
parent | 1c0704a556dbb004a3b82791779760f418053951 (diff) |
block: add opt_transfer_length to BlockLimits
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Peter Lieven <pl@kamp.de>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/block/block_int.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/block/block_int.h b/include/block/block_int.h index ec0797ebc7..8b132d7178 100644 --- a/include/block/block_int.h +++ b/include/block/block_int.h @@ -247,6 +247,9 @@ typedef struct BlockLimits { /* optimal alignment for write zeroes requests in sectors */ int64_t write_zeroes_alignment; + + /* optimal transfer length in sectors */ + int opt_transfer_length; } BlockLimits; /* |