f2fs: Fix f2fs_truncate_partial_nodes ftrace event
authorDouglas Raillard <douglas.raillard@arm.com>
Mon, 6 Mar 2023 12:25:49 +0000 (12:25 +0000)
committerJaegeuk Kim <jaegeuk@kernel.org>
Fri, 10 Mar 2023 16:57:49 +0000 (08:57 -0800)
Fix the nid_t field so that its size is correctly reported in the text
format embedded in trace.dat files. As it stands, it is reported as
being of size 4:

        field:nid_t nid[3];     offset:24;      size:4; signed:0;

Instead of 12:

        field:nid_t nid[3];     offset:24;      size:12;        signed:0;

This also fixes the reported offset of subsequent fields so that they
match with the actual struct layout.

Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
Reviewed-by: Mukesh Ojha <quic_mojha@quicinc.com>
Reviewed-by: Chao Yu <chao@kernel.org>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
include/trace/events/f2fs.h

index 1322d34a5dfc17cdcdc26eee30b0c497a4a4fe91..99cbc5949e3cd0ae13f72eff9efdf88eed2c1df6 100644 (file)
@@ -512,7 +512,7 @@ TRACE_EVENT(f2fs_truncate_partial_nodes,
        TP_STRUCT__entry(
                __field(dev_t,  dev)
                __field(ino_t,  ino)
-               __field(nid_t,  nid[3])
+               __array(nid_t,  nid, 3)
                __field(int,    depth)
                __field(int,    err)
        ),