From: Chuck Lever <chuck.lever@oracle.com> Date: Sun, 14 May 2023 19:51:48 +0000 (-0400) Subject: SUNRPC: Fix trace_svc_register() call site X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=07a27305938559fb35f7a46fb90a5e37728bdee6;p=linux.git SUNRPC: Fix trace_svc_register() call site The trace event recorded incorrect values for the registered family, protocol, and port because the arguments are in the wrong order. Fixes: b4af59328c25 ("SUNRPC: Trace server-side rpcbind registration events") Signed-off-by: Chuck Lever <chuck.lever@oracle.com> --- diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index 43e32129a583a..79967b6925bd6 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c @@ -1052,7 +1052,7 @@ static int __svc_register(struct net *net, const char *progname, #endif } - trace_svc_register(progname, version, protocol, port, family, error); + trace_svc_register(progname, version, family, protocol, port, error); return error; }