Re: [PATCH/RFC v5 4/5]: core: Add dump device to call on oopses and panics

From: JÃrn Engel
Date: Mon Nov 30 2009 - 04:36:02 EST


On Mon, 30 November 2009 10:51:58 +0200, Artem Bityutskiy wrote:
>
> How about this patch on top of the existing one (untested):
>
> + /*
> + * Have we ever rotated around the circular buffer? If we never did,
> + * we have to have zeroes at the end.
> + */
> + if (log_buf[end]) {
> + s1 = log_buf + end;
> + l1 = log_buf_len - end;
> + } else {
> + s1 = "";
> + l1 = 0;

So now you are assuming that a) the buffer is initially zeroed and b)
noone ever writes NUL to it. Is that correct?

I'm not sure whether those assumptions are valid. If they are, then
this will obviously work. Otherwise we can just always assume the
wrapped case.

JÃrn

--
Write programs that do one thing and do it well. Write programs to work
together. Write programs to handle text streams, because that is a
universal interface.
-- Doug MacIlroy
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/