diff options
author | Markus Armbruster <armbru@redhat.com> | 2014-06-06 14:50:58 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-06-16 17:23:19 +0800 |
commit | 60e19e06a4a28935c94e39d40c80193759af88ce (patch) | |
tree | de2ab18ff967f88c2e8ca758010ac73911dfc688 /vl.c | |
parent | bcf831585751508bddf4ef6823f2295d850509b9 (diff) | |
download | qemu-60e19e06a4a28935c94e39d40c80193759af88ce.tar.gz qemu-60e19e06a4a28935c94e39d40c80193759af88ce.tar.bz2 qemu-60e19e06a4a28935c94e39d40c80193759af88ce.zip |
blockdev: Rename drive_init(), drive_uninit() to drive_new(), drive_del()
"Init" and "uninit" suggest the functions don't allocate / free
storage. But they do.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Benoit Canet <benoit@irqsave.net>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1074,7 +1074,7 @@ static int drive_init_func(QemuOpts *opts, void *opaque) { BlockInterfaceType *block_default_type = opaque; - return drive_init(opts, *block_default_type) == NULL; + return drive_new(opts, *block_default_type) == NULL; } static int drive_enable_snapshot(QemuOpts *opts, void *opaque) @@ -1098,7 +1098,7 @@ static void default_drive(int enable, int snapshot, BlockInterfaceType type, if (snapshot) { drive_enable_snapshot(opts, NULL); } - if (!drive_init(opts, type)) { + if (!drive_new(opts, type)) { exit(1); } } |