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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4413FC433FE for ; Tue, 22 Nov 2022 11:35:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232348AbiKVLfQ (ORCPT ); Tue, 22 Nov 2022 06:35:16 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50036 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232526AbiKVLec (ORCPT ); Tue, 22 Nov 2022 06:34:32 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3DB126314D for ; Tue, 22 Nov 2022 03:29:11 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id DFEB9B81A29 for ; Tue, 22 Nov 2022 11:29:09 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B0DA8C433D6; Tue, 22 Nov 2022 11:29:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1669116548; bh=HIeb1miepSI+2beteNcMmbvxY+NUbGb7OayzFNRvk8k=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=qSfpoiK0S0+gEk71RX7WkY5clz3eVLnwTUPcsIuHT1VYVArwa8BMCSmUSVEdIWQrE VAIumdXSJSAX7yiJD751qF4VfoKLASXF42GJ5r8gq02NYqZjrPjwnlpgtBile+cnoP jYQVslCOeNAn701sy9F7bou3tsEGMd6U4VqWsH5hqqXrvqUFSeug6js6eIJkZCWuP4 /M+Pl9BtmGFN64bc2ezeBHlWgbfhebeT2ve+q02xaPmnUcxO8YAwl9DhXeWgH/YKbk alv1q3XBbzttwsI0MEIaM5ej4nS1x4DgHSRdsHYxH7BVrXjqjsQ9RQI3GnZkMndXdx HYx9TCJZVsoqQ== Date: Tue, 22 Nov 2022 13:29:03 +0200 From: Leon Romanovsky To: Anirudh Venkataramanan , Paolo Abeni , "David S. Miller" , Jakub Kicinski Cc: netdev@vger.kernel.org, Ira Weiny , "Fabio M . De Francesco" Subject: Re: [PATCH net-next 0/5] Remove uses of kmap_atomic() Message-ID: References: <20221117222557.2196195-1-anirudh.venkataramanan@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221117222557.2196195-1-anirudh.venkataramanan@intel.com> Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Thu, Nov 17, 2022 at 02:25:52PM -0800, Anirudh Venkataramanan wrote: > kmap_atomic() is being deprecated. This little series replaces the last > few uses of kmap_atomic() in ethernet drivers with either page_address() > or kmap_local_page(). > > Anirudh Venkataramanan (5): > ch_ktls: Use kmap_local_page() instead of kmap_atomic() > sfc: Use kmap_local_page() instead of kmap_atomic() > cassini: Remove unnecessary use of kmap_atomic() > cassini: Use kmap_local_page() instead of kmap_atomic() > sunvnet: Use kmap_local_page() instead of kmap_atomic() > > .../chelsio/inline_crypto/ch_ktls/chcr_ktls.c | 10 ++--- > drivers/net/ethernet/sfc/tx.c | 4 +- > drivers/net/ethernet/sun/cassini.c | 40 ++++++------------- > drivers/net/ethernet/sun/sunvnet_common.c | 4 +- Dave, Jakub, Paolo I wonder if these drivers can be simply deleted. Thanks > 4 files changed, 22 insertions(+), 36 deletions(-) > > > base-commit: b4b221bd79a1c698d9653e3ae2c3cb61cdc9aee7 > -- > 2.37.2 >