mirror of
https://github.com/qemu/qemu.git
synced 2025-08-15 05:06:56 +00:00
nfs.c: replace QEMUOptionParameter with QemuOpts
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Chunyan Liu <cyliu@suse.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
a59479e3f3
commit
98c10b810a
12
block/nfs.c
12
block/nfs.c
@ -391,8 +391,7 @@ static int nfs_file_open(BlockDriverState *bs, QDict *options, int flags,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int nfs_file_create(const char *url, QEMUOptionParameter *options,
|
static int nfs_file_create(const char *url, QemuOpts *opts, Error **errp)
|
||||||
Error **errp)
|
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
int64_t total_size = 0;
|
int64_t total_size = 0;
|
||||||
@ -401,12 +400,7 @@ static int nfs_file_create(const char *url, QEMUOptionParameter *options,
|
|||||||
client->aio_context = qemu_get_aio_context();
|
client->aio_context = qemu_get_aio_context();
|
||||||
|
|
||||||
/* Read out options */
|
/* Read out options */
|
||||||
while (options && options->name) {
|
total_size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
|
||||||
if (!strcmp(options->name, "size")) {
|
|
||||||
total_size = options->value.n;
|
|
||||||
}
|
|
||||||
options++;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = nfs_client_open(client, url, O_CREAT, errp);
|
ret = nfs_client_open(client, url, O_CREAT, errp);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
@ -463,7 +457,7 @@ static BlockDriver bdrv_nfs = {
|
|||||||
|
|
||||||
.bdrv_file_open = nfs_file_open,
|
.bdrv_file_open = nfs_file_open,
|
||||||
.bdrv_close = nfs_file_close,
|
.bdrv_close = nfs_file_close,
|
||||||
.bdrv_create = nfs_file_create,
|
.bdrv_create2 = nfs_file_create,
|
||||||
|
|
||||||
.bdrv_co_readv = nfs_co_readv,
|
.bdrv_co_readv = nfs_co_readv,
|
||||||
.bdrv_co_writev = nfs_co_writev,
|
.bdrv_co_writev = nfs_co_writev,
|
||||||
|
Loading…
Reference in New Issue
Block a user