From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Mon, 12 Oct 2009 11:09:54 -0700 From: Andrew Morton To: Linus Torvalds Subject: Re: [PATCH] panic.c: export panic_on_oops Message-Id: <20091012110954.67d7d8d8.akpm@linux-foundation.org> In-Reply-To: References: <1255241458-11665-1-git-send-email-dedekind1@gmail.com> <20091012111545.GB8857@elte.hu> <1255346731.9659.31.camel@localhost> <20091012113758.GB11035@elte.hu> <20091012140149.6789efab@marrow.netinsight.se> <20091012120951.GA16799@elte.hu> <1255349748.10605.13.camel@macbook.infradead.org> <20091012122023.GA19365@elte.hu> <20091012150650.51a4b4dc@marrow.netinsight.se> <20091012131528.GC25464@elte.hu> <20091012153937.0dcd73e5@marrow.netinsight.se> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Artem Bityutskiy , LKML , "Koskinen Aaro \(Nokia-D/Helsinki\)" , linux-mtd , Simon Kagstrom , Ingo Molnar , David Woodhouse , Alan Cox List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Mon, 12 Oct 2009 08:36:38 -0700 (PDT) Linus Torvalds wrote: > I agree with the "save kernel buffer on panic" thing, but I disagree with > making it anything new, and hooking into "printk()" or the console > subsystem AT ALL. That's just bogus, stupid, and WRONG. > > What you can do is to just flush the 'log_buf' buffer (or as much of it as > you want - the buffer may be a megabyte in size, and maybe you only want > to flush the last 8kB or something like that) on oops. And _not_ mix this > up with anything else. What he said. I did it that way in the Digeo kernel back in 2002. Worked good. Doing it via a console is rather weird. It will need core kernel changes to do it properly. Perhaps oops_enter() is a good place to mark the start of the log, and flush it within oops_exit().