Re: [PATCH v3 2/7] dynamic_debug: Group debug messages by level bitmask

From: Petr Mladek
Date: Tue Jun 09 2020 - 08:28:06 EST


On Tue 2020-06-09 13:45:59, Stanimir Varbanov wrote:
> This will allow dynamic debug users and driver writers to group
> debug messages by level bitmask. The level bitmask should be a
> hex number.
>
> Done this functionality by extending dynamic debug metadata with
> new level member and propagate it over all the users. Also
> introduce new dynamic_pr_debug_level and dynamic_dev_dbg_level
> macros to be used by the drivers.

Could you please provide more details?

What is the use case?
What is the exact meaning of the level value?
How the levels will get defined?

Dynamic debug is used for messages with KERN_DEBUG log level.
Is this another dimension of the message leveling?

Given that the filter is defined by bits, it is rather grouping
by context or so.


> diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c
> index 8f199f403ab5..5d28d388f6dd 100644
> --- a/lib/dynamic_debug.c
> +++ b/lib/dynamic_debug.c
> @@ -55,6 +55,7 @@ struct ddebug_query {
> const char *function;
> const char *format;
> unsigned int first_lineno, last_lineno;
> + unsigned int level;
> };
>
> struct ddebug_iter {
> @@ -187,6 +188,18 @@ static int ddebug_change(const struct ddebug_query *query,
>
> nfound++;
>
> +#ifdef CONFIG_JUMP_LABEL
> + if (query->level && query->level & dp->level) {
> + if (flags & _DPRINTK_FLAGS_PRINT)
> + static_branch_enable(&dp->key.dd_key_true);
> + else
> + static_branch_disable(&dp->key.dd_key_true);
> + } else if (query->level &&
> + flags & _DPRINTK_FLAGS_PRINT) {
> + static_branch_disable(&dp->key.dd_key_true);
> + continue;
> + }
> +#endif

This looks like a hack in the existing code:

+ It is suspicious that "continue" is only in one branch. It means
that static_branch_enable/disable() might get called 2nd time
by the code below. Or newflags are not stored when there is a change.

+ It changes the behavior and the below vpr_info("changed ...")
is not called.

Or do I miss anything?

> newflags = (dp->flags & mask) | flags;
> if (newflags == dp->flags)
> continue;

Best Regards,
Petr