On Fri, Oct 27, 2006 at 12:05:26AM +0200, Johannes Berg wrote: > On Fri, 2006-10-27 at 00:57 +0300, Alex Kanavin wrote: > > > Oct 27 00:50:15 cs78142018 kernel: printk: 183 messages suppressed. > > Oct 27 00:50:15 cs78142018 kernel: printk: 409 messages suppressed. > > syslog prints that when the exact same message has occurred multiple > times.. the actual message is the line above it.
Nope, what you see is printk() ratelimiting. Syslog tells when messages got repeated, printk() ratelimit actually suppresses messages in order to prevent DoS attacks. To get most if not all messages, use: echo 1 > /proc/sys/kernel/printk_ratelimit Or put this in /etc/sysctl.conf: kernel/printk_ratelimit=1 This will tell the kernel that it can allow a printk() approximately every jiffie. Erik -- +-- Erik Mouw -- www.harddisk-recovery.com -- +31 70 370 12 90 -- | Lab address: Delftechpark 26, 2628 XH, Delft, The Netherlands _______________________________________________ Bcm43xx-dev mailing list [email protected] https://lists.berlios.de/mailman/listinfo/bcm43xx-dev
