Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 1 | /* |
| 2 | * include/net/switchdev.h - Switch device API |
Jiri Pirko | 7ea6eb3 | 2015-09-24 10:02:41 +0200 | [diff] [blame] | 3 | * Copyright (c) 2014-2015 Jiri Pirko <jiri@resnulli.us> |
Scott Feldman | f8f2147 | 2015-03-09 13:59:09 -0700 | [diff] [blame] | 4 | * Copyright (c) 2014-2015 Scott Feldman <sfeldma@gmail.com> |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | */ |
| 11 | #ifndef _LINUX_SWITCHDEV_H_ |
| 12 | #define _LINUX_SWITCHDEV_H_ |
| 13 | |
| 14 | #include <linux/netdevice.h> |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 15 | #include <linux/notifier.h> |
Jiri Pirko | 7ea6eb3 | 2015-09-24 10:02:41 +0200 | [diff] [blame] | 16 | #include <linux/list.h> |
Jiri Pirko | 850d0cb | 2015-10-14 19:40:51 +0200 | [diff] [blame] | 17 | #include <net/ip_fib.h> |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 18 | |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 19 | #define SWITCHDEV_F_NO_RECURSE BIT(0) |
Scott Feldman | 464314e | 2015-10-08 19:23:18 -0700 | [diff] [blame] | 20 | #define SWITCHDEV_F_SKIP_EOPNOTSUPP BIT(1) |
Jiri Pirko | 0bc05d5 | 2015-10-14 19:40:50 +0200 | [diff] [blame] | 21 | #define SWITCHDEV_F_DEFER BIT(2) |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 22 | |
Jiri Pirko | 7ea6eb3 | 2015-09-24 10:02:41 +0200 | [diff] [blame] | 23 | struct switchdev_trans_item { |
| 24 | struct list_head list; |
| 25 | void *data; |
| 26 | void (*destructor)(const void *data); |
| 27 | }; |
| 28 | |
| 29 | struct switchdev_trans { |
| 30 | struct list_head item_list; |
Jiri Pirko | f623ab7 | 2015-09-24 10:02:49 +0200 | [diff] [blame] | 31 | bool ph_prepare; |
Jiri Pirko | 7ea6eb3 | 2015-09-24 10:02:41 +0200 | [diff] [blame] | 32 | }; |
| 33 | |
Jiri Pirko | 8bdb427 | 2015-09-24 10:02:43 +0200 | [diff] [blame] | 34 | static inline bool switchdev_trans_ph_prepare(struct switchdev_trans *trans) |
| 35 | { |
Jiri Pirko | f623ab7 | 2015-09-24 10:02:49 +0200 | [diff] [blame] | 36 | return trans && trans->ph_prepare; |
Jiri Pirko | 8bdb427 | 2015-09-24 10:02:43 +0200 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | static inline bool switchdev_trans_ph_commit(struct switchdev_trans *trans) |
| 40 | { |
Jiri Pirko | f623ab7 | 2015-09-24 10:02:49 +0200 | [diff] [blame] | 41 | return trans && !trans->ph_prepare; |
Jiri Pirko | 8bdb427 | 2015-09-24 10:02:43 +0200 | [diff] [blame] | 42 | } |
| 43 | |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 44 | enum switchdev_attr_id { |
Jiri Pirko | 1f86839 | 2015-10-01 11:03:42 +0200 | [diff] [blame] | 45 | SWITCHDEV_ATTR_ID_UNDEFINED, |
| 46 | SWITCHDEV_ATTR_ID_PORT_PARENT_ID, |
| 47 | SWITCHDEV_ATTR_ID_PORT_STP_STATE, |
| 48 | SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS, |
Arkadi Sharshevsky | dc0ecabd | 2017-06-08 08:44:10 +0200 | [diff] [blame] | 49 | SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS_SUPPORT, |
Nogah Frankel | 6d54964 | 2017-02-09 14:54:42 +0100 | [diff] [blame] | 50 | SWITCHDEV_ATTR_ID_PORT_MROUTER, |
Scott Feldman | f55ac58 | 2015-10-08 19:23:17 -0700 | [diff] [blame] | 51 | SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME, |
Elad Raz | 81435c3 | 2016-01-06 13:01:05 +0100 | [diff] [blame] | 52 | SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING, |
Nogah Frankel | 147c1e9 | 2017-02-09 14:54:40 +0100 | [diff] [blame] | 53 | SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED, |
Yotam Gigi | 7704142 | 2017-10-09 11:15:31 +0200 | [diff] [blame] | 54 | SWITCHDEV_ATTR_ID_BRIDGE_MROUTER, |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | struct switchdev_attr { |
Ido Schimmel | 6ff64f6 | 2015-12-15 16:03:35 +0100 | [diff] [blame] | 58 | struct net_device *orig_dev; |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 59 | enum switchdev_attr_id id; |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 60 | u32 flags; |
Elad Raz | 7ceb2af | 2016-04-21 12:52:43 +0200 | [diff] [blame] | 61 | void *complete_priv; |
| 62 | void (*complete)(struct net_device *dev, int err, void *priv); |
Scott Feldman | f8e20a9 | 2015-05-10 09:47:49 -0700 | [diff] [blame] | 63 | union { |
| 64 | struct netdev_phys_item_id ppid; /* PORT_PARENT_ID */ |
Scott Feldman | 3563606 | 2015-05-10 09:47:51 -0700 | [diff] [blame] | 65 | u8 stp_state; /* PORT_STP_STATE */ |
Scott Feldman | 6004c86 | 2015-05-10 09:47:55 -0700 | [diff] [blame] | 66 | unsigned long brport_flags; /* PORT_BRIDGE_FLAGS */ |
Arkadi Sharshevsky | dc0ecabd | 2017-06-08 08:44:10 +0200 | [diff] [blame] | 67 | unsigned long brport_flags_support; /* PORT_BRIDGE_FLAGS_SUPPORT */ |
Nogah Frankel | 6d54964 | 2017-02-09 14:54:42 +0100 | [diff] [blame] | 68 | bool mrouter; /* PORT_MROUTER */ |
Vivien Didelot | eabfdda | 2016-07-18 15:02:06 -0400 | [diff] [blame] | 69 | clock_t ageing_time; /* BRIDGE_AGEING_TIME */ |
Elad Raz | 81435c3 | 2016-01-06 13:01:05 +0100 | [diff] [blame] | 70 | bool vlan_filtering; /* BRIDGE_VLAN_FILTERING */ |
Nogah Frankel | 147c1e9 | 2017-02-09 14:54:40 +0100 | [diff] [blame] | 71 | bool mc_disabled; /* MC_DISABLED */ |
Scott Feldman | 42275bd | 2015-05-13 11:16:50 -0700 | [diff] [blame] | 72 | } u; |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 75 | enum switchdev_obj_id { |
Jiri Pirko | 57d8083 | 2015-10-01 11:03:41 +0200 | [diff] [blame] | 76 | SWITCHDEV_OBJ_ID_UNDEFINED, |
| 77 | SWITCHDEV_OBJ_ID_PORT_VLAN, |
Elad Raz | 4d41e125 | 2016-01-10 21:06:22 +0100 | [diff] [blame] | 78 | SWITCHDEV_OBJ_ID_PORT_MDB, |
Andrew Lunn | 47d5b6d | 2017-11-09 23:10:59 +0100 | [diff] [blame] | 79 | SWITCHDEV_OBJ_ID_HOST_MDB, |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 80 | }; |
| 81 | |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 82 | struct switchdev_obj { |
Ido Schimmel | 6ff64f6 | 2015-12-15 16:03:35 +0100 | [diff] [blame] | 83 | struct net_device *orig_dev; |
Jiri Pirko | 9e8f4a5 | 2015-10-01 11:03:46 +0200 | [diff] [blame] | 84 | enum switchdev_obj_id id; |
Jiri Pirko | 4d429c5 | 2015-10-14 19:40:52 +0200 | [diff] [blame] | 85 | u32 flags; |
Elad Raz | 7ceb2af | 2016-04-21 12:52:43 +0200 | [diff] [blame] | 86 | void *complete_priv; |
| 87 | void (*complete)(struct net_device *dev, int err, void *priv); |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 88 | }; |
| 89 | |
Jiri Pirko | 57d8083 | 2015-10-01 11:03:41 +0200 | [diff] [blame] | 90 | /* SWITCHDEV_OBJ_ID_PORT_VLAN */ |
Jiri Pirko | 8f24f30 | 2015-10-01 11:03:43 +0200 | [diff] [blame] | 91 | struct switchdev_obj_port_vlan { |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 92 | struct switchdev_obj obj; |
Vivien Didelot | 44bbcf5 | 2015-09-29 12:07:18 -0400 | [diff] [blame] | 93 | u16 flags; |
| 94 | u16 vid_begin; |
| 95 | u16 vid_end; |
| 96 | }; |
| 97 | |
Petr Machata | ec394af | 2018-11-22 23:28:07 +0000 | [diff] [blame] | 98 | #define SWITCHDEV_OBJ_PORT_VLAN(OBJ) \ |
| 99 | container_of((OBJ), struct switchdev_obj_port_vlan, obj) |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 100 | |
Elad Raz | 4d41e125 | 2016-01-10 21:06:22 +0100 | [diff] [blame] | 101 | /* SWITCHDEV_OBJ_ID_PORT_MDB */ |
| 102 | struct switchdev_obj_port_mdb { |
| 103 | struct switchdev_obj obj; |
| 104 | unsigned char addr[ETH_ALEN]; |
| 105 | u16 vid; |
| 106 | }; |
| 107 | |
Petr Machata | ec394af | 2018-11-22 23:28:07 +0000 | [diff] [blame] | 108 | #define SWITCHDEV_OBJ_PORT_MDB(OBJ) \ |
| 109 | container_of((OBJ), struct switchdev_obj_port_mdb, obj) |
Elad Raz | 4d41e125 | 2016-01-10 21:06:22 +0100 | [diff] [blame] | 110 | |
Jiri Pirko | 7ea6eb3 | 2015-09-24 10:02:41 +0200 | [diff] [blame] | 111 | void switchdev_trans_item_enqueue(struct switchdev_trans *trans, |
| 112 | void *data, void (*destructor)(void const *), |
| 113 | struct switchdev_trans_item *tritem); |
| 114 | void *switchdev_trans_item_dequeue(struct switchdev_trans *trans); |
| 115 | |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 116 | typedef int switchdev_obj_dump_cb_t(struct switchdev_obj *obj); |
| 117 | |
Scott Feldman | 4170604 | 2015-03-15 21:07:14 -0700 | [diff] [blame] | 118 | /** |
| 119 | * struct switchdev_ops - switchdev operations |
| 120 | * |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 121 | * @switchdev_port_attr_get: Get a port attribute (see switchdev_attr). |
| 122 | * |
| 123 | * @switchdev_port_attr_set: Set a port attribute (see switchdev_attr). |
Scott Feldman | 4170604 | 2015-03-15 21:07:14 -0700 | [diff] [blame] | 124 | */ |
Jiri Pirko | 9d47c0a | 2015-05-10 09:47:47 -0700 | [diff] [blame] | 125 | struct switchdev_ops { |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 126 | int (*switchdev_port_attr_get)(struct net_device *dev, |
| 127 | struct switchdev_attr *attr); |
| 128 | int (*switchdev_port_attr_set)(struct net_device *dev, |
Jiri Pirko | f7fadf3 | 2015-10-14 19:40:49 +0200 | [diff] [blame] | 129 | const struct switchdev_attr *attr, |
Jiri Pirko | 7ea6eb3 | 2015-09-24 10:02:41 +0200 | [diff] [blame] | 130 | struct switchdev_trans *trans); |
Scott Feldman | 4170604 | 2015-03-15 21:07:14 -0700 | [diff] [blame] | 131 | }; |
| 132 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 133 | enum switchdev_notifier_type { |
Arkadi Sharshevsky | 6b26b51 | 2017-06-08 08:44:14 +0200 | [diff] [blame] | 134 | SWITCHDEV_FDB_ADD_TO_BRIDGE = 1, |
| 135 | SWITCHDEV_FDB_DEL_TO_BRIDGE, |
| 136 | SWITCHDEV_FDB_ADD_TO_DEVICE, |
| 137 | SWITCHDEV_FDB_DEL_TO_DEVICE, |
Arkadi Sharshevsky | 9fe8bce | 2017-06-08 08:44:15 +0200 | [diff] [blame] | 138 | SWITCHDEV_FDB_OFFLOADED, |
Petr Machata | 9a99735 | 2018-10-17 08:53:22 +0000 | [diff] [blame] | 139 | |
Petr Machata | aa4efe2 | 2018-11-22 23:28:38 +0000 | [diff] [blame] | 140 | SWITCHDEV_PORT_OBJ_ADD, /* Blocking. */ |
| 141 | SWITCHDEV_PORT_OBJ_DEL, /* Blocking. */ |
| 142 | |
Petr Machata | 5728ae0 | 2018-11-21 08:02:39 +0000 | [diff] [blame] | 143 | SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE, |
| 144 | SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE, |
Petr Machata | 9a99735 | 2018-10-17 08:53:22 +0000 | [diff] [blame] | 145 | SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE, |
| 146 | SWITCHDEV_VXLAN_FDB_DEL_TO_DEVICE, |
Petr Machata | 0efe117 | 2018-10-17 08:53:26 +0000 | [diff] [blame] | 147 | SWITCHDEV_VXLAN_FDB_OFFLOADED, |
Jiri Pirko | 3aeb661 | 2015-01-15 23:49:37 +0100 | [diff] [blame] | 148 | }; |
| 149 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 150 | struct switchdev_notifier_info { |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 151 | struct net_device *dev; |
Petr Machata | 479c86d | 2018-12-12 17:02:54 +0000 | [diff] [blame] | 152 | struct netlink_ext_ack *extack; |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 153 | }; |
| 154 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 155 | struct switchdev_notifier_fdb_info { |
| 156 | struct switchdev_notifier_info info; /* must be first */ |
Jiri Pirko | 3aeb661 | 2015-01-15 23:49:37 +0100 | [diff] [blame] | 157 | const unsigned char *addr; |
| 158 | u16 vid; |
Ido Schimmel | e9ba0fb | 2018-10-17 08:53:29 +0000 | [diff] [blame] | 159 | u8 added_by_user:1, |
| 160 | offloaded:1; |
Jiri Pirko | 3aeb661 | 2015-01-15 23:49:37 +0100 | [diff] [blame] | 161 | }; |
| 162 | |
Petr Machata | aa4efe2 | 2018-11-22 23:28:38 +0000 | [diff] [blame] | 163 | struct switchdev_notifier_port_obj_info { |
| 164 | struct switchdev_notifier_info info; /* must be first */ |
| 165 | const struct switchdev_obj *obj; |
| 166 | struct switchdev_trans *trans; |
| 167 | bool handled; |
| 168 | }; |
| 169 | |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 170 | static inline struct net_device * |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 171 | switchdev_notifier_info_to_dev(const struct switchdev_notifier_info *info) |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 172 | { |
| 173 | return info->dev; |
| 174 | } |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 175 | |
Petr Machata | 479c86d | 2018-12-12 17:02:54 +0000 | [diff] [blame] | 176 | static inline struct netlink_ext_ack * |
| 177 | switchdev_notifier_info_to_extack(const struct switchdev_notifier_info *info) |
| 178 | { |
| 179 | return info->extack; |
| 180 | } |
| 181 | |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 182 | #ifdef CONFIG_NET_SWITCHDEV |
| 183 | |
Jiri Pirko | 793f401 | 2015-10-14 19:40:48 +0200 | [diff] [blame] | 184 | void switchdev_deferred_process(void); |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 185 | int switchdev_port_attr_get(struct net_device *dev, |
| 186 | struct switchdev_attr *attr); |
| 187 | int switchdev_port_attr_set(struct net_device *dev, |
Jiri Pirko | f7fadf3 | 2015-10-14 19:40:49 +0200 | [diff] [blame] | 188 | const struct switchdev_attr *attr); |
Jiri Pirko | 9e8f4a5 | 2015-10-01 11:03:46 +0200 | [diff] [blame] | 189 | int switchdev_port_obj_add(struct net_device *dev, |
Petr Machata | 69b7320 | 2018-12-12 17:02:52 +0000 | [diff] [blame] | 190 | const struct switchdev_obj *obj, |
| 191 | struct netlink_ext_ack *extack); |
Jiri Pirko | 9e8f4a5 | 2015-10-01 11:03:46 +0200 | [diff] [blame] | 192 | int switchdev_port_obj_del(struct net_device *dev, |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 193 | const struct switchdev_obj *obj); |
Petr Machata | a93e3b1 | 2018-11-22 23:28:25 +0000 | [diff] [blame] | 194 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 195 | int register_switchdev_notifier(struct notifier_block *nb); |
| 196 | int unregister_switchdev_notifier(struct notifier_block *nb); |
| 197 | int call_switchdev_notifiers(unsigned long val, struct net_device *dev, |
| 198 | struct switchdev_notifier_info *info); |
Petr Machata | a93e3b1 | 2018-11-22 23:28:25 +0000 | [diff] [blame] | 199 | |
| 200 | int register_switchdev_blocking_notifier(struct notifier_block *nb); |
| 201 | int unregister_switchdev_blocking_notifier(struct notifier_block *nb); |
| 202 | int call_switchdev_blocking_notifiers(unsigned long val, struct net_device *dev, |
Petr Machata | 479c86d | 2018-12-12 17:02:54 +0000 | [diff] [blame] | 203 | struct switchdev_notifier_info *info, |
| 204 | struct netlink_ext_ack *extack); |
Petr Machata | a93e3b1 | 2018-11-22 23:28:25 +0000 | [diff] [blame] | 205 | |
Scott Feldman | 1a3b2ec | 2015-07-18 18:24:50 -0700 | [diff] [blame] | 206 | void switchdev_port_fwd_mark_set(struct net_device *dev, |
| 207 | struct net_device *group_dev, |
| 208 | bool joining); |
Scott Feldman | 5e8d904 | 2015-03-05 21:21:15 -0800 | [diff] [blame] | 209 | |
Or Gerlitz | 8438884 | 2016-07-14 10:32:43 +0300 | [diff] [blame] | 210 | bool switchdev_port_same_parent_id(struct net_device *a, |
| 211 | struct net_device *b); |
Simon Horman | d643a75 | 2017-06-29 22:08:11 +0200 | [diff] [blame] | 212 | |
Petr Machata | f30f060 | 2018-11-22 23:29:44 +0000 | [diff] [blame] | 213 | int switchdev_handle_port_obj_add(struct net_device *dev, |
| 214 | struct switchdev_notifier_port_obj_info *port_obj_info, |
| 215 | bool (*check_cb)(const struct net_device *dev), |
| 216 | int (*add_cb)(struct net_device *dev, |
| 217 | const struct switchdev_obj *obj, |
Petr Machata | 6921351 | 2018-12-12 17:02:56 +0000 | [diff] [blame^] | 218 | struct switchdev_trans *trans, |
| 219 | struct netlink_ext_ack *extack)); |
Petr Machata | f30f060 | 2018-11-22 23:29:44 +0000 | [diff] [blame] | 220 | int switchdev_handle_port_obj_del(struct net_device *dev, |
| 221 | struct switchdev_notifier_port_obj_info *port_obj_info, |
| 222 | bool (*check_cb)(const struct net_device *dev), |
| 223 | int (*del_cb)(struct net_device *dev, |
| 224 | const struct switchdev_obj *obj)); |
| 225 | |
Simon Horman | d643a75 | 2017-06-29 22:08:11 +0200 | [diff] [blame] | 226 | #define SWITCHDEV_SET_OPS(netdev, ops) ((netdev)->switchdev_ops = (ops)) |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 227 | #else |
| 228 | |
Jiri Pirko | 793f401 | 2015-10-14 19:40:48 +0200 | [diff] [blame] | 229 | static inline void switchdev_deferred_process(void) |
| 230 | { |
| 231 | } |
| 232 | |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 233 | static inline int switchdev_port_attr_get(struct net_device *dev, |
| 234 | struct switchdev_attr *attr) |
| 235 | { |
| 236 | return -EOPNOTSUPP; |
| 237 | } |
| 238 | |
| 239 | static inline int switchdev_port_attr_set(struct net_device *dev, |
Jiri Pirko | f7fadf3 | 2015-10-14 19:40:49 +0200 | [diff] [blame] | 240 | const struct switchdev_attr *attr) |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 241 | { |
| 242 | return -EOPNOTSUPP; |
| 243 | } |
| 244 | |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 245 | static inline int switchdev_port_obj_add(struct net_device *dev, |
Petr Machata | 69b7320 | 2018-12-12 17:02:52 +0000 | [diff] [blame] | 246 | const struct switchdev_obj *obj, |
| 247 | struct netlink_ext_ack *extack) |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 248 | { |
| 249 | return -EOPNOTSUPP; |
| 250 | } |
| 251 | |
| 252 | static inline int switchdev_port_obj_del(struct net_device *dev, |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 253 | const struct switchdev_obj *obj) |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 254 | { |
| 255 | return -EOPNOTSUPP; |
| 256 | } |
| 257 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 258 | static inline int register_switchdev_notifier(struct notifier_block *nb) |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 259 | { |
| 260 | return 0; |
| 261 | } |
| 262 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 263 | static inline int unregister_switchdev_notifier(struct notifier_block *nb) |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 264 | { |
| 265 | return 0; |
| 266 | } |
| 267 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 268 | static inline int call_switchdev_notifiers(unsigned long val, |
| 269 | struct net_device *dev, |
| 270 | struct switchdev_notifier_info *info) |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 271 | { |
| 272 | return NOTIFY_DONE; |
| 273 | } |
| 274 | |
Petr Machata | a93e3b1 | 2018-11-22 23:28:25 +0000 | [diff] [blame] | 275 | static inline int |
| 276 | register_switchdev_blocking_notifier(struct notifier_block *nb) |
| 277 | { |
| 278 | return 0; |
| 279 | } |
| 280 | |
| 281 | static inline int |
| 282 | unregister_switchdev_blocking_notifier(struct notifier_block *nb) |
| 283 | { |
| 284 | return 0; |
| 285 | } |
| 286 | |
| 287 | static inline int |
| 288 | call_switchdev_blocking_notifiers(unsigned long val, |
| 289 | struct net_device *dev, |
Petr Machata | 479c86d | 2018-12-12 17:02:54 +0000 | [diff] [blame] | 290 | struct switchdev_notifier_info *info, |
| 291 | struct netlink_ext_ack *extack) |
Petr Machata | a93e3b1 | 2018-11-22 23:28:25 +0000 | [diff] [blame] | 292 | { |
| 293 | return NOTIFY_DONE; |
| 294 | } |
| 295 | |
Or Gerlitz | 8438884 | 2016-07-14 10:32:43 +0300 | [diff] [blame] | 296 | static inline bool switchdev_port_same_parent_id(struct net_device *a, |
| 297 | struct net_device *b) |
| 298 | { |
| 299 | return false; |
| 300 | } |
| 301 | |
Petr Machata | f30f060 | 2018-11-22 23:29:44 +0000 | [diff] [blame] | 302 | static inline int |
| 303 | switchdev_handle_port_obj_add(struct net_device *dev, |
| 304 | struct switchdev_notifier_port_obj_info *port_obj_info, |
| 305 | bool (*check_cb)(const struct net_device *dev), |
| 306 | int (*add_cb)(struct net_device *dev, |
| 307 | const struct switchdev_obj *obj, |
Petr Machata | 6921351 | 2018-12-12 17:02:56 +0000 | [diff] [blame^] | 308 | struct switchdev_trans *trans, |
| 309 | struct netlink_ext_ack *extack)) |
Petr Machata | f30f060 | 2018-11-22 23:29:44 +0000 | [diff] [blame] | 310 | { |
| 311 | return 0; |
| 312 | } |
| 313 | |
| 314 | static inline int |
| 315 | switchdev_handle_port_obj_del(struct net_device *dev, |
| 316 | struct switchdev_notifier_port_obj_info *port_obj_info, |
| 317 | bool (*check_cb)(const struct net_device *dev), |
| 318 | int (*del_cb)(struct net_device *dev, |
| 319 | const struct switchdev_obj *obj)) |
| 320 | { |
| 321 | return 0; |
| 322 | } |
| 323 | |
Simon Horman | d643a75 | 2017-06-29 22:08:11 +0200 | [diff] [blame] | 324 | #define SWITCHDEV_SET_OPS(netdev, ops) do {} while (0) |
| 325 | |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 326 | #endif |
| 327 | |
| 328 | #endif /* _LINUX_SWITCHDEV_H_ */ |