diff options
| author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-06-22 01:18:27 +0200 |
|---|---|---|
| committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-06-22 01:18:27 +0200 |
| commit | 769fcc82efccf0efe1395e6d4a67bb68cda48eed (patch) | |
| tree | d8fdb963c756f97aa62f86d756d6a72f1ae12445 | |
| parent | 3487653524efc9c79e7173407446f6b83f8de81b (diff) | |
| download | plan9front-769fcc82efccf0efe1395e6d4a67bb68cda48eed.tar.xz | |
devcons: change /dev/kmesg buffer back to normal 16K
this makes it consistent with the manual again.
| -rw-r--r-- | sys/src/9/port/devcons.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/src/9/port/devcons.c b/sys/src/9/port/devcons.c index 53025dd5b..aacc64d3f 100644 --- a/sys/src/9/port/devcons.c +++ b/sys/src/9/port/devcons.c @@ -73,8 +73,7 @@ prflush(void) */ struct { Lock lk; -// char buf[16384]; /* normal */ - char buf[256*1024]; /* for acpi debugging */ + char buf[16384]; uint n; } kmesg; |
