diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2017-08-12 20:24:58 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2017-08-12 20:24:58 +0000 |
commit | bf4d206e7a7157175ddd0cb90dde0539e552b5b7 (patch) | |
tree | 4927f6ff1661dd190482664b36d929afbc21b9d6 /usr.sbin | |
parent | d066244fdf4fd12226d0ed9e956e3eda1649aeaa (diff) |
vmd: bump virtio queue size back to 128. The problem that resulted in
lowering the queue size to 64 was caused by something unrelated.
Diffstat (limited to 'usr.sbin')
-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) */ |