Re: [PATCH 2/6] pstore/ram: Add console messages handling

From: Anton Vorontsov
Date: Wed May 16 2012 - 18:29:51 EST


On Wed, May 16, 2012 at 09:45:35AM -0700, Kees Cook wrote:
> On Wed, May 16, 2012 at 5:56 AM, Anton Vorontsov
> <anton.vorontsov@xxxxxxxxxx> wrote:
> > This is all straightforward: we just use the last region for
> > console logging. If there's just one region, we fall-back to
> > the old behaviour: just a oops/dumps logging.
> >
> > Signed-off-by: Anton Vorontsov <anton.vorontsov@xxxxxxxxxx>
> > ---
> > Âfs/pstore/ram.c | Â 39 ++++++++++++++++++++++++++++++---------
> > Â1 file changed, 30 insertions(+), 9 deletions(-)
> >
> > diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c
> > index 9123cce..54213eb 100644
> > --- a/fs/pstore/ram.c
> > +++ b/fs/pstore/ram.c
> > [...]
> > @@ -142,7 +148,12 @@ static int ramoops_pstore_write(enum pstore_type_id type,
> > Â Â Â Âstruct persistent_ram_zone *prz = cxt->przs[cxt->count];
> > Â Â Â Âsize_t hlen;
> >
> > - Â Â Â /* Currently ramoops is designed to only store dmesg dumps. */
> > + Â Â Â if (type == PSTORE_TYPE_CONSOLE) {
> > + Â Â Â Â Â Â Â if (!cxt->cprz)
> > + Â Â Â Â Â Â Â Â Â Â Â return -ENOMEM;
> > + Â Â Â Â Â Â Â persistent_ram_write(cxt->cprz, cxt->pstore.buf, size);
> > + Â Â Â }
> > +
> > Â Â Â Âif (type != PSTORE_TYPE_DMESG)
> > Â Â Â Â Â Â Â Âreturn -EINVAL;
>
> Doesn't this mean that type == PSTORE_TYPE_CONSOLE will write to the
> ram, but then fail with -EINVAL?

Right you are, there should be 'return 0' for TYPE_CONSOLE. It is
harmless tho (and unnoticeable, since we can't check return value of
the ->write() calback and print error, since this would recurse),
but I'll surely amend that.

Thanks!

--
Anton Vorontsov
Email: cbouatmailru@xxxxxxxxx
--
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/