From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0B351C433E6 for ; Wed, 6 Jan 2021 17:45:15 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CDC722312F for ; Wed, 6 Jan 2021 17:45:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727557AbhAFRoq (ORCPT ); Wed, 6 Jan 2021 12:44:46 -0500 Received: from new3-smtp.messagingengine.com ([66.111.4.229]:49273 "EHLO new3-smtp.messagingengine.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727176AbhAFRop (ORCPT ); Wed, 6 Jan 2021 12:44:45 -0500 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailnew.nyi.internal (Postfix) with ESMTP id 43878580649; Wed, 6 Jan 2021 12:43:39 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute3.internal (MEProxy); Wed, 06 Jan 2021 12:43:39 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=R9cHpU jZgNw/Gcr7ubUDVTY7DA+QU9o1PGZo8Xw6bUY=; b=Hos9Cx2a0cDzhoumhGRd1X kYlpGmxWieLWG8JdRmBzGLaJTxLuifz24OY0R1TqYpeQourUBkadhwAVAxvKMQ/b YSkt/SNnASdiPEzgHWvw8uHlQ0fknlu1WomAx65xDn6vCV8CiFgEPFbbv/t81ziP 3C5IXo2Hb2EcQDp2kjDTsjUBLe2/wRYqKtCyLycB5AFu8f7K+mynPpxy2eHyedn8 b5hzOb/tPX8oSOReVxGbT7T/5TgMvvXM7sPjryxW8zo44Qk6SCi6jZSqMLMpCtlJ Y/xyb6wMm0phEGFQvDxSCdr/8+VQl9z9qvSLJk/ID/c5fNfp1CJhGEFKjjktq0bw == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedujedrvdegtddgtdelucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvffukfhfgggtuggjsehttdertddttddvnecuhfhrohhmpefkughoucfu tghhihhmmhgvlhcuoehiughoshgthhesihguohhstghhrdhorhhgqeenucggtffrrghtth gvrhhnpedtffekkeefudffveegueejffejhfetgfeuuefgvedtieehudeuueekhfduheel teenucfkphepkeegrddvvdelrdduheefrdeggeenucevlhhushhtvghrufhiiigvpedune curfgrrhgrmhepmhgrihhlfhhrohhmpehiughoshgthhesihguohhstghhrdhorhhg X-ME-Proxy: Received: from localhost (igld-84-229-153-44.inter.net.il [84.229.153.44]) by mail.messagingengine.com (Postfix) with ESMTPA id BB58F1080057; Wed, 6 Jan 2021 12:43:36 -0500 (EST) Date: Wed, 6 Jan 2021 19:43:34 +0200 From: Ido Schimmel To: Vladimir Oltean Cc: "David S. Miller" , Jakub Kicinski , netdev@vger.kernel.org, Florian Fainelli , Andrew Lunn , Vivien Didelot , Kurt Kanzenbach , Hauke Mehrtens , Woojung Huh , Microchip Linux Driver Support , Sean Wang , Landen Chao , Claudiu Manoil , Alexandre Belloni , Linus Walleij , Vadym Kochan , Taras Chornyi , Jiri Pirko , Ido Schimmel , Grygorii Strashko , Ioana Ciornei , Ivan Vecera Subject: Re: [PATCH v2 net-next 03/10] net: switchdev: delete switchdev_port_obj_add_now Message-ID: <20210106174334.GB1082997@shredder.lan> References: <20210106131006.577312-1-olteanv@gmail.com> <20210106131006.577312-4-olteanv@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210106131006.577312-4-olteanv@gmail.com> Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Wed, Jan 06, 2021 at 03:09:59PM +0200, Vladimir Oltean wrote: > From: Vladimir Oltean > > After the removal of the transactional model inside > switchdev_port_obj_add_now, it has no added value and we can just call > switchdev_port_obj_notify directly, bypassing this function. Let's > delete it. > > Signed-off-by: Vladimir Oltean > Reviewed-by: Florian Fainelli > Acked-by: Linus Walleij > Acked-by: Jiri Pirko Reviewed-by: Ido Schimmel