mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2026-01-02 18:03:24 +00:00
Merge branch 'master' into net-next
This commit is contained in:
commit
18820bacdc
@ -307,23 +307,6 @@ static int ifname_map_lookup(struct dl *dl, const char *ifname,
|
||||
return -ENOENT;
|
||||
}
|
||||
|
||||
static int ifname_map_rev_lookup(struct dl *dl, const char *bus_name,
|
||||
const char *dev_name, uint32_t port_index,
|
||||
char **p_ifname)
|
||||
{
|
||||
struct ifname_map *ifname_map;
|
||||
|
||||
list_for_each_entry(ifname_map, &dl->ifname_map_list, list) {
|
||||
if (strcmp(bus_name, ifname_map->bus_name) == 0 &&
|
||||
strcmp(dev_name, ifname_map->dev_name) == 0 &&
|
||||
port_index == ifname_map->port_index) {
|
||||
*p_ifname = ifname_map->ifname;
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
return -ENOENT;
|
||||
}
|
||||
|
||||
static unsigned int strslashcount(char *str)
|
||||
{
|
||||
unsigned int count = 0;
|
||||
@ -665,26 +648,6 @@ static void pr_out_port_handle(struct nlattr **tb)
|
||||
mnl_attr_get_u32(tb[DEVLINK_ATTR_PORT_INDEX]));
|
||||
}
|
||||
|
||||
static void __pr_out_port_handle_nice(struct dl *dl, const char *bus_name,
|
||||
const char *dev_name, uint32_t port_index)
|
||||
{
|
||||
char *ifname;
|
||||
int err;
|
||||
|
||||
if (dl->no_nice_names)
|
||||
goto no_nice_names;
|
||||
|
||||
err = ifname_map_rev_lookup(dl, bus_name, dev_name,
|
||||
port_index, &ifname);
|
||||
if (err)
|
||||
goto no_nice_names;
|
||||
pr_out("%s", ifname);
|
||||
return;
|
||||
|
||||
no_nice_names:
|
||||
__pr_out_port_handle(bus_name, dev_name, port_index);
|
||||
}
|
||||
|
||||
static void pr_out_dev(struct nlattr **tb)
|
||||
{
|
||||
pr_out_handle(tb);
|
||||
|
||||
@ -2236,8 +2236,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;
|
||||
@ -2264,7 +2263,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