Skip to content

Commit

Permalink
bridge: switchdev: Use an helper to clear forward mark
Browse files Browse the repository at this point in the history
Instead of using ifdef in the C file.

Signed-off-by: Ido Schimmel <[email protected]>
Suggested-by: Nikolay Aleksandrov <[email protected]>
Tested-by: Yotam Gigi <[email protected]>
Acked-by: Nikolay Aleksandrov <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
idosch authored and davem330 committed Sep 5, 2017
1 parent 691223e commit f1c2edd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 1 addition & 3 deletions net/bridge/br_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ netdev_tx_t br_dev_xmit(struct sk_buff *skb, struct net_device *dev)
brstats->tx_bytes += skb->len;
u64_stats_update_end(&brstats->syncp);

#ifdef CONFIG_NET_SWITCHDEV
skb->offload_fwd_mark = 0;
#endif
br_switchdev_frame_unmark(skb);
BR_INPUT_SKB_CB(skb)->brdev = dev;

skb_reset_mac_header(skb);
Expand Down
9 changes: 9 additions & 0 deletions net/bridge/br_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -1091,6 +1091,11 @@ int br_switchdev_set_port_flag(struct net_bridge_port *p,
unsigned long mask);
void br_switchdev_fdb_notify(const struct net_bridge_fdb_entry *fdb,
int type);

static inline void br_switchdev_frame_unmark(struct sk_buff *skb)
{
skb->offload_fwd_mark = 0;
}
#else
static inline int nbp_switchdev_mark_set(struct net_bridge_port *p)
{
Expand Down Expand Up @@ -1119,6 +1124,10 @@ static inline void
br_switchdev_fdb_notify(const struct net_bridge_fdb_entry *fdb, int type)
{
}

static inline void br_switchdev_frame_unmark(struct sk_buff *skb)
{
}
#endif /* CONFIG_NET_SWITCHDEV */

#endif

0 comments on commit f1c2edd

Please sign in to comment.