diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-03-29 20:13:37 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-03-29 20:13:37 +0300 |
commit | 3577a4d37f9e5caeb817e221482385151795ec6a (patch) | |
tree | 62c476716e77bf3a1cf4ea858a3622c790e89a8f /include | |
parent | fcd476ea6a888ef6e6627f4c21a2ea8cca3e9312 (diff) | |
parent | 0b04d4c0542e8573a837b1d81b94209e48723b25 (diff) | |
download | linux-3577a4d37f9e5caeb817e221482385151795ec6a.tar.xz |
Merge tag 'f2fs-fix-6.3-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs
Pull f2fs fix from Jaegeuk Kim:
"This fixes a tracepoint field size in f2fs in preparation for stricter
rules for tracing fields"
* tag 'f2fs-fix-6.3-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs:
f2fs: Fix f2fs_truncate_partial_nodes ftrace event
Diffstat (limited to 'include')
-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) ), |