projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
948f072
)
SUNRPC: Fix trace_svc_register() call site
author
Chuck Lever
<chuck.lever@oracle.com>
Sun, 14 May 2023 19:51:48 +0000
(15:51 -0400)
committer
Chuck Lever
<chuck.lever@oracle.com>
Sun, 14 May 2023 19:58:14 +0000
(15:58 -0400)
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>
net/sunrpc/svc.c
patch
|
blob
|
history
diff --git
a/net/sunrpc/svc.c
b/net/sunrpc/svc.c
index
43e3212
..
79967b6
100644
(file)
--- 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;
}