diff options
author | Chunyan Liu <cyliu@suse.com> | 2014-06-05 17:20:56 +0800 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-06-16 17:23:20 +0800 |
commit | 98c10b810a83a0f52b4b5a14a8a36ce0622cb01f (patch) | |
tree | b35c810fccf88ee8a7e91a482e964de28dd1918e /block | |
parent | a59479e3f3dc4da005735b603b2770902556fe7a (diff) | |
download | qemu-98c10b810a83a0f52b4b5a14a8a36ce0622cb01f.zip qemu-98c10b810a83a0f52b4b5a14a8a36ce0622cb01f.tar.gz qemu-98c10b810a83a0f52b4b5a14a8a36ce0622cb01f.tar.bz2 |
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>
Diffstat (limited to 'block')
-rw-r--r-- | block/nfs.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/block/nfs.c b/block/nfs.c index e282f8d..35e5008 100644 --- a/block/nfs.c +++ b/block/nfs.c @@ -391,8 +391,7 @@ static int nfs_file_open(BlockDriverState *bs, QDict *options, int flags, return 0; } -static int nfs_file_create(const char *url, QEMUOptionParameter *options, - Error **errp) +static int nfs_file_create(const char *url, QemuOpts *opts, Error **errp) { int ret = 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(); /* Read out options */ - while (options && options->name) { - if (!strcmp(options->name, "size")) { - total_size = options->value.n; - } - options++; - } + total_size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0); ret = nfs_client_open(client, url, O_CREAT, errp); if (ret < 0) { @@ -463,7 +457,7 @@ static BlockDriver bdrv_nfs = { .bdrv_file_open = nfs_file_open, .bdrv_close = nfs_file_close, - .bdrv_create = nfs_file_create, + .bdrv_create2 = nfs_file_create, .bdrv_co_readv = nfs_co_readv, .bdrv_co_writev = nfs_co_writev, |