summaryrefslogtreecommitdiff
path: root/sys/src/9/port/portdat.h
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2017-08-11 01:32:24 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2017-08-11 01:32:24 +0200
commit6b999263ae69d64870a8bf02a06c1f707a73a7e0 (patch)
tree642d76d9f9e05d197ddd769f1b4e2ae260d40fb7 /sys/src/9/port/portdat.h
parent7dab4923247b4d07e63bdea80f6063a778d07d12 (diff)
kernel: double READSTR buffer size to 8000 bytes for devusb
Diffstat (limited to 'sys/src/9/port/portdat.h')
-rw-r--r--sys/src/9/port/portdat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/port/portdat.h b/sys/src/9/port/portdat.h
index 66db9f441..34e6a7d3f 100644
--- a/sys/src/9/port/portdat.h
+++ b/sys/src/9/port/portdat.h
@@ -785,7 +785,7 @@ enum
NUMSIZE = 12, /* size of formatted number */
MB = (1024*1024),
/* READSTR was 1000, which is way too small for usb's ctl file */
- READSTR = 4000, /* temporary buffer size for device reads */
+ READSTR = 8000, /* temporary buffer size for device reads */
};
extern Conf conf;