Re: [Qemu-block] [PATCH v3 2/7] block: add options parameter to bdrv_new_open_driver()

2017-09-07 Thread Kevin Wolf
Am 25.08.2017 um 15:23 hat Manos Pitsidianakis geschrieben: > Allow passing a QDict *options parameter to bdrv_new_open_driver() so > that it can be used if a driver needs it upon creation. The previous > behaviour (empty bs->options and bs->explicit_options) remains when > options is NULL. > >

[Qemu-block] [PATCH v3 2/7] block: add options parameter to bdrv_new_open_driver()

2017-08-25 Thread Manos Pitsidianakis
Allow passing a QDict *options parameter to bdrv_new_open_driver() so that it can be used if a driver needs it upon creation. The previous behaviour (empty bs->options and bs->explicit_options) remains when options is NULL. Reviewed-by: Alberto Garcia Signed-off-by: Manos