2003-02-10 04:05:57

by Edward Kuns

[permalink] [raw]
Subject: Larger circular printk log message buffer for kernel?

Please CC me for responses.

I'm willing to make a patch if it is likely to be accepted into the
kernel. Since we have so many subsystems that spit out kilobytes of
messages, by the time my system has booted up I have already lost some
of the most important boot messages! (APIC, for example)

I found the important part located in kernel/printk.c as follows in
2.4.21-pre3-ac2:

#if defined(CONFIG_MULTIQUAD) || defined(CONFIG_IA64)
#define LOG_BUF_LEN (65536)
#elif defined(CONFIG_ARCH_S390)
#define LOG_BUF_LEN (131072)
#elif defined(CONFIG_SMP)
#define LOG_BUF_LEN (32768)
#else
#define LOG_BUF_LEN (16384) /* This must be a power of two */
#endif

I changed the last one to 32768 and now I see all my boot messages. I
imagine that people would be against doubling the last two buffers (that
is, SMP = 64k, else = 32k) on all systems. But 16k is simply too small
for anyone using RAID or USB or APIC or other "noisy" subsystems.
RAID/md is by far the noisiest boot-time subsystem I have configured.

Ideas? Perhaps a kernel config multiplier defaulting to "1" that can be
changed in "make config" to 2, 4, 8, ...? I'm willing to do the work
for this, but only if it seems likely to be accepted. Are there other,
better options?

On systems with large amounts of memory, surely we can afford to give
more of it to the kernel's log message buffer!


Eddie

--
Eddie Kuns | Home: [email protected]
--------------/ URL: (none at the moment)
"Ah, savory cheese puffs, made inedible by time and fate." -- The Tick


2003-02-10 04:16:36

by Valdis Klētnieks

[permalink] [raw]
Subject: Re: Larger circular printk log message buffer for kernel?

On Sun, 09 Feb 2003 22:20:03 CST, you said:
> Please CC me for responses.
>
> I'm willing to make a patch if it is likely to be accepted into the
> kernel. Since we have so many subsystems that spit out kilobytes of
> messages, by the time my system has booted up I have already lost some
> of the most important boot messages! (APIC, for example)

There's a version of this already in the 2.5 tree.


Attachments:
(No filename) (226.00 B)