X-Git-Url: http://git.cascardo.info/?a=blobdiff_plain;f=lib%2Fdynamic_debug.c;h=1db1fc66053875babfb933f93399899e48d8c730;hb=1e18c17adf32b86474fd903071b0181de9334bd4;hp=e7f7d993357a57985169ecbfc36ca793798c1a60;hpb=1db1e31b1ee3ae126ef98f39083b5f213c7b41bf;p=cascardo%2Flinux.git diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c index e7f7d993357a..1db1fc660538 100644 --- a/lib/dynamic_debug.c +++ b/lib/dynamic_debug.c @@ -62,13 +62,6 @@ static LIST_HEAD(ddebug_tables); static int verbose = 0; module_param(verbose, int, 0644); -/* Return the last part of a pathname */ -static inline const char *basename(const char *path) -{ - const char *tail = strrchr(path, '/'); - return tail ? tail+1 : path; -} - /* Return the path relative to source root */ static inline const char *trim_prefix(const char *path) { @@ -154,7 +147,7 @@ static int ddebug_change(const struct ddebug_query *query, /* match against the source filename */ if (query->filename && strcmp(query->filename, dp->filename) && - strcmp(query->filename, basename(dp->filename)) && + strcmp(query->filename, kbasename(dp->filename)) && strcmp(query->filename, trim_prefix(dp->filename))) continue;