kernel: double READSTR buffer size to 8000 bytes for devusb
This commit is contained in:
parent
7dab492324
commit
6b999263ae
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue