From 769fcc82efccf0efe1395e6d4a67bb68cda48eed Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Sat, 22 Jun 2013 01:18:27 +0200 Subject: [PATCH] devcons: change /dev/kmesg buffer back to normal 16K this makes it consistent with the manual again. --- sys/src/9/port/devcons.c | 3 +-- 1 file changed, 1 insertion(+), 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;