From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>,
Andrew Morton <akpm@linux-foundation.org>,
linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 1/2] printk: Add function to return log buffer address and size
Date: Mon, 11 Aug 2014 11:13:32 +1000 [thread overview]
Message-ID: <1407719612.4508.52.camel@pasglop> (raw)
In-Reply-To: <20140809054424.17676.1090.stgit@hegdevasant.in.ibm.com>
On Sat, 2014-08-09 at 11:15 +0530, Vasant Hegde wrote:
> Ben,
> - This patchset applies cleanly on powerpc next branch.
> - Andrew Morton suggested to include this patch in powerpc tree.
> (https://lists.ozlabs.org/pipermail/linuxppc-dev/2014-August/119802.html)
>
Ok, Andrew, can I have an Ack ?
Cheers,
Ben.
> include/linux/printk.h | 3 +++
> kernel/printk/printk.c | 12 ++++++++++++
> 2 files changed, 15 insertions(+)
>
> diff --git a/include/linux/printk.h b/include/linux/printk.h
> index 319ff7e..b8c0316 100644
> --- a/include/linux/printk.h
> +++ b/include/linux/printk.h
> @@ -10,6 +10,9 @@
> extern const char linux_banner[];
> extern const char linux_proc_banner[];
>
> +extern char *log_buf_addr_get(void);
> +extern u32 log_buf_len_get(void);
> +
> static inline int printk_get_level(const char *buffer)
> {
> if (buffer[0] == KERN_SOH_ASCII && buffer[1]) {
> diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
> index ea2d5f6..d6a984c 100644
> --- a/kernel/printk/printk.c
> +++ b/kernel/printk/printk.c
> @@ -270,6 +270,18 @@ static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN);
> static char *log_buf = __log_buf;
> static u32 log_buf_len = __LOG_BUF_LEN;
>
> +/* Return log buffer address */
> +char *log_buf_addr_get(void)
> +{
> + return log_buf;
> +}
> +
> +/* Return log buffer size */
> +u32 log_buf_len_get(void)
> +{
> + return log_buf_len;
> +}
> +
> /* human readable text of the record */
> static char *log_text(const struct printk_log *msg)
> {
next prev parent reply other threads:[~2014-08-11 1:13 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-09 5:45 [PATCH v3 1/2] printk: Add function to return log buffer address and size Vasant Hegde
2014-08-09 5:45 ` [PATCH v3 2/2] powerpc/powernv: Interface to register/unregister opal dump region Vasant Hegde
2014-08-11 1:13 ` Benjamin Herrenschmidt [this message]
2014-08-12 21:47 ` [PATCH v3 1/2] printk: Add function to return log buffer address and size Andrew Morton
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=1407719612.4508.52.camel@pasglop \
--to=benh@kernel.crashing.org \
--cc=akpm@linux-foundation.org \
--cc=hegdevasant@linux.vnet.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=torvalds@linux-foundation.org \
/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;
as well as URLs for NNTP newsgroup(s).