Skip to content

Commit

Permalink
net: add phys ID compare helper to test if two IDs are the same
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Scott Feldman authored and David S. Miller committed Jul 21, 2015
1 parent 0c4f691 commit d754f98
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 7 additions & 0 deletions include/linux/netdevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -766,6 +766,13 @@ struct netdev_phys_item_id {
unsigned char id_len;
};

static inline bool netdev_phys_item_id_same(struct netdev_phys_item_id *a,
struct netdev_phys_item_id *b)
{
return a->id_len == b->id_len &&
memcmp(a->id, b->id, a->id_len) == 0;
}

typedef u16 (*select_queue_fallback_t)(struct net_device *dev,
struct sk_buff *skb);

Expand Down
8 changes: 2 additions & 6 deletions net/switchdev/switchdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -910,13 +910,9 @@ static struct net_device *switchdev_get_dev_by_nhs(struct fib_info *fi)
if (switchdev_port_attr_get(dev, &attr))
return NULL;

if (nhsel > 0) {
if (prev_attr.u.ppid.id_len != attr.u.ppid.id_len)
if (nhsel > 0 &&
!netdev_phys_item_id_same(&prev_attr.u.ppid, &attr.u.ppid))
return NULL;
if (memcmp(prev_attr.u.ppid.id, attr.u.ppid.id,
attr.u.ppid.id_len))
return NULL;
}

prev_attr = attr;
}
Expand Down

0 comments on commit d754f98

Please sign in to comment.