diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2017-06-20 01:59:13 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2017-06-20 01:59:13 +0000 |
commit | b827261bbc6e3a5c86dcb3cae21712c147e25912 (patch) | |
tree | 47566ed3cf0bec20e4d5cc58118a50d4707087d7 /usr.sbin/vmd | |
parent | 315d0e97dae2c6527e82bb42cb97ec3e9717ed7f (diff) |
Revert a previous commit that increased the virtio queue size since it
appears to be causing some instability.
Diffstat (limited to 'usr.sbin/vmd')
-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 cc31e28a432..7aa2ca9c0cc 100644 --- a/usr.sbin/vmd/virtio.h +++ b/usr.sbin/vmd/virtio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: virtio.h,v 1.18 2017/05/30 13:13:47 mlarkin Exp $ */ +/* $OpenBSD: virtio.h,v 1.19 2017/06/20 01:59:12 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 128 +#define VIOBLK_QUEUE_SIZE 64 #define VIOBLK_QUEUE_MASK (VIOBLK_QUEUE_SIZE - 1) -#define VIONET_QUEUE_SIZE 128 +#define VIONET_QUEUE_SIZE 64 #define VIONET_QUEUE_MASK (VIONET_QUEUE_SIZE - 1) /* VMM Control Interface shutdown timeout (in seconds) */ |