From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=hWVdHii8ckcvI1Css/ppCdD5B7yTXb8aPWmds2fbqAc=; b=BCMNWxM5zaaINeR/+8ZVcbNv5XBD/+MqdBwzZC6Y+Y3j7uPrNsnlA7xqY2YbsizSpT 5x/onSuYPJhbCdfs7Voc+XmulP4h3GkduZngv9lxoLFQ68fYVw/6N19J/DE+Mq+aYl1y M96TaWEwa9qrRJv5pSRfsuZD/fuaC1NSUPGVvSuXKpJbADC1H4e4rfncGKfL2S8Douy4 iKTwNBipSujejKAfq3Zq/x2+u7ee/RrZUjLkdODVE7nztfZCE2trkFxFcWyGdQzEVFOY fwxIeHqNdAqi7BQ+588q4fI2Y5BW16KWrCFjLrMS/60pGSQPtKGkqYX0h8+5GhQsFdlZ k04Q== From: Florian Fainelli Date: Fri, 15 Feb 2019 20:55:49 -0800 Message-Id: <20190216045556.3514-3-f.fainelli@gmail.com> In-Reply-To: <20190216045556.3514-1-f.fainelli@gmail.com> References: <20190216045556.3514-1-f.fainelli@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Bridge] [PATCH net-next v3 2/9] switchdev: Add SWITCHDEV_PORT_ATTR_SET, SWITCHDEV_PORT_ATTR_GET List-Id: Linux Ethernet Bridging List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: netdev@vger.kernel.org Cc: devel@driverdev.osuosl.org, andrew@lunn.ch, Florian Fainelli , bridge@lists.linux-foundation.org, linux-kernel@vger.kernel.org, idosch@mellanox.com, jiri@mellanox.com, vivien.didelot@gmail.com In preparation for allowing switchdev enabled drivers to veto specific attribute settings from within the context of the caller, introduce a new switchdev notifier type for port attributes. Suggested-by: Ido Schimmel Signed-off-by: Florian Fainelli --- include/net/switchdev.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/net/switchdev.h b/include/net/switchdev.h index 5e87b54c5dc5..b8becabbef38 100644 --- a/include/net/switchdev.h +++ b/include/net/switchdev.h @@ -143,6 +143,9 @@ enum switchdev_notifier_type { SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE, SWITCHDEV_VXLAN_FDB_DEL_TO_DEVICE, SWITCHDEV_VXLAN_FDB_OFFLOADED, + + SWITCHDEV_PORT_ATTR_SET, /* Blocking. */ + SWITCHDEV_PORT_ATTR_GET, /* Blocking. */ }; struct switchdev_notifier_info { @@ -165,6 +168,13 @@ struct switchdev_notifier_port_obj_info { bool handled; }; +struct switchdev_notifier_port_attr_info { + struct switchdev_notifier_info info; /* must be first */ + struct switchdev_attr *attr; + struct switchdev_trans *trans; + bool handled; +}; + static inline struct net_device * switchdev_notifier_info_to_dev(const struct switchdev_notifier_info *info) { -- 2.19.1