diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-09-12 09:18:42 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-09-26 16:34:27 +0200 |
commit | 090fc8fdab1ad817fdcd2c2d82361b64fdf1a7b7 (patch) | |
tree | 0939b0901c492e029d679e626801e65e08b962f7 /resources/libraries/python/QemuUtils.py | |
parent | 171889747da6da21fd7aab3cac78fff3d50c9bd0 (diff) |
Fix jumbo frames
Change-Id: I8aa557fe75133d20eef9832e314357af71f1d19a
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/libraries/python/QemuUtils.py')
-rw-r--r-- | resources/libraries/python/QemuUtils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/python/QemuUtils.py b/resources/libraries/python/QemuUtils.py index 588002896c..a61a11d37a 100644 --- a/resources/libraries/python/QemuUtils.py +++ b/resources/libraries/python/QemuUtils.py @@ -260,7 +260,7 @@ class QemuUtils(object): 'mq=on,csum=off,gso=off,guest_tso4=off,guest_tso6=off,' 'guest_ecn=off,mrg_rxbuf={mbuf}{queue_size}'. format(vhost_id=self._vhost_id, mac=mac, - mbuf='on' if jumbo_frames else 'off', + mbuf='on,host_mtu=9200' if jumbo_frames else 'off', queue_size=queue_size)) self._qemu_opt['options'] += device # Add interface MAC and socket to the node dict |