2024-05-27 09:19:45

by [email protected]

[permalink] [raw]
Subject: [PATCH] printk: Increase PRINTK_PREFIX_MAX and the buf size in print_caller.

From: xiaoa <[email protected]>

Sometimes we need to add our own hooks to carry more caller information
to improve debug efficiency, but currently the buf in print caller is
too small.

Signed-off-by: xiaoa <[email protected]>
---
kernel/printk/internal.h | 2 +-
kernel/printk/printk.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/printk/internal.h b/kernel/printk/internal.h
index 6c2afee5ef62..27a3cc11289c 100644
--- a/kernel/printk/internal.h
+++ b/kernel/printk/internal.h
@@ -23,7 +23,7 @@ int devkmsg_sysctl_set_loglvl(struct ctl_table *table, int write,
#ifdef CONFIG_PRINTK

#ifdef CONFIG_PRINTK_CALLER
-#define PRINTK_PREFIX_MAX 48
+#define PRINTK_PREFIX_MAX 64
#else
#define PRINTK_PREFIX_MAX 32
#endif
diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
index 420fd310129d..2d7f003113f7 100644
--- a/kernel/printk/printk.c
+++ b/kernel/printk/printk.c
@@ -1331,7 +1331,7 @@ static size_t print_time(u64 ts, char *buf)
#ifdef CONFIG_PRINTK_CALLER
static size_t print_caller(u32 id, char *buf)
{
- char caller[12];
+ char caller[32];

snprintf(caller, sizeof(caller), "%c%u",
id & 0x80000000 ? 'C' : 'T', id & ~0x80000000);
--
2.34.1



2024-05-27 15:25:10

by Petr Mladek

[permalink] [raw]
Subject: Re: [PATCH] printk: Increase PRINTK_PREFIX_MAX and the buf size in print_caller.

On Mon 2024-05-27 17:19:29, Xiang Gao wrote:
> Sometimes we need to add our own hooks to carry more caller information
> to improve debug efficiency, but currently the buf in print caller is
> too small.

> --- a/kernel/printk/internal.h
> +++ b/kernel/printk/internal.h
> @@ -23,7 +23,7 @@ int devkmsg_sysctl_set_loglvl(struct ctl_table *table, int write,
> #ifdef CONFIG_PRINTK
>
> #ifdef CONFIG_PRINTK_CALLER
> -#define PRINTK_PREFIX_MAX 48
> +#define PRINTK_PREFIX_MAX 64
> #else
> #define PRINTK_PREFIX_MAX 32
> #endif
> diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
> index 420fd310129d..2d7f003113f7 100644
> --- a/kernel/printk/printk.c
> +++ b/kernel/printk/printk.c
> @@ -1331,7 +1331,7 @@ static size_t print_time(u64 ts, char *buf)
> #ifdef CONFIG_PRINTK_CALLER
> static size_t print_caller(u32 id, char *buf)
> {
> - char caller[12];
> + char caller[32];

Could you provide more details, please?
How exactly do you add your own hooks?

If you need to modify the code to add the extra info, you could also
modify the buffer size.

The buffer is big enough for the info printed by the upstream code.
I do understand why we should do this change upstream.

> snprintf(caller, sizeof(caller), "%c%u",
> id & 0x80000000 ? 'C' : 'T', id & ~0x80000000);


Best Regards,
Petr

2024-05-29 06:34:40

by John Ogness

[permalink] [raw]
Subject: Re: [PATCH] printk: Increase PRINTK_PREFIX_MAX and the buf size in print_caller.

On 2024-05-27, Petr Mladek <[email protected]> wrote:
> If you need to modify the code to add the extra info, you could also
> modify the buffer size.

Exactly this. Your out-of-tree patch to add extra info should also make
the necessary changes to the buffer sizes. It is your out-of-tree patch
that is broken, not mainline Linux.

John Ogness

2024-06-03 12:43:12

by Petr Mladek

[permalink] [raw]
Subject: Re: [PATCH] printk: Increase PRINTK_PREFIX_MAX and the buf size in print_caller.

On Mon 2024-06-03 16:47:01, [email protected] wrote:
> I need to populate the temporary variable "caller" in "print_caller" func with the additional information. And it's no use defining a buf in out-of-tree patch.
> In out-of-tree patch, I can only add hooks (special cases), I can't change anything else, because it needs to be consistent with mainline linux.
> caller buf in mainline linux is it better to make the buf bigger and leave some space?

I do not understand. Why the buffer size has to be consistent with
mainline linux?

Really, it does not make much sense to upstream just this part
of your out-of-tree patch?

Best Regards,
Petr

2024-06-03 13:15:56

by [email protected]

[permalink] [raw]
Subject: Re: [PATCH] printk: Increase PRINTK_PREFIX_MAX and the buf size in print_caller.

https://android.googlesource.com/kernel/common/+/refs/heads/android15-6.6/kernel/printk/printk.c
We are based on google source code development, this is the link to google source code printk.c, which adds trace_android_vh_printk_caller, if we want to change the buf size must first merge into linux main line.
[email protected]
邮箱:[email protected]
---- Replied Message ----
From Petr Mladek<[email protected]> Date 06/03/2024 20:42 To [email protected] Cc john.ogness<[email protected]>、rostedt<[email protected]>、senozhatsky<[email protected]>、linux-kernel<[email protected]>、fengqi<[email protected]>、高翔<[email protected]> Subject Re: [PATCH] printk: Increase PRINTK_PREFIX_MAX and the buf size in print_caller.
On Mon 2024-06-03 16:47:01, [email protected] wrote:
> I need to populate the temporary variable "caller" in "print_caller" func with the additional information. And it's no use defining a buf in out-of-tree patch.
> In out-of-tree patch, I can only add hooks (special cases), I can't change anything else, because it needs to be consistent with mainline linux.
> caller buf in mainline linux is it better to make the buf bigger and leave some space?
I do not understand. Why the buffer size has to be consistent with
mainline linux?
Really, it does not make much sense to upstream just this part
of your out-of-tree patch?
Best Regards,
Petr


Attachments:
Screenshot_2024-06-03-21-02-27-142_com.android.browser-edit.jpg (111.44 kB)

2024-06-03 15:00:12

by Petr Mladek

[permalink] [raw]
Subject: Re: [PATCH] printk: Increase PRINTK_PREFIX_MAX and the buf size in print_caller.

On Mon 2024-06-03 21:15:13, [email protected] wrote:
> https://android.googlesource.com/kernel/common/+/refs/heads/android15-6.6/kernel/printk/printk.c
> We are based on google source code development, this is the link to google source code printk.c, which adds trace_android_vh_printk_caller, if we want to change the buf size must first merge into linux main line.

trace_android_vh_printk_caller() is not in the mainline
=> there is no reason to change the buffer size in the mainline.

You might try to get the change of the buffer size into the android
google sources.

If you want an upstream support then please try to upstream
the entire solution.

But the use of trace_android_vh_printk_caller() is a hack. And upstream
will not support such hacks.

Best Regards,
Petr


> [email protected]
> 邮箱:[email protected]
> ---- Replied Message ----
> From Petr Mladek<[email protected]> Date 06/03/2024 20:42 To [email protected] Cc john.ogness<[email protected]>、rostedt<[email protected]>、senozhatsky<[email protected]>、linux-kernel<[email protected]>、fengqi<[email protected]>、高翔<[email protected]> Subject Re: [PATCH] printk: Increase PRINTK_PREFIX_MAX and the buf size in print_caller.
> On Mon 2024-06-03 16:47:01, [email protected] wrote:
> > I need to populate the temporary variable "caller" in "print_caller" func with the additional information. And it's no use defining a buf in out-of-tree patch.
> > In out-of-tree patch, I can only add hooks (special cases), I can't change anything else, because it needs to be consistent with mainline linux.
> > caller buf in mainline linux is it better to make the buf bigger and leave some space?
> I do not understand. Why the buffer size has to be consistent with
> mainline linux?
> Really, it does not make much sense to upstream just this part
> of your out-of-tree patch?
> Best Regards,
> Petr