[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-block] [PATCH 0/2] Refine some vdi code
From: |
Stefan Weil |
Subject: |
Re: [Qemu-block] [PATCH 0/2] Refine some vdi code |
Date: |
Mon, 30 Jul 2018 09:12:46 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 |
Am 30.07.2018 um 04:46 schrieb address@hidden:
> From: yuchenlin <address@hidden>
>
> This series refine some code in vdi.c, includes:
>
> * Remvoe CONFIG_VDI_WRITE because there is no reason to leave an always on
> and cannot configure option in the code-side.
> * decouple if else if chain to get more readability.
>
> Thanks,
> yuchenlin
>
> yuchenlin (2):
> vdi: remove CONFIG_VDI_WRITE
> vdi: refine code for vdi_open
>
> block/vdi.c | 32 ++++++++++++++++++--------------
> 1 file changed, 18 insertions(+), 14 deletions(-)
Technically these changes are fine, but personally I prefer my old code.
If else is rendundant here, but redundancy helps humans to understand
the code. CONFIG_VDI_WRITE still has a similar function as it documents
which code parts are relevant for write support.
Stefan