[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <50AE0210.7010301@jan-o-sch.net>
Date: Thu, 22 Nov 2012 11:44:32 +0100
From: Jan Schmidt <list.lkml@...-o-sch.net>
To: LKML <linux-kernel@...r.kernel.org>
CC: Kay Sievers <kay@...y.org>
Subject: /proc/kmsg giving eof on blocking read
Hi,
I'm currently debugging something in btrfs in good old printk style, generating
around 10MB/min. I'm seeing /proc/kmsg returning eof on a blocking read (and,
side note, syslog-ng won't reopen it, effectively stopping logging kernel
messages silently).
I'm using kernel 3.6.0+ from cmason's tree, which is Linux 3.6.0 (commit
a0d271cbfed1dd50278c6b06bead3d00ba0a88f9) plus the Btrfs code for 3.7 (commit
c37b2b6269ee4637fb7cdb5da0d1e47215d57ce2).
I suspect it has something to do with the data I'm passing to printk. It happens
anywhere from several times per second to once every twenty minutes.
As a workaround (and proof), I'm currently using:
# perl -we 'use Fcntl; sysopen(K, "/proc/kmsg", O_RDONLY) or die "open $!";
while (1) {while ($ret = sysread(K, $buf, 8192)) {print $buf} print STDERR
scalar(localtime(time)), " oops $ret\\n";}' >> /var/tmp/kern
-Jan
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists