[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-block] [PATCH v2 5/5] include/block/block_int: Document protocol r
From: |
Fabiano Rosas |
Subject: |
[Qemu-block] [PATCH v2 5/5] include/block/block_int: Document protocol related functions |
Date: |
Mon, 12 Mar 2018 19:07:53 -0300 |
Clarify that:
- for protocols the brdv_file_open function is used instead
of bdrv_open;
- when protocol_name is set, a driver should expect
to be given only a filename and no other options.
Signed-off-by: Fabiano Rosas <address@hidden>
---
include/block/block_int.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/include/block/block_int.h b/include/block/block_int.h
index 27e17addba..c4dd1d4bb8 100644
--- a/include/block/block_int.h
+++ b/include/block/block_int.h
@@ -126,6 +126,8 @@ struct BlockDriver {
int (*bdrv_open)(BlockDriverState *bs, QDict *options, int flags,
Error **errp);
+
+ /* Protocol drivers should implement this instead of bdrv_open */
int (*bdrv_file_open)(BlockDriverState *bs, QDict *options, int flags,
Error **errp);
void (*bdrv_close)(BlockDriverState *bs);
@@ -251,6 +253,12 @@ struct BlockDriver {
*/
int coroutine_fn (*bdrv_co_flush_to_os)(BlockDriverState *bs);
+ /*
+ * Drivers setting this field must be able to work with just a plain
+ * filename with '<protocol_name>:' as a prefix, and no other options.
+ * Options may be extracted from the filename by implementing
+ * bdrv_parse_filename.
+ */
const char *protocol_name;
int (*bdrv_truncate)(BlockDriverState *bs, int64_t offset,
PreallocMode prealloc, Error **errp);
--
2.13.6
- [Qemu-block] [PATCH v2 0/5] block: Ensure non-protocol drivers can only be selected explicitly, Fabiano Rosas, 2018/03/12
- [Qemu-block] [PATCH v2 1/5] block/replication: Remove protocol_name field, Fabiano Rosas, 2018/03/12
- [Qemu-block] [PATCH v2 3/5] block/throttle: Remove protocol-related fields, Fabiano Rosas, 2018/03/12
- [Qemu-block] [PATCH v2 2/5] block/quorum: Remove protocol-related fields, Fabiano Rosas, 2018/03/12
- [Qemu-block] [PATCH v2 4/5] block/blkreplay: Remove protocol-related fields, Fabiano Rosas, 2018/03/12
- [Qemu-block] [PATCH v2 5/5] include/block/block_int: Document protocol related functions,
Fabiano Rosas <=
- Re: [Qemu-block] [PATCH v2 0/5] block: Ensure non-protocol drivers can only be selected explicitly, Kevin Wolf, 2018/03/20