diff options
author | Douglas Raillard <douglas.raillard@arm.com> | 2023-03-06 12:25:49 +0000 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2023-03-10 08:57:49 -0800 |
commit | 0b04d4c0542e8573a837b1d81b94209e48723b25 (patch) | |
tree | ee9d5f878f5621006b07862c33966b3911c923fd /include/trace | |
parent | fe15c26ee26efa11741a7b632e9f23b01aca4cc6 (diff) | |
download | linux-stable-0b04d4c0542e8573a837b1d81b94209e48723b25.tar.gz linux-stable-0b04d4c0542e8573a837b1d81b94209e48723b25.tar.bz2 linux-stable-0b04d4c0542e8573a837b1d81b94209e48723b25.zip |
f2fs: Fix f2fs_truncate_partial_nodes ftrace event
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>
Diffstat (limited to 'include/trace')
-rw-r--r-- | include/trace/events/f2fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/events/f2fs.h b/include/trace/events/f2fs.h index 1322d34a5dfc..99cbc5949e3c 100644 --- a/include/trace/events/f2fs.h +++ b/include/trace/events/f2fs.h @@ -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) ), |