lkml.org 
[lkml]   [2011]   [Sep]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 18/26] dynamic_debug: describe_flags with '=[pmflta_]*'
    Date
    From: Jim Cromie <jim.cromie@gmail.com>

    Change describe_flags() to emit '=[pmflta_]+' for current callsite
    flags, or just '=_' when they're disabled. Having '=' in output
    allows a more selective grep expression, in contrast '-' may appear
    in filenames, line-ranges, and format-strings. '=' also has better
    mnemonics, saying; "the current setting is equal to <flags>".

    The default allows grep "=_" <dbgfs>/dynamic_debug/control
    to see disabled callsites while avoiding the many occurrences of " = "
    seen in format strings.

    Enlarge flagsbufs to handle additional flag chars, "=a_"

    Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
    ---
    lib/dynamic_debug.c | 12 +++++++-----
    1 files changed, 7 insertions(+), 5 deletions(-)

    diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c
    index 0c9e53a..29dbf69 100644
    --- a/lib/dynamic_debug.c
    +++ b/lib/dynamic_debug.c
    @@ -99,6 +99,7 @@ static struct { unsigned flag:8; char opt_char; } opt_array[] = {
    { _DPRINTK_FLAGS_INCL_LINENO, 'l' },
    { _DPRINTK_FLAGS_INCL_TID, 't' },
    { _DPRINTK_FLAGS_APPEND, 'a' },
    + { _DPRINTK_FLAGS_DEFAULT, '_' },
    };

    /* format a string into buf[] which describes the _ddebug's flags */
    @@ -108,12 +109,13 @@ static char *ddebug_describe_flags(struct _ddebug *dp, char *buf,
    char *p = buf;
    int i;

    - BUG_ON(maxlen < 4);
    + BUG_ON(maxlen < 10);
    + *p++ = '=';
    for (i = 0; i < ARRAY_SIZE(opt_array); ++i)
    if (dp->flags & opt_array[i].flag)
    *p++ = opt_array[i].opt_char;
    - if (p == buf)
    - *p++ = '-';
    + if (*(p-1) == '=')
    + *p++ = '_';
    *p = '\0';

    return buf;
    @@ -195,7 +197,7 @@ static int ddebug_change(const struct ddebug_query *query,
    struct ddebug_table *dt;
    unsigned int newflags;
    unsigned int nfound = 0;
    - char flagbuf[8];
    + char flagbuf[10];

    /* search for matching ddebugs */
    list_for_each_entry(dt, &ddebug_tables, link) {
    @@ -866,7 +868,7 @@ static int ddebug_proc_show(struct seq_file *m, void *p)
    {
    struct ddebug_iter *iter = m->private;
    struct _ddebug *dp = p;
    - char flagsbuf[8];
    + char flagsbuf[10];

    if (verbose >= VERBOSE_PROC_SHOW)
    pr_info("called m=%p p=%p\n", m, p);
    --
    1.7.4.4


    \
     
     \ /
      Last update: 2011-09-21 23:59    [W:4.108 / U:0.048 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site