diff options
Diffstat (limited to 'vnfs/qemu/qemu_dpdk.py')
-rw-r--r-- | vnfs/qemu/qemu_dpdk.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/vnfs/qemu/qemu_dpdk.py b/vnfs/qemu/qemu_dpdk.py index 0b8f90a0..02d720f3 100644 --- a/vnfs/qemu/qemu_dpdk.py +++ b/vnfs/qemu/qemu_dpdk.py @@ -25,16 +25,13 @@ class IVnfQemuDpdk(IVnfQemu): def __init__(self): """ - :param timeout: Time to wait for login prompt. If set to - 0 do not wait. - :param number: Number of QEMU instance, used when multiple QEMU - instances are started at once. - :param args: Arguments to pass to QEMU. - - :returns: None + Initialisation function. """ super(IVnfQemuDpdk, self).__init__() - self._cmd += [] + self._cmd += ['-drive', + 'if=scsi,file=fat:rw:%s,snapshot=off' % + S.getValue('GUEST_SHARE_DIR')[self._number], + ] def _modify_dpdk_makefile(self): """ |