Revert a previous commit that increased the virtio queue size since it
authormlarkin <mlarkin@openbsd.org>
Tue, 20 Jun 2017 01:59:12 +0000 (01:59 +0000)
committermlarkin <mlarkin@openbsd.org>
Tue, 20 Jun 2017 01:59:12 +0000 (01:59 +0000)
appears to be causing some instability.

usr.sbin/vmd/virtio.h

index cc31e28..7aa2ca9 100644 (file)
@@ -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>
 #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) */