aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dynamic_debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dynamic_debug.c')
-rw-r--r--lib/dynamic_debug.c18
1 files changed, 15 insertions, 3 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c
index d8773dcd83c5..a5508a12b83d 100644
--- a/lib/dynamic_debug.c
+++ b/lib/dynamic_debug.c
@@ -69,6 +69,17 @@ static inline const char *basename(const char *path)
69 return tail ? tail+1 : path; 69 return tail ? tail+1 : path;
70} 70}
71 71
72/* Return the path relative to source root */
73static inline const char *trim_prefix(const char *path)
74{
75 int skip = strlen(__FILE__) - strlen("lib/dynamic_debug.c");
76
77 if (strncmp(path, __FILE__, skip))
78 skip = 0; /* prefix mismatch, don't skip */
79
80 return path + skip;
81}
82
72static struct { unsigned flag:8; char opt_char; } opt_array[] = { 83static struct { unsigned flag:8; char opt_char; } opt_array[] = {
73 { _DPRINTK_FLAGS_PRINT, 'p' }, 84 { _DPRINTK_FLAGS_PRINT, 'p' },
74 { _DPRINTK_FLAGS_INCL_MODNAME, 'm' }, 85 { _DPRINTK_FLAGS_INCL_MODNAME, 'm' },
@@ -125,7 +136,8 @@ static void ddebug_change(const struct ddebug_query *query,
125 /* match against the source filename */ 136 /* match against the source filename */
126 if (query->filename && 137 if (query->filename &&
127 strcmp(query->filename, dp->filename) && 138 strcmp(query->filename, dp->filename) &&
128 strcmp(query->filename, basename(dp->filename))) 139 strcmp(query->filename, basename(dp->filename)) &&
140 strcmp(query->filename, trim_prefix(dp->filename)))
129 continue; 141 continue;
130 142
131 /* match against the function */ 143 /* match against the function */
@@ -154,7 +166,7 @@ static void ddebug_change(const struct ddebug_query *query,
154 dp->flags = newflags; 166 dp->flags = newflags;
155 if (verbose) 167 if (verbose)
156 pr_info("changed %s:%d [%s]%s =%s\n", 168 pr_info("changed %s:%d [%s]%s =%s\n",
157 dp->filename, dp->lineno, 169 trim_prefix(dp->filename), dp->lineno,
158 dt->mod_name, dp->function, 170 dt->mod_name, dp->function,
159 ddebug_describe_flags(dp, flagbuf, 171 ddebug_describe_flags(dp, flagbuf,
160 sizeof(flagbuf))); 172 sizeof(flagbuf)));
@@ -714,7 +726,7 @@ static int ddebug_proc_show(struct seq_file *m, void *p)
714 } 726 }
715 727
716 seq_printf(m, "%s:%u [%s]%s =%s \"", 728 seq_printf(m, "%s:%u [%s]%s =%s \"",
717 dp->filename, dp->lineno, 729 trim_prefix(dp->filename), dp->lineno,
718 iter->table->mod_name, dp->function, 730 iter->table->mod_name, dp->function,
719 ddebug_describe_flags(dp, flagsbuf, sizeof(flagsbuf))); 731 ddebug_describe_flags(dp, flagsbuf, sizeof(flagsbuf)));
720 seq_escape(m, dp->format, "\t\r\n\""); 732 seq_escape(m, dp->format, "\t\r\n\"");