On 06/08/2018 16:34, Emanuele Giuseppe Esposito wrote: > -static void mmio_basic(void) > +static void basic_resize(void *obj, void *data, QGuestAllocator *t_alloc) > { > - QVirtioMMIODevice *dev; > - QVirtQueue *vq; > - QGuestAllocator *alloc; > + QVirtioBlk *blk_if = obj; > + QVirtioDevice *dev = blk_if->vdev; > int n_size = TEST_IMAGE_SIZE / 2; > uint64_t capacity; > + QVirtQueue *vq; > > - arm_test_start(); > - > - dev = qvirtio_mmio_device_new(MMIO_DEV_BASE_ADDR, MMIO_PAGE_SIZE);
This is the only user of qvirtio_mmio_device_new(), so if you remove the call here, you could also remove the function definition. Thanks, Laurent