mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-25 11:59:31 +07:00
staging: lustre: re-use kbasename() common helper
To get the name of a file from a pathname we may use kbasename() helper. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3457bfd6df
commit
e495dd833b
@ -275,12 +275,9 @@ int libcfs_debug_vmsg2(struct libcfs_debug_msg_data *msgdata,
|
|||||||
int i;
|
int i;
|
||||||
int remain;
|
int remain;
|
||||||
int mask = msgdata->msg_mask;
|
int mask = msgdata->msg_mask;
|
||||||
char *file = (char *)msgdata->msg_file;
|
const char *file = kbasename(msgdata->msg_file);
|
||||||
cfs_debug_limit_state_t *cdls = msgdata->msg_cdls;
|
cfs_debug_limit_state_t *cdls = msgdata->msg_cdls;
|
||||||
|
|
||||||
if (strchr(file, '/'))
|
|
||||||
file = strrchr(file, '/') + 1;
|
|
||||||
|
|
||||||
tcd = cfs_trace_get_tcd();
|
tcd = cfs_trace_get_tcd();
|
||||||
|
|
||||||
/* cfs_trace_get_tcd() grabs a lock, which disables preemption and
|
/* cfs_trace_get_tcd() grabs a lock, which disables preemption and
|
||||||
|
Loading…
Reference in New Issue
Block a user