SUNRPC: Fix trace_svc_register() call site
[ Upstream commit07a2730593] The trace event recorded incorrect values for the registered family, protocol, and port because the arguments are in the wrong order. Fixes:b4af59328c("SUNRPC: Trace server-side rpcbind registration events") Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
f9982db735
commit
ce97bb60a6
1 changed files with 1 additions and 1 deletions
|
|
@ -995,7 +995,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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue