block: Purify .bdrv_refresh_filename()
Currently, BlockDriver.bdrv_refresh_filename() is supposed to both refresh the filename (BDS.exact_filename) and set BDS.full_open_options. Now that we have generic code in the central bdrv_refresh_filename() for creating BDS.full_open_options, we can drop the latter part from all BlockDriver.bdrv_refresh_filename() implementations. This also means that we can drop all of the existing default code for this from the global bdrv_refresh_filename() itself. Furthermore, we now have to call BlockDriver.bdrv_refresh_filename() after having set BDS.full_open_options, because the block driver's implementation should now be allowed to depend on BDS.full_open_options being set correctly. Finally, with this patch we can drop the @options parameter from BlockDriver.bdrv_refresh_filename(); also, add a comment on this function's purpose in block/block_int.h while touching its interface. This completely obsoletes blklogwrite's implementation of .bdrv_refresh_filename(). Signed-off-by:Max Reitz <mreitz@redhat.com> Message-id: 20190201192935.18394-25-mreitz@redhat.com Signed-off-by:
Max Reitz <mreitz@redhat.com>
Showing
- block.c 22 additions, 109 deletionsblock.c
- block/blkdebug.c 20 additions, 34 deletionsblock/blkdebug.c
- block/blklogwrites.c 0 additions, 22 deletionsblock/blklogwrites.c
- block/blkverify.c 1 addition, 15 deletionsblock/blkverify.c
- block/commit.c 1 addition, 1 deletionblock/commit.c
- block/mirror.c 1 addition, 1 deletionblock/mirror.c
- block/nbd.c 1 addition, 22 deletionsblock/nbd.c
- block/nfs.c 1 addition, 35 deletionsblock/nfs.c
- block/null.c 14 additions, 8 deletionsblock/null.c
- block/nvme.c 14 additions, 8 deletionsblock/nvme.c
- block/quorum.c 0 additions, 30 deletionsblock/quorum.c
- include/block/block_int.h 5 additions, 1 deletioninclude/block/block_int.h
- tests/qemu-iotests/228 0 additions, 4 deletionstests/qemu-iotests/228
- tests/qemu-iotests/228.out 1 addition, 1 deletiontests/qemu-iotests/228.out
Loading
Please register or sign in to comment