Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

nfs: cleanup tracepoint declarations

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>

authored by

Leo Martins and committed by
Anna Schumaker
64dd8022 83c47ef8

+3 -3
+3 -3
fs/nfs/nfstrace.h
··· 984 984 __entry->fileid = nfsi->fileid; 985 985 __entry->fhandle = nfs_fhandle_hash(&nfsi->fh); 986 986 __entry->version = inode_peek_iversion_raw(inode); 987 - __entry->offset = offset, 987 + __entry->offset = offset; 988 988 __entry->count = count; 989 989 ), 990 990 ··· 1034 1034 __entry->fileid = nfsi->fileid; 1035 1035 __entry->fhandle = nfs_fhandle_hash(&nfsi->fh); 1036 1036 __entry->version = inode_peek_iversion_raw(inode); 1037 - __entry->offset = offset, 1038 - __entry->count = count, 1037 + __entry->offset = offset; 1038 + __entry->count = count; 1039 1039 __entry->ret = ret; 1040 1040 ), 1041 1041