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, |
Nogah Frankel | 6d54964 | 2017-02-09 14:54:42 +0100 | [diff] [blame] | 49 | SWITCHDEV_ATTR_ID_PORT_MROUTER, |
Scott Feldman | f55ac58 | 2015-10-08 19:23:17 -0700 | [diff] [blame] | 50 | SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME, |
Elad Raz | 81435c3 | 2016-01-06 13:01:05 +0100 | [diff] [blame] | 51 | SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING, |
Nogah Frankel | 147c1e9 | 2017-02-09 14:54:40 +0100 | [diff] [blame] | 52 | SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED, |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | struct switchdev_attr { |
Ido Schimmel | 6ff64f6 | 2015-12-15 16:03:35 +0100 | [diff] [blame] | 56 | struct net_device *orig_dev; |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 57 | enum switchdev_attr_id id; |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 58 | u32 flags; |
Elad Raz | 7ceb2af | 2016-04-21 12:52:43 +0200 | [diff] [blame] | 59 | void *complete_priv; |
| 60 | void (*complete)(struct net_device *dev, int err, void *priv); |
Scott Feldman | f8e20a9 | 2015-05-10 09:47:49 -0700 | [diff] [blame] | 61 | union { |
| 62 | struct netdev_phys_item_id ppid; /* PORT_PARENT_ID */ |
Scott Feldman | 3563606 | 2015-05-10 09:47:51 -0700 | [diff] [blame] | 63 | u8 stp_state; /* PORT_STP_STATE */ |
Scott Feldman | 6004c86 | 2015-05-10 09:47:55 -0700 | [diff] [blame] | 64 | unsigned long brport_flags; /* PORT_BRIDGE_FLAGS */ |
Nogah Frankel | 6d54964 | 2017-02-09 14:54:42 +0100 | [diff] [blame] | 65 | bool mrouter; /* PORT_MROUTER */ |
Vivien Didelot | eabfdda | 2016-07-18 15:02:06 -0400 | [diff] [blame] | 66 | clock_t ageing_time; /* BRIDGE_AGEING_TIME */ |
Elad Raz | 81435c3 | 2016-01-06 13:01:05 +0100 | [diff] [blame] | 67 | bool vlan_filtering; /* BRIDGE_VLAN_FILTERING */ |
Nogah Frankel | 147c1e9 | 2017-02-09 14:54:40 +0100 | [diff] [blame] | 68 | bool mc_disabled; /* MC_DISABLED */ |
Scott Feldman | 42275bd | 2015-05-13 11:16:50 -0700 | [diff] [blame] | 69 | } u; |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 70 | }; |
| 71 | |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 72 | enum switchdev_obj_id { |
Jiri Pirko | 57d8083 | 2015-10-01 11:03:41 +0200 | [diff] [blame] | 73 | SWITCHDEV_OBJ_ID_UNDEFINED, |
| 74 | SWITCHDEV_OBJ_ID_PORT_VLAN, |
Jiri Pirko | 57d8083 | 2015-10-01 11:03:41 +0200 | [diff] [blame] | 75 | SWITCHDEV_OBJ_ID_PORT_FDB, |
Elad Raz | 4d41e125 | 2016-01-10 21:06:22 +0100 | [diff] [blame] | 76 | SWITCHDEV_OBJ_ID_PORT_MDB, |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 77 | }; |
| 78 | |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 79 | struct switchdev_obj { |
Ido Schimmel | 6ff64f6 | 2015-12-15 16:03:35 +0100 | [diff] [blame] | 80 | struct net_device *orig_dev; |
Jiri Pirko | 9e8f4a5 | 2015-10-01 11:03:46 +0200 | [diff] [blame] | 81 | enum switchdev_obj_id id; |
Jiri Pirko | 4d429c5 | 2015-10-14 19:40:52 +0200 | [diff] [blame] | 82 | u32 flags; |
Elad Raz | 7ceb2af | 2016-04-21 12:52:43 +0200 | [diff] [blame] | 83 | void *complete_priv; |
| 84 | void (*complete)(struct net_device *dev, int err, void *priv); |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 85 | }; |
| 86 | |
Jiri Pirko | 57d8083 | 2015-10-01 11:03:41 +0200 | [diff] [blame] | 87 | /* SWITCHDEV_OBJ_ID_PORT_VLAN */ |
Jiri Pirko | 8f24f30 | 2015-10-01 11:03:43 +0200 | [diff] [blame] | 88 | struct switchdev_obj_port_vlan { |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 89 | struct switchdev_obj obj; |
Vivien Didelot | 44bbcf5 | 2015-09-29 12:07:18 -0400 | [diff] [blame] | 90 | u16 flags; |
| 91 | u16 vid_begin; |
| 92 | u16 vid_end; |
| 93 | }; |
| 94 | |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 95 | #define SWITCHDEV_OBJ_PORT_VLAN(obj) \ |
| 96 | container_of(obj, struct switchdev_obj_port_vlan, obj) |
| 97 | |
Jiri Pirko | 57d8083 | 2015-10-01 11:03:41 +0200 | [diff] [blame] | 98 | /* SWITCHDEV_OBJ_ID_PORT_FDB */ |
Jiri Pirko | 52ba57c | 2015-10-01 11:03:44 +0200 | [diff] [blame] | 99 | struct switchdev_obj_port_fdb { |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 100 | struct switchdev_obj obj; |
Jiri Pirko | 850d0cb | 2015-10-14 19:40:51 +0200 | [diff] [blame] | 101 | unsigned char addr[ETH_ALEN]; |
Vivien Didelot | 44bbcf5 | 2015-09-29 12:07:18 -0400 | [diff] [blame] | 102 | u16 vid; |
| 103 | u16 ndm_state; |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 104 | }; |
| 105 | |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 106 | #define SWITCHDEV_OBJ_PORT_FDB(obj) \ |
| 107 | container_of(obj, struct switchdev_obj_port_fdb, obj) |
| 108 | |
Elad Raz | 4d41e125 | 2016-01-10 21:06:22 +0100 | [diff] [blame] | 109 | /* SWITCHDEV_OBJ_ID_PORT_MDB */ |
| 110 | struct switchdev_obj_port_mdb { |
| 111 | struct switchdev_obj obj; |
| 112 | unsigned char addr[ETH_ALEN]; |
| 113 | u16 vid; |
| 114 | }; |
| 115 | |
| 116 | #define SWITCHDEV_OBJ_PORT_MDB(obj) \ |
| 117 | container_of(obj, struct switchdev_obj_port_mdb, obj) |
| 118 | |
Jiri Pirko | 7ea6eb3 | 2015-09-24 10:02:41 +0200 | [diff] [blame] | 119 | void switchdev_trans_item_enqueue(struct switchdev_trans *trans, |
| 120 | void *data, void (*destructor)(void const *), |
| 121 | struct switchdev_trans_item *tritem); |
| 122 | void *switchdev_trans_item_dequeue(struct switchdev_trans *trans); |
| 123 | |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 124 | typedef int switchdev_obj_dump_cb_t(struct switchdev_obj *obj); |
| 125 | |
Scott Feldman | 4170604 | 2015-03-15 21:07:14 -0700 | [diff] [blame] | 126 | /** |
| 127 | * struct switchdev_ops - switchdev operations |
| 128 | * |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 129 | * @switchdev_port_attr_get: Get a port attribute (see switchdev_attr). |
| 130 | * |
| 131 | * @switchdev_port_attr_set: Set a port attribute (see switchdev_attr). |
| 132 | * |
Vivien Didelot | 44bbcf5 | 2015-09-29 12:07:18 -0400 | [diff] [blame] | 133 | * @switchdev_port_obj_add: Add an object to port (see switchdev_obj_*). |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 134 | * |
Vivien Didelot | 44bbcf5 | 2015-09-29 12:07:18 -0400 | [diff] [blame] | 135 | * @switchdev_port_obj_del: Delete an object from port (see switchdev_obj_*). |
Samudrala, Sridhar | 45d4122 | 2015-05-13 21:55:43 -0700 | [diff] [blame] | 136 | * |
Vivien Didelot | 44bbcf5 | 2015-09-29 12:07:18 -0400 | [diff] [blame] | 137 | * @switchdev_port_obj_dump: Dump port objects (see switchdev_obj_*). |
Scott Feldman | 4170604 | 2015-03-15 21:07:14 -0700 | [diff] [blame] | 138 | */ |
Jiri Pirko | 9d47c0a | 2015-05-10 09:47:47 -0700 | [diff] [blame] | 139 | struct switchdev_ops { |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 140 | int (*switchdev_port_attr_get)(struct net_device *dev, |
| 141 | struct switchdev_attr *attr); |
| 142 | int (*switchdev_port_attr_set)(struct net_device *dev, |
Jiri Pirko | f7fadf3 | 2015-10-14 19:40:49 +0200 | [diff] [blame] | 143 | const struct switchdev_attr *attr, |
Jiri Pirko | 7ea6eb3 | 2015-09-24 10:02:41 +0200 | [diff] [blame] | 144 | struct switchdev_trans *trans); |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 145 | int (*switchdev_port_obj_add)(struct net_device *dev, |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 146 | const struct switchdev_obj *obj, |
Jiri Pirko | 7ea6eb3 | 2015-09-24 10:02:41 +0200 | [diff] [blame] | 147 | struct switchdev_trans *trans); |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 148 | int (*switchdev_port_obj_del)(struct net_device *dev, |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 149 | const struct switchdev_obj *obj); |
Samudrala, Sridhar | 45d4122 | 2015-05-13 21:55:43 -0700 | [diff] [blame] | 150 | int (*switchdev_port_obj_dump)(struct net_device *dev, |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 151 | struct switchdev_obj *obj, |
| 152 | switchdev_obj_dump_cb_t *cb); |
Scott Feldman | 4170604 | 2015-03-15 21:07:14 -0700 | [diff] [blame] | 153 | }; |
| 154 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 155 | enum switchdev_notifier_type { |
| 156 | SWITCHDEV_FDB_ADD = 1, |
| 157 | SWITCHDEV_FDB_DEL, |
Jiri Pirko | 3aeb661 | 2015-01-15 23:49:37 +0100 | [diff] [blame] | 158 | }; |
| 159 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 160 | struct switchdev_notifier_info { |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 161 | struct net_device *dev; |
| 162 | }; |
| 163 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 164 | struct switchdev_notifier_fdb_info { |
| 165 | struct switchdev_notifier_info info; /* must be first */ |
Jiri Pirko | 3aeb661 | 2015-01-15 23:49:37 +0100 | [diff] [blame] | 166 | const unsigned char *addr; |
| 167 | u16 vid; |
| 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 | |
| 176 | #ifdef CONFIG_NET_SWITCHDEV |
| 177 | |
Jiri Pirko | 793f401 | 2015-10-14 19:40:48 +0200 | [diff] [blame] | 178 | void switchdev_deferred_process(void); |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 179 | int switchdev_port_attr_get(struct net_device *dev, |
| 180 | struct switchdev_attr *attr); |
| 181 | int switchdev_port_attr_set(struct net_device *dev, |
Jiri Pirko | f7fadf3 | 2015-10-14 19:40:49 +0200 | [diff] [blame] | 182 | const struct switchdev_attr *attr); |
Jiri Pirko | 9e8f4a5 | 2015-10-01 11:03:46 +0200 | [diff] [blame] | 183 | int switchdev_port_obj_add(struct net_device *dev, |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 184 | const struct switchdev_obj *obj); |
Jiri Pirko | 9e8f4a5 | 2015-10-01 11:03:46 +0200 | [diff] [blame] | 185 | int switchdev_port_obj_del(struct net_device *dev, |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 186 | const struct switchdev_obj *obj); |
Jiri Pirko | 9e8f4a5 | 2015-10-01 11:03:46 +0200 | [diff] [blame] | 187 | int switchdev_port_obj_dump(struct net_device *dev, struct switchdev_obj *obj, |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 188 | switchdev_obj_dump_cb_t *cb); |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 189 | int register_switchdev_notifier(struct notifier_block *nb); |
| 190 | int unregister_switchdev_notifier(struct notifier_block *nb); |
| 191 | int call_switchdev_notifiers(unsigned long val, struct net_device *dev, |
| 192 | struct switchdev_notifier_info *info); |
Scott Feldman | 8793d0a | 2015-05-10 09:48:04 -0700 | [diff] [blame] | 193 | int switchdev_port_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq, |
| 194 | struct net_device *dev, u32 filter_mask, |
| 195 | int nlflags); |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 196 | int switchdev_port_bridge_setlink(struct net_device *dev, |
| 197 | struct nlmsghdr *nlh, u16 flags); |
| 198 | int switchdev_port_bridge_dellink(struct net_device *dev, |
| 199 | struct nlmsghdr *nlh, u16 flags); |
Samudrala, Sridhar | 45d4122 | 2015-05-13 21:55:43 -0700 | [diff] [blame] | 200 | int switchdev_port_fdb_add(struct ndmsg *ndm, struct nlattr *tb[], |
| 201 | struct net_device *dev, const unsigned char *addr, |
| 202 | u16 vid, u16 nlm_flags); |
| 203 | int switchdev_port_fdb_del(struct ndmsg *ndm, struct nlattr *tb[], |
| 204 | struct net_device *dev, const unsigned char *addr, |
| 205 | u16 vid); |
| 206 | int switchdev_port_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb, |
| 207 | struct net_device *dev, |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 208 | struct net_device *filter_dev, int *idx); |
Scott Feldman | 1a3b2ec | 2015-07-18 18:24:50 -0700 | [diff] [blame] | 209 | void switchdev_port_fwd_mark_set(struct net_device *dev, |
| 210 | struct net_device *group_dev, |
| 211 | bool joining); |
Scott Feldman | 5e8d904 | 2015-03-05 21:21:15 -0800 | [diff] [blame] | 212 | |
Or Gerlitz | 8438884 | 2016-07-14 10:32:43 +0300 | [diff] [blame] | 213 | bool switchdev_port_same_parent_id(struct net_device *a, |
| 214 | struct net_device *b); |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 215 | #else |
| 216 | |
Jiri Pirko | 793f401 | 2015-10-14 19:40:48 +0200 | [diff] [blame] | 217 | static inline void switchdev_deferred_process(void) |
| 218 | { |
| 219 | } |
| 220 | |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 221 | static inline int switchdev_port_attr_get(struct net_device *dev, |
| 222 | struct switchdev_attr *attr) |
| 223 | { |
| 224 | return -EOPNOTSUPP; |
| 225 | } |
| 226 | |
| 227 | static inline int switchdev_port_attr_set(struct net_device *dev, |
Jiri Pirko | f7fadf3 | 2015-10-14 19:40:49 +0200 | [diff] [blame] | 228 | const struct switchdev_attr *attr) |
Scott Feldman | 3094333 | 2015-05-10 09:47:48 -0700 | [diff] [blame] | 229 | { |
| 230 | return -EOPNOTSUPP; |
| 231 | } |
| 232 | |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 233 | static inline int switchdev_port_obj_add(struct net_device *dev, |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 234 | const struct switchdev_obj *obj) |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 235 | { |
| 236 | return -EOPNOTSUPP; |
| 237 | } |
| 238 | |
| 239 | static inline int switchdev_port_obj_del(struct net_device *dev, |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 240 | const struct switchdev_obj *obj) |
Scott Feldman | 491d0f1 | 2015-05-10 09:47:52 -0700 | [diff] [blame] | 241 | { |
| 242 | return -EOPNOTSUPP; |
| 243 | } |
| 244 | |
Samudrala, Sridhar | 45d4122 | 2015-05-13 21:55:43 -0700 | [diff] [blame] | 245 | static inline int switchdev_port_obj_dump(struct net_device *dev, |
Jiri Pirko | 648b4a9 | 2015-10-01 11:03:45 +0200 | [diff] [blame] | 246 | const struct switchdev_obj *obj, |
| 247 | switchdev_obj_dump_cb_t *cb) |
Samudrala, Sridhar | 45d4122 | 2015-05-13 21:55:43 -0700 | [diff] [blame] | 248 | { |
| 249 | return -EOPNOTSUPP; |
| 250 | } |
| 251 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 252 | static inline int register_switchdev_notifier(struct notifier_block *nb) |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 253 | { |
| 254 | return 0; |
| 255 | } |
| 256 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 257 | static inline int unregister_switchdev_notifier(struct notifier_block *nb) |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 258 | { |
| 259 | return 0; |
| 260 | } |
| 261 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 262 | static inline int call_switchdev_notifiers(unsigned long val, |
| 263 | struct net_device *dev, |
| 264 | struct switchdev_notifier_info *info) |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 265 | { |
| 266 | return NOTIFY_DONE; |
| 267 | } |
| 268 | |
Scott Feldman | 8793d0a | 2015-05-10 09:48:04 -0700 | [diff] [blame] | 269 | static inline int switchdev_port_bridge_getlink(struct sk_buff *skb, u32 pid, |
| 270 | u32 seq, struct net_device *dev, |
| 271 | u32 filter_mask, int nlflags) |
| 272 | { |
| 273 | return -EOPNOTSUPP; |
| 274 | } |
| 275 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 276 | static inline int switchdev_port_bridge_setlink(struct net_device *dev, |
| 277 | struct nlmsghdr *nlh, |
| 278 | u16 flags) |
Roopa Prabhu | 8a44dbb | 2015-01-29 22:40:13 -0800 | [diff] [blame] | 279 | { |
| 280 | return -EOPNOTSUPP; |
| 281 | } |
| 282 | |
Jiri Pirko | ebb9a03 | 2015-05-10 09:47:46 -0700 | [diff] [blame] | 283 | static inline int switchdev_port_bridge_dellink(struct net_device *dev, |
| 284 | struct nlmsghdr *nlh, |
| 285 | u16 flags) |
Roopa Prabhu | 8a44dbb | 2015-01-29 22:40:13 -0800 | [diff] [blame] | 286 | { |
| 287 | return -EOPNOTSUPP; |
| 288 | } |
| 289 | |
Samudrala, Sridhar | 45d4122 | 2015-05-13 21:55:43 -0700 | [diff] [blame] | 290 | static inline int switchdev_port_fdb_add(struct ndmsg *ndm, struct nlattr *tb[], |
| 291 | struct net_device *dev, |
| 292 | const unsigned char *addr, |
| 293 | u16 vid, u16 nlm_flags) |
| 294 | { |
| 295 | return -EOPNOTSUPP; |
| 296 | } |
| 297 | |
| 298 | static inline int switchdev_port_fdb_del(struct ndmsg *ndm, struct nlattr *tb[], |
| 299 | struct net_device *dev, |
| 300 | const unsigned char *addr, u16 vid) |
| 301 | { |
| 302 | return -EOPNOTSUPP; |
| 303 | } |
| 304 | |
| 305 | static inline int switchdev_port_fdb_dump(struct sk_buff *skb, |
| 306 | struct netlink_callback *cb, |
| 307 | struct net_device *dev, |
| 308 | struct net_device *filter_dev, |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 309 | int *idx) |
Samudrala, Sridhar | 45d4122 | 2015-05-13 21:55:43 -0700 | [diff] [blame] | 310 | { |
Rosen, Rami | dd19bde | 2016-09-02 14:11:57 +0300 | [diff] [blame] | 311 | return *idx; |
Samudrala, Sridhar | 45d4122 | 2015-05-13 21:55:43 -0700 | [diff] [blame] | 312 | } |
| 313 | |
Or Gerlitz | 8438884 | 2016-07-14 10:32:43 +0300 | [diff] [blame] | 314 | static inline bool switchdev_port_same_parent_id(struct net_device *a, |
| 315 | struct net_device *b) |
| 316 | { |
| 317 | return false; |
| 318 | } |
| 319 | |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 320 | #endif |
| 321 | |
| 322 | #endif /* _LINUX_SWITCHDEV_H_ */ |