diff options
author | 2017-08-12 20:24:57 +0000 | |
---|---|---|
committer | 2017-08-12 20:24:57 +0000 | |
commit | f4229d5ccb83b43960d2f8465e0ca8388392f03c (patch) | |
tree | 45350c10f98c06ab427fd540a43e7ba25220dd14 | |
parent | ouch - failed to spot typo in previous too, even though my spell checker (diff) | |
download | wireguard-openbsd-f4229d5ccb83b43960d2f8465e0ca8388392f03c.tar.xz wireguard-openbsd-f4229d5ccb83b43960d2f8465e0ca8388392f03c.zip |
vmd: bump virtio queue size back to 128. The problem that resulted in
lowering the queue size to 64 was caused by something unrelated.
-rw-r--r-- | usr.sbin/vmd/virtio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/vmd/virtio.h b/usr.sbin/vmd/virtio.h index 7aa2ca9c0cc..4f0f0f4eb90 100644 --- a/usr.sbin/vmd/virtio.h +++ b/usr.sbin/vmd/virtio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: virtio.h,v 1.19 2017/06/20 01:59:12 mlarkin Exp $ */ +/* $OpenBSD: virtio.h,v 1.20 2017/08/12 20:24:57 mlarkin Exp $ */ /* * Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org> @@ -25,10 +25,10 @@ #define VIORND_QUEUE_SIZE 64 #define VIORND_QUEUE_MASK (VIORND_QUEUE_SIZE - 1) -#define VIOBLK_QUEUE_SIZE 64 +#define VIOBLK_QUEUE_SIZE 128 #define VIOBLK_QUEUE_MASK (VIOBLK_QUEUE_SIZE - 1) -#define VIONET_QUEUE_SIZE 64 +#define VIONET_QUEUE_SIZE 128 #define VIONET_QUEUE_MASK (VIONET_QUEUE_SIZE - 1) /* VMM Control Interface shutdown timeout (in seconds) */ |