From: Mukesh Ojha Date: Thu, 27 Oct 2022 09:12:41 +0000 (+0530) Subject: f2fs: fix the msg data type X-Git-Tag: v6.6.17~5916^2~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=195623f2d8e9361eaddec071ad298998ec0590ba;p=platform%2Fkernel%2Flinux-rpi.git f2fs: fix the msg data type Data type of msg in f2fs_write_checkpoint trace should be const char * instead of char *. Signed-off-by: Mukesh Ojha Reviewed-by: Chao Yu Signed-off-by: Jaegeuk Kim --- diff --git a/include/trace/events/f2fs.h b/include/trace/events/f2fs.h index ff57e7f..7fbfce4 100644 --- a/include/trace/events/f2fs.h +++ b/include/trace/events/f2fs.h @@ -1404,7 +1404,7 @@ TRACE_EVENT(f2fs_readpages, TRACE_EVENT(f2fs_write_checkpoint, - TP_PROTO(struct super_block *sb, int reason, char *msg), + TP_PROTO(struct super_block *sb, int reason, const char *msg), TP_ARGS(sb, reason, msg),