From: Sascha Hauer <s.hauer@pengutronix.de>
To: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 4/9] introduce printk support
Date: Sat, 15 Dec 2012 00:07:07 +0100 [thread overview]
Message-ID: <20121214230707.GB26326@pengutronix.de> (raw)
In-Reply-To: <1355416810-26555-4-git-send-email-plagnioj@jcrosoft.com>
On Thu, Dec 13, 2012 at 05:40:05PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> this will allow to fill the output buffer
>
> and now have 2 output mode pr_xxx for drivers and printf for application
>
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> ---
> common/console.c | 47 +++++++++++++++++++++++++++++++++++++++
> include/common.h | 28 ++++++++++++++---------
> include/linux/barebox-wrapper.h | 2 --
> 3 files changed, 65 insertions(+), 12 deletions(-)
>
> diff --git a/common/console.c b/common/console.c
> index 2d2d20a..d8fe5b6 100644
> --- a/common/console.c
> +++ b/common/console.c
> @@ -435,6 +435,7 @@ int ctrlc (void)
> EXPORT_SYMBOL(ctrlc);
> #endif /* ARCH_HAS_CTRC */
>
> +#ifdef CONFIG_CMD_DMESG
> #include <command.h>
> #include <complete.h>
>
> @@ -454,3 +455,49 @@ BAREBOX_CMD_START(dmesg)
> BAREBOX_CMD_HELP(cmd_dmesg_help)
> BAREBOX_CMD_COMPLETE(empty_complete)
> BAREBOX_CMD_END
> +
> +int vprintk (const char *fmt, va_list args)
> +{
> + uint i;
> + char printbuffer[CFG_PBSIZE];
> + char *s = printbuffer;
> +
> + /* For this to work, printbuffer must be larger than
> + * anything we ever want to print.
> + */
> + i = vsprintf (printbuffer, fmt, args);
> +
> + /* Print the string */
> + puts (printbuffer);
So when the console is not initialized the characters end up in the
console_output_fifo which is emptied when the first console is
initialized. This means it's lost from the dmesg buffer afterwards.
> +
> + if (initialized < CONSOLE_INIT_FULL)
> + return i;
> +
> + while (*s) {
> + if (*s == '\n')
> + kfifo_putc(console_output_fifo, '\r');
> + kfifo_putc(console_output_fifo, *s);
> + s++;
> + }
You shouldn't use the same buffer for printk messages, use a different
one instead.
> +
> + return i;
> +}
> +EXPORT_SYMBOL(vprintk);
> +
> +int printk (const char *fmt, ...)
> +{
> + va_list args;
> + uint i;
> +
> + va_start (args, fmt);
> +
> + i = vprintk(fmt, args);
> + /* For this to work, printbuffer must be larger than
> + * anything we ever want to print.
> + */
This comment seems inappropriate here.
> + va_end (args);
> +
> + return i;
> +}
> +EXPORT_SYMBOL(printk);
> +#endif
> diff --git a/include/common.h b/include/common.h
> index 6256879..168bfd1 100644
> --- a/include/common.h
> +++ b/include/common.h
> @@ -48,22 +48,30 @@
> #error "None of __LITTLE_ENDIAN and __BIG_ENDIAN are defined"
> #endif
>
> -#define pr_info(fmt, arg...) printf(fmt, ##arg)
> -#define pr_notice(fmt, arg...) printf(fmt, ##arg)
> -#define pr_err(fmt, arg...) printf(fmt, ##arg)
> -#define pr_warning(fmt, arg...) printf(fmt, ##arg)
> -#define pr_crit(fmt, arg...) printf(fmt, ##arg)
> -#define pr_alert(fmt, arg...) printf(fmt, ##arg)
> -#define pr_emerg(fmt, arg...) printf(fmt, ##arg)
> +#ifdef CONFIG_CMD_DMESG
> +int printk(const char *fmt, ...) __attribute__ ((format(__printf__, 1, 2)));
> +int vprintk(const char *fmt, va_list args);
> +#else
> +#define printk printf
> +#define vprintk vprintf
> +#endif
> +
> +#define pr_info(fmt, arg...) printk(fmt, ##arg)
> +#define pr_notice(fmt, arg...) printk(fmt, ##arg)
> +#define pr_err(fmt, arg...) printk(fmt, ##arg)
> +#define pr_warning(fmt, arg...) printk(fmt, ##arg)
> +#define pr_crit(fmt, arg...) printk(fmt, ##arg)
> +#define pr_alert(fmt, arg...) printk(fmt, ##arg)
> +#define pr_emerg(fmt, arg...) printk(fmt, ##arg)
>
> #ifdef DEBUG
> -#define pr_debug(fmt, arg...) printf(fmt, ##arg)
> +#define pr_debug(fmt, arg...) printk(fmt, ##arg)
> +#define debug(fmt, arg...) printf(fmt, ##arg)
'debug' is used in a huge amount of drivers, this would have to be fixed
when the two functions get a different meaning.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2012-12-14 23:07 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-13 16:37 [PATCH 0/9] introduction of dmesg support Jean-Christophe PLAGNIOL-VILLARD
2012-12-13 16:40 ` [PATCH 1/9] kfifo: introduce kfifo_dump_str to dump the fifo Jean-Christophe PLAGNIOL-VILLARD
2012-12-13 16:40 ` [PATCH 2/9] console: switch to kfifo_dump_str Jean-Christophe PLAGNIOL-VILLARD
2012-12-13 16:40 ` [PATCH 3/9] intoduce dmesg to print the barebox output ring buffer Jean-Christophe PLAGNIOL-VILLARD
2012-12-13 16:40 ` [PATCH 4/9] introduce printk support Jean-Christophe PLAGNIOL-VILLARD
2012-12-14 23:07 ` Sascha Hauer [this message]
2012-12-17 7:26 ` Jean-Christophe PLAGNIOL-VILLARD
2012-12-13 16:40 ` [PATCH 5/9] startup: switch to pr_xxx Jean-Christophe PLAGNIOL-VILLARD
2012-12-13 16:40 ` [PATCH 6/9] console: allow to specify ouput kfifo size via CONSOLE_KFIFO_OUTPUT_SIZE Jean-Christophe PLAGNIOL-VILLARD
2012-12-13 16:40 ` [PATCH 7/9] at91: clock switch to pr_info Jean-Christophe PLAGNIOL-VILLARD
2012-12-13 16:40 ` [PATCH 8/9] meminfo: switch to pr_xxx Jean-Christophe PLAGNIOL-VILLARD
2012-12-13 16:40 ` [PATCH 9/9] dev_printf: switch to pr_info Jean-Christophe PLAGNIOL-VILLARD
2012-12-14 22:49 ` [PATCH 1/9] kfifo: introduce kfifo_dump_str to dump the fifo Sascha Hauer
2012-12-17 7:23 ` Jean-Christophe PLAGNIOL-VILLARD
2012-12-14 23:15 ` [PATCH 0/9] introduction of dmesg support Sascha Hauer
2012-12-17 7:22 ` Jean-Christophe PLAGNIOL-VILLARD
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20121214230707.GB26326@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=plagnioj@jcrosoft.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox