RE: [PATCH 1/2] conf: add locking option to disk source

2024-02-15 Thread Hiroki Narukawa
Thank you for your comment. I will try to write so that this will not be locking specific. > On Wed, Feb 14, 2024 at 13:17:39 +0100, Peter Krempa wrote: > > On Wed, Feb 14, 2024 at 14:17:57 +0900, Hiroki Narukawa wrote: > > > There is a case that locking hits a bug and user

[PATCH 1/2] conf: add locking option to disk source

2024-02-13 Thread Hiroki Narukawa
There is a case that locking hits a bug and users wants to disable locking like bug in Linux kernel. This commit adds option to configure locking for file source. Signed-off-by: Hiroki Narukawa --- docs/formatdomain.rst | 5 + src/conf/domain_conf.c| 8 src

[PATCH 0/2] Add locking option for disk

2024-02-13 Thread Hiroki Narukawa
virDomainStorageSourceParse and virDomainStorageSourceParse because locking can be common if added to other backends. Is it good to place here, or is there some better location to place? Hiroki Narukawa (2): conf: add locking option to disk source qemu_block: add locking option docs/formatdomain.rst

[PATCH 2/2] qemu_block: add locking option

2024-02-13 Thread Hiroki Narukawa
There is a case that locking hits a bug and users wants to disable locking like bug in Linux kernel. This commit adds actual qemu option to the domain conf added in previous commit. Signed-off-by: Hiroki Narukawa --- src/qemu/qemu_block.c | 7 ++ tests