From: kernel test robot <lkp@xxxxxxxxx> net/sunrpc/sysfs.c:123:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Trond Myklebust <trond.myklebust@xxxxxxxxxxxxxxx> Reported-by: kernel test robot <lkp@xxxxxxxxx> Signed-off-by: kernel test robot <lkp@xxxxxxxxx> --- url: https://github.com/0day-ci/linux/commits/trondmy-kernel-org/SUNRPC-Do-not-dereference-non-socket-transports-in-sysfs/20220325-054144 base: git://git.linux-nfs.org/projects/trondmy/linux-nfs.git linux-next :::::: branch date: 4 hours ago :::::: commit date: 4 hours ago net/sunrpc/sysfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/net/sunrpc/sysfs.c +++ b/net/sunrpc/sysfs.c @@ -120,7 +120,7 @@ static ssize_t rpc_sysfs_xprt_srcaddr_sh default: fmt = "<not a socket>\n"; goto out; - }; + } sock = container_of(xprt, struct sock_xprt, xprt); mutex_lock(&sock->recv_mutex);