~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/net/dsa/switch.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-or-later */
  2 
  3 #ifndef __DSA_SWITCH_H
  4 #define __DSA_SWITCH_H
  5 
  6 #include <net/dsa.h>
  7 
  8 struct netlink_ext_ack;
  9 
 10 enum {
 11         DSA_NOTIFIER_AGEING_TIME,
 12         DSA_NOTIFIER_BRIDGE_JOIN,
 13         DSA_NOTIFIER_BRIDGE_LEAVE,
 14         DSA_NOTIFIER_FDB_ADD,
 15         DSA_NOTIFIER_FDB_DEL,
 16         DSA_NOTIFIER_HOST_FDB_ADD,
 17         DSA_NOTIFIER_HOST_FDB_DEL,
 18         DSA_NOTIFIER_LAG_FDB_ADD,
 19         DSA_NOTIFIER_LAG_FDB_DEL,
 20         DSA_NOTIFIER_LAG_CHANGE,
 21         DSA_NOTIFIER_LAG_JOIN,
 22         DSA_NOTIFIER_LAG_LEAVE,
 23         DSA_NOTIFIER_MDB_ADD,
 24         DSA_NOTIFIER_MDB_DEL,
 25         DSA_NOTIFIER_HOST_MDB_ADD,
 26         DSA_NOTIFIER_HOST_MDB_DEL,
 27         DSA_NOTIFIER_VLAN_ADD,
 28         DSA_NOTIFIER_VLAN_DEL,
 29         DSA_NOTIFIER_HOST_VLAN_ADD,
 30         DSA_NOTIFIER_HOST_VLAN_DEL,
 31         DSA_NOTIFIER_MTU,
 32         DSA_NOTIFIER_TAG_PROTO,
 33         DSA_NOTIFIER_TAG_PROTO_CONNECT,
 34         DSA_NOTIFIER_TAG_PROTO_DISCONNECT,
 35         DSA_NOTIFIER_TAG_8021Q_VLAN_ADD,
 36         DSA_NOTIFIER_TAG_8021Q_VLAN_DEL,
 37         DSA_NOTIFIER_CONDUIT_STATE_CHANGE,
 38 };
 39 
 40 /* DSA_NOTIFIER_AGEING_TIME */
 41 struct dsa_notifier_ageing_time_info {
 42         unsigned int ageing_time;
 43 };
 44 
 45 /* DSA_NOTIFIER_BRIDGE_* */
 46 struct dsa_notifier_bridge_info {
 47         const struct dsa_port *dp;
 48         struct dsa_bridge bridge;
 49         bool tx_fwd_offload;
 50         struct netlink_ext_ack *extack;
 51 };
 52 
 53 /* DSA_NOTIFIER_FDB_* */
 54 struct dsa_notifier_fdb_info {
 55         const struct dsa_port *dp;
 56         const unsigned char *addr;
 57         u16 vid;
 58         struct dsa_db db;
 59 };
 60 
 61 /* DSA_NOTIFIER_LAG_FDB_* */
 62 struct dsa_notifier_lag_fdb_info {
 63         struct dsa_lag *lag;
 64         const unsigned char *addr;
 65         u16 vid;
 66         struct dsa_db db;
 67 };
 68 
 69 /* DSA_NOTIFIER_MDB_* */
 70 struct dsa_notifier_mdb_info {
 71         const struct dsa_port *dp;
 72         const struct switchdev_obj_port_mdb *mdb;
 73         struct dsa_db db;
 74 };
 75 
 76 /* DSA_NOTIFIER_LAG_* */
 77 struct dsa_notifier_lag_info {
 78         const struct dsa_port *dp;
 79         struct dsa_lag lag;
 80         struct netdev_lag_upper_info *info;
 81         struct netlink_ext_ack *extack;
 82 };
 83 
 84 /* DSA_NOTIFIER_VLAN_* */
 85 struct dsa_notifier_vlan_info {
 86         const struct dsa_port *dp;
 87         const struct switchdev_obj_port_vlan *vlan;
 88         struct netlink_ext_ack *extack;
 89 };
 90 
 91 /* DSA_NOTIFIER_MTU */
 92 struct dsa_notifier_mtu_info {
 93         const struct dsa_port *dp;
 94         int mtu;
 95 };
 96 
 97 /* DSA_NOTIFIER_TAG_PROTO_* */
 98 struct dsa_notifier_tag_proto_info {
 99         const struct dsa_device_ops *tag_ops;
100 };
101 
102 /* DSA_NOTIFIER_TAG_8021Q_VLAN_* */
103 struct dsa_notifier_tag_8021q_vlan_info {
104         const struct dsa_port *dp;
105         u16 vid;
106 };
107 
108 /* DSA_NOTIFIER_CONDUIT_STATE_CHANGE */
109 struct dsa_notifier_conduit_state_info {
110         const struct net_device *conduit;
111         bool operational;
112 };
113 
114 struct dsa_vlan *dsa_vlan_find(struct list_head *vlan_list,
115                                const struct switchdev_obj_port_vlan *vlan);
116 
117 int dsa_tree_notify(struct dsa_switch_tree *dst, unsigned long e, void *v);
118 int dsa_broadcast(unsigned long e, void *v);
119 
120 int dsa_switch_register_notifier(struct dsa_switch *ds);
121 void dsa_switch_unregister_notifier(struct dsa_switch *ds);
122 
123 #endif
124 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php