diff options
| author | 2021-10-08 15:47:48 -0700 | |
|---|---|---|
| committer | 2021-10-08 15:47:49 -0700 | |
| commit | bccf56c4cbf18db7170350f18fa7d0530cce0ddc (patch) | |
| tree | 15744d3dca240c277f88849b9283d64b20f6f229 /include/linux | |
| parent | nfc: nci: fix the UAF of rf_conn_info object (diff) | |
| parent | net: dsa: mv88e6xxx: isolate the ATU databases of standalone and bridged ports (diff) | |
Merge branch 'dsa-bridge-tx-forwarding-offload-fixes-part-1'
Vladimir Oltean says:
====================
DSA bridge TX forwarding offload fixes - part 1
This is part 1 of a series of fixes to the bridge TX forwarding offload
feature introduced for v5.15. Sadly, the other fixes are so intrusive
that they cannot be reasonably be sent to the "net" tree, as they also
include API changes. So they are left as part 2 for net-next.
====================
Link: https://lore.kernel.org/r/20211007164711.2897238-1-vladimir.oltean@nxp.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/dsa/mv88e6xxx.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/dsa/mv88e6xxx.h b/include/linux/dsa/mv88e6xxx.h new file mode 100644 index 000000000000..8c3d45eca46b --- /dev/null +++ b/include/linux/dsa/mv88e6xxx.h @@ -0,0 +1,13 @@ +/* SPDX-License-Identifier: GPL-2.0 + * Copyright 2021 NXP + */ + +#ifndef _NET_DSA_TAG_MV88E6XXX_H +#define _NET_DSA_TAG_MV88E6XXX_H + +#include <linux/if_vlan.h> + +#define MV88E6XXX_VID_STANDALONE 0 +#define MV88E6XXX_VID_BRIDGED (VLAN_N_VID - 1) + +#endif |
