mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-10-13 21:26:17 +00:00
ss: Remove unused argument from kill_inet_sock
addr is not used here. Signed-off-by: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
This commit is contained in:
parent
719c443bb8
commit
b38e740903
@ -2232,8 +2232,7 @@ struct inet_diag_arg {
|
||||
struct rtnl_handle *rth;
|
||||
};
|
||||
|
||||
static int kill_inet_sock(const struct sockaddr_nl *addr,
|
||||
struct nlmsghdr *h, void *arg)
|
||||
static int kill_inet_sock(struct nlmsghdr *h, void *arg)
|
||||
{
|
||||
struct inet_diag_msg *d = NLMSG_DATA(h);
|
||||
struct inet_diag_arg *diag_arg = arg;
|
||||
@ -2260,7 +2259,7 @@ static int show_one_inet_sock(const struct sockaddr_nl *addr,
|
||||
|
||||
if (!(diag_arg->f->families & (1 << r->idiag_family)))
|
||||
return 0;
|
||||
if (diag_arg->f->kill && kill_inet_sock(addr, h, arg) != 0) {
|
||||
if (diag_arg->f->kill && kill_inet_sock(h, arg) != 0) {
|
||||
if (errno == EOPNOTSUPP || errno == ENOENT) {
|
||||
/* Socket can't be closed, or is already closed. */
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user