summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2012-03-26 20:09:48 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2012-03-26 20:09:48 +0000
commit8c5eca76c45c97930434273d0966dd8d06682559 (patch)
tree62afe8980af42fdddfe121f876a5a2ea47f0d920 /sys/arch
parent4c4ada6e87aafe7d35f9c6741db7897fbd24a456 (diff)
Increase the size of the message queues such that we can handle the default
"MTU" of 4096 bytes.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/sparc64/dev/hvctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc64/dev/hvctl.c b/sys/arch/sparc64/dev/hvctl.c
index 373016ea04c..067c63e5db0 100644
--- a/sys/arch/sparc64/dev/hvctl.c
+++ b/sys/arch/sparc64/dev/hvctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hvctl.c,v 1.2 2012/03/20 19:10:55 kettenis Exp $ */
+/* $OpenBSD: hvctl.c,v 1.3 2012/03/26 20:09:47 kettenis Exp $ */
/*
* Copyright (c) 2009, 2012 Mark Kettenis
*
@@ -50,8 +50,8 @@ struct hv_io {
#define HVIOCREAD _IOW('h', 0, struct hv_io)
#define HVIOCWRITE _IOW('h', 1, struct hv_io)
-#define HVCTL_TX_ENTRIES 32
-#define HVCTL_RX_ENTRIES 32
+#define HVCTL_TX_ENTRIES 128
+#define HVCTL_RX_ENTRIES 128
struct hvctl_softc {
struct device sc_dv;