Skip to content

Commit

Permalink
blockdev: Remove unused DriveInfo reference count
Browse files Browse the repository at this point in the history
It's always one since commit fa510eb dropped the last drive_get_ref().

Signed-off-by: Markus Armbruster <[email protected]>
Reviewed-by: Benoit Canet <[email protected]>
Signed-off-by: Stefan Hajnoczi <[email protected]>
  • Loading branch information
Markus Armbruster authored and stefanhaRH committed Jun 16, 2014
1 parent 60e19e0 commit ae60e8e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 21 deletions.
18 changes: 2 additions & 16 deletions blockdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ void blockdev_auto_del(BlockDriverState *bs)
DriveInfo *dinfo = drive_get_by_blockdev(bs);

if (dinfo && dinfo->auto_del) {
drive_put_ref(dinfo);
drive_del(dinfo);
}
}

Expand Down Expand Up @@ -213,7 +213,7 @@ static void bdrv_format_print(void *opaque, const char *name)
error_printf(" %s", name);
}

static void drive_del(DriveInfo *dinfo)
void drive_del(DriveInfo *dinfo)
{
if (dinfo->opts) {
qemu_opts_del(dinfo->opts);
Expand All @@ -226,19 +226,6 @@ static void drive_del(DriveInfo *dinfo)
g_free(dinfo);
}

void drive_put_ref(DriveInfo *dinfo)
{
assert(dinfo->refcount);
if (--dinfo->refcount == 0) {
drive_del(dinfo);
}
}

void drive_get_ref(DriveInfo *dinfo)
{
dinfo->refcount++;
}

typedef struct {
QEMUBH *bh;
BlockDriverState *bs;
Expand Down Expand Up @@ -497,7 +484,6 @@ static DriveInfo *blockdev_init(const char *file, QDict *bs_opts,
dinfo->bdrv->open_flags = snapshot ? BDRV_O_SNAPSHOT : 0;
dinfo->bdrv->read_only = ro;
dinfo->bdrv->detect_zeroes = detect_zeroes;
dinfo->refcount = 1;
QTAILQ_INSERT_TAIL(&drives, dinfo, next);

bdrv_set_on_error(dinfo->bdrv, on_read_error, on_write_error);
Expand Down
2 changes: 1 addition & 1 deletion device-hotplug.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ void drive_hot_add(Monitor *mon, const QDict *qdict)

err:
if (dinfo) {
drive_put_ref(dinfo);
drive_del(dinfo);
}
}
2 changes: 1 addition & 1 deletion hw/ide/piix.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ int pci_piix3_xen_ide_unplug(DeviceState *dev)
}
bdrv_close(di->bdrv);
pci_ide->bus[di->bus].ifs[di->unit].bs = NULL;
drive_put_ref(di);
drive_del(di);
}
}
qdev_reset_all(DEVICE(dev));
Expand Down
4 changes: 1 addition & 3 deletions include/sysemu/blockdev.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,19 @@ struct DriveInfo {
QemuOpts *opts;
char *serial;
QTAILQ_ENTRY(DriveInfo) next;
int refcount;
};

DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit);
DriveInfo *drive_get_by_index(BlockInterfaceType type, int index);
int drive_get_max_bus(BlockInterfaceType type);
DriveInfo *drive_get_next(BlockInterfaceType type);
void drive_get_ref(DriveInfo *dinfo);
void drive_put_ref(DriveInfo *dinfo);
DriveInfo *drive_get_by_blockdev(BlockDriverState *bs);

QemuOpts *drive_def(const char *optstr);
QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file,
const char *optstr);
DriveInfo *drive_new(QemuOpts *arg, BlockInterfaceType block_default_type);
void drive_del(DriveInfo *dinfo);

/* device-hotplug */

Expand Down

0 comments on commit ae60e8e

Please sign in to comment.