]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
nfs: cleanup tracepoint declarations
authorLeo Martins <loemra.dev@gmail.com>
Thu, 21 Aug 2025 22:04:02 +0000 (15:04 -0700)
committerAnna Schumaker <anna.schumaker@oracle.com>
Tue, 23 Sep 2025 17:28:19 +0000 (13:28 -0400)
Cleanup tracepoint declarations by replacing commas with
semicolons to better match other tracepoint declarations.

No functional changes introduced.

Signed-off-by: Leo Martins <loemra.dev@gmail.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Anna Schumaker <anna.schumaker@oracle.com>
fs/nfs/nfstrace.h

index 4c935652cfd447a8fdd8e1a3f085be14c0ad94bd..1356ce10236acb3c9b8324baecc5fe5daeafcde5 100644 (file)
@@ -984,7 +984,7 @@ DECLARE_EVENT_CLASS(nfs_folio_event,
                        __entry->fileid = nfsi->fileid;
                        __entry->fhandle = nfs_fhandle_hash(&nfsi->fh);
                        __entry->version = inode_peek_iversion_raw(inode);
-                       __entry->offset = offset,
+                       __entry->offset = offset;
                        __entry->count = count;
                ),
 
@@ -1034,8 +1034,8 @@ DECLARE_EVENT_CLASS(nfs_folio_event_done,
                        __entry->fileid = nfsi->fileid;
                        __entry->fhandle = nfs_fhandle_hash(&nfsi->fh);
                        __entry->version = inode_peek_iversion_raw(inode);
-                       __entry->offset = offset,
-                       __entry->count = count,
+                       __entry->offset = offset;
+                       __entry->count = count;
                        __entry->ret = ret;
                ),