Re: [PATCH 2/2] block: Make more BlockDriver definitions static

2023-09-05 Thread Philippe Mathieu-Daudé
On 5/9/23 15:06, Kevin Wolf wrote: Most block driver implementations don't have any reason for their BlockDriver to be public. The only exceptions are bdrv_file, bdrv_raw and bdrv_qcow2, which are actually used in other source files. Make all other BlockDriver definitions static if they aren't y

[PATCH 2/2] block: Make more BlockDriver definitions static

2023-09-05 Thread Kevin Wolf
Most block driver implementations don't have any reason for their BlockDriver to be public. The only exceptions are bdrv_file, bdrv_raw and bdrv_qcow2, which are actually used in other source files. Make all other BlockDriver definitions static if they aren't yet. Signed-off-by: Kevin Wolf ---