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 lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id A4CF1C4167B for ; Tue, 31 Oct 2023 09:09:05 +0000 (UTC) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=VblEe006; dkim-atps=neutral Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4SKPTD1HNbz3cT2 for ; Tue, 31 Oct 2023 20:09:04 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=VblEe006; dkim-atps=neutral Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=kernel.org (client-ip=2604:1380:4641:c500::1; helo=dfw.source.kernel.org; envelope-from=kvalo@kernel.org; receiver=lists.ozlabs.org) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4SKPSC0XsKz2yVN for ; Tue, 31 Oct 2023 20:08:10 +1100 (AEDT) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 229A860E09; Tue, 31 Oct 2023 09:08:07 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 84EEBC433C8; Tue, 31 Oct 2023 09:08:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1698743286; bh=feIBOznLOh65axwYyiiYpq9McN8nBddJCuTkou94EY8=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=VblEe006dkOhHKFV8lXYkjBoV+/BKggu8KsI5kMIAb2Q1426nw4dRAAVoYwb69UEw G4GLrarHQQVvZuXCYCZpQm3MzyKeWeBmJjvlgQ6PMCq7xr4I4hB0HHfGshV2oZUG15 X6DMTAU3M/qqtSGFor+HnXWdZfMMByBst6bHmnUyfk/boW/rAygCoryItoD82ouGdQ F5rgczw5G1IKtPxgez4yKfn8OvhBZ5q4umOXcv+za1DnTK33HU98GoVwOWr045jrBq m/rH+Oca3fkh8qYaRN6iMziupF3suM3KgYmJZfX4wsLpF+TVmwMsBaFclHecefyoKM WMmuIxn5gT6Nw== From: Kalle Valo To: Arnd Bergmann Subject: Re: [PATCH 00/10] Remove obsolete and orphaned wifi drivers References: <20231023131953.2876682-1-arnd@kernel.org> Date: Tue, 31 Oct 2023 11:08:00 +0200 In-Reply-To: <20231023131953.2876682-1-arnd@kernel.org> (Arnd Bergmann's message of "Mon, 23 Oct 2023 15:19:42 +0200") Message-ID: <874ji7w45r.fsf@kernel.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Stanislaw Gruszka , Alexandre Belloni , linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org, Arnd Bergmann , Geoff Levand , Greg Kroah-Hartman , linuxppc-dev , linux-wireless@vger.kernel.org, Claudiu Beznea , Nicolas Ferre , Geert Uytterhoeven , Pavel Machek , Gregory Greenman , Jakub Kicinski , Johannes Berg , Jeff Johnson , "David S . Miller" , linux-arm-kernel@lists.infradead.org, Larry Finger Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" Arnd Bergmann writes: > From: Arnd Bergmann > > As discussed previously, a lot of the older wifi drivers are likely > entirely unused, Though we can't know for sure. > > As suggested by both Greg and Jakub, let's remove the ones that look > are most likely to have no users left and also get in the way of the > wext cleanup. If anyone is still using any of these, we can revert the > driver removal individually. > > I would suggest merging these for net-next after 6.7-rc1 is out, to give > them the maximum amount of time for users to speak up before a release > comes out. > > This kills off all pcmcia wifi drivers, and all wext users in > drivers/net/wireless, but not the ps3-gelic-wireless driver in > drivers/net/ethernet, or the staging drivers. > > In staging, rtl8192u was already removed in the meantime, while rtl8712 > and rtl8192e are apparently still used. I have not been able to find > out whether ks7010 is still in use. > > Arnd > > Link: https://lore.kernel.org/lkml/20231011080955.1beeb010@kernel.org/ > > > Arnd Bergmann (10): > wifi: libertas: drop 16-bit PCMCIA support > wifi: atmel: remove wext style at76c50x drivers > wifi: remove orphaned cisco/aironet driver > wifi: remove obsolete hostap driver > wifi: remove orphaned zd1201 driver > wifi: remove orphaned orinoco driver > wifi: remove orphaned ray_cs driver > wifi: remove orphaned wl3501 driver > wifi: remove orphaned rndis_wlan driver > [RFC] wifi: remove ipw2100/ipw2200 drivers I manually applied these 9 to wireless-next: 4b478bf6bdd8 wifi: libertas: drop 16-bit PCMCIA support 77e49bec6414 wifi: atmel: remove wext style at76c50x drivers 6853c70ba5ed wifi: remove orphaned cisco/aironet driver d0172d5f7576 wifi: remove obsolete hostap driver 757a46c2a7a9 wifi: remove orphaned zd1201 driver 1535d5962d79 wifi: remove orphaned orinoco driver 6b9dbaff83d6 wifi: remove orphaned ray_cs driver 238349207cd3 wifi: remove orphaned wl3501 driver bec95598b24a wifi: remove orphaned rndis_wlan driver I dropped this patch as we got several reports about people using the driver: [RFC] wifi: remove ipw2100/ipw2200 drivers The patches are queued for v6.8. Arnd, thanks a lot for cleaning this up! -- https://patchwork.kernel.org/project/linux-wireless/list/ https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches