netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Karl Volz <karl.volz@oracle.com>
To: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com>,
	netdev@vger.kernel.org
Cc: linux-pci@vger.kernel.org, linuxppc-dev@lists.ozlabs.org,
	linux-mips@vger.kernel.org, linux-trace-kernel@vger.kernel.org,
	sparclinux@vger.kernel.org, Leon Romanovsky <leon@kernel.org>
Subject: Re: [PATCH net-next 0/7] Remove three Sun net drivers
Date: Fri, 6 Jan 2023 15:44:38 -0700	[thread overview]
Message-ID: <c43562d7-8e6b-40d9-26dc-ab85afcef70e@oracle.com> (raw)
In-Reply-To: <20230106220020.1820147-1-anirudh.venkataramanan@intel.com>



On 1/6/23 15:00, Anirudh Venkataramanan wrote:
> This series removes the Sun Cassini, LDOM vswitch and sunvnet drivers.
>
> In a recent patch series that touched these drivers [1], it was suggested
> that these drivers should be removed completely. git logs suggest that
> there hasn't been any significant feature addition, improvement or fixes
> to user-visible bugs in a while. A web search didn't indicate any recent
> discussions or any evidence that there are users out there who care about
> these drivers.
>
> The idea behind putting out this series is to either establish that these
> drivers are used and should be maintained, or remove them.
Anirudh,

The Sun LDOM vswitch and sunvnet drivers are still in use, please do not 
remove them or the event tracing.
We use them internally and you don't see any discussions because they 
generally work fine (AFAIK).
I think you are also going to break things by removing Sun Cassini 
support, but I am not using it personally.
What user visible bugs are you referring to here?


Thanks
Karl
>
> While the bulk of the code removal is in the networking s, and so
> multiple subsystem lists are cc'd. Here's a quick breakdown:
>
>    - patches 1/7 and 5/7 remove the drivers (netdev)
>    - patch 2/7 removes Sun device IDs from pci_ids.h (linux-pci)
>    - patch 3/7 changes ppc6xx_defconfig (linuxppc)
>    - patch 4/7 changes MIPS mtx1_defconfig (linux-mips)
>    - patch 6/7 removes the event tracing header sunvnet.h (linux-trace)
>    - patch 7/7 changes sparc64_defconfig (sparclinux)
>
> This series was compile tested as follows:
>
> make O=b1 ARCH=mips CROSS_COMPILE=mips64-linux-gnu- defconfig
> make -j$(nproc) O=b1 ARCH=mips CROSS_COMPILE=mips64-linux-gnu- all
>
> make O=b2 ARCH=sparc64 CROSS_COMPILE=sparc64-linux-gnu- defconfig
> make -j$(nproc) O=b2 ARCH=sparc64 CROSS_COMPILE=sparc64-linux-gnu- all
>
> make O=b3 ARCH=powerpc CROSS_COMPILE=ppc64-linux-gnu- ppc6xx_defconfig
> make -j$(nproc) O=b3 ARCH=powerpc CROSS_COMPILE=ppc64-linux-gnu- all
>
> [1] https://lore.kernel.org/netdev/99629223-ac1b-0f82-50b8-ea307b3b0197@intel.com/T/#t
>
> Suggested-by: Leon Romanovsky <leon@kernel.org>
> Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com>
>
> Anirudh Venkataramanan (7):
>    ethernet: Remove the Sun Cassini driver
>    PCI: Remove PCI IDs used by the Sun Cassini driver
>    powerpc: configs: Remove reference to CONFIG_CASSINI
>    mips: configs: Remove reference to CONFIG_CASSINI
>    ethernet: Remove the Sun LDOM vswitch and sunvnet drivers
>    sunvnet: Remove event tracing file
>    sparc: configs: Remove references to CONFIG_SUNVNET and CONFIG_LDMVSW
>
>   arch/mips/configs/mtx1_defconfig          |    1 -
>   arch/powerpc/configs/ppc6xx_defconfig     |    1 -
>   arch/sparc/configs/sparc64_defconfig      |    2 -
>   drivers/net/ethernet/sun/Kconfig          |   35 -
>   drivers/net/ethernet/sun/Makefile         |    4 -
>   drivers/net/ethernet/sun/cassini.c        | 5215 ---------------------
>   drivers/net/ethernet/sun/cassini.h        | 2900 ------------
>   drivers/net/ethernet/sun/ldmvsw.c         |  476 --
>   drivers/net/ethernet/sun/sunvnet.c        |  567 ---
>   drivers/net/ethernet/sun/sunvnet_common.c | 1813 -------
>   drivers/net/ethernet/sun/sunvnet_common.h |  157 -
>   include/linux/pci_ids.h                   |    2 -
>   include/trace/events/sunvnet.h            |  140 -
>   13 files changed, 11313 deletions(-)
>   delete mode 100644 drivers/net/ethernet/sun/cassini.c
>   delete mode 100644 drivers/net/ethernet/sun/cassini.h
>   delete mode 100644 drivers/net/ethernet/sun/ldmvsw.c
>   delete mode 100644 drivers/net/ethernet/sun/sunvnet.c
>   delete mode 100644 drivers/net/ethernet/sun/sunvnet_common.c
>   delete mode 100644 drivers/net/ethernet/sun/sunvnet_common.h
>   delete mode 100644 include/trace/events/sunvnet.h
>
>
> base-commit: 6bd4755c7c499dbcef46eaaeafa1a319da583b29


  parent reply	other threads:[~2023-01-06 22:45 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-06 22:00 [PATCH net-next 0/7] Remove three Sun net drivers Anirudh Venkataramanan
2023-01-06 22:00 ` [PATCH net-next 1/7] ethernet: Remove the Sun Cassini driver Anirudh Venkataramanan
2023-01-07 12:25   ` Anatoly Pugachev
2023-01-07 19:16     ` Anirudh Venkataramanan
2023-01-06 22:00 ` [PATCH net-next 2/7] PCI: Remove PCI IDs used by " Anirudh Venkataramanan
2023-01-10 15:26   ` Bjorn Helgaas
2023-01-10 16:51     ` Anirudh Venkataramanan
2023-01-06 22:00 ` [PATCH net-next 3/7] powerpc: configs: Remove reference to CONFIG_CASSINI Anirudh Venkataramanan
2023-01-06 22:00 ` [PATCH net-next 4/7] mips: " Anirudh Venkataramanan
2023-01-06 22:00 ` [PATCH net-next 5/7] ethernet: Remove the Sun LDOM vswitch and sunvnet drivers Anirudh Venkataramanan
2023-01-06 22:00 ` [PATCH net-next 6/7] sunvnet: Remove event tracing file Anirudh Venkataramanan
2023-01-06 22:00 ` [PATCH net-next 7/7] sparc: configs: Remove references to CONFIG_SUNVNET and CONFIG_LDMVSW Anirudh Venkataramanan
2023-01-07 12:14   ` Anatoly Pugachev
2023-01-06 22:44 ` Karl Volz [this message]
2023-01-06 23:10   ` [PATCH net-next 0/7] Remove three Sun net drivers Anirudh Venkataramanan
2023-01-06 23:25     ` Karl Volz
2023-01-07  1:36 ` John Paul Adrian Glaubitz
2023-01-07  2:04   ` Anirudh Venkataramanan
2023-01-07  2:15     ` Jakub Kicinski
2023-01-07  2:24     ` John Paul Adrian Glaubitz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c43562d7-8e6b-40d9-26dc-ab85afcef70e@oracle.com \
    --to=karl.volz@oracle.com \
    --cc=anirudh.venkataramanan@intel.com \
    --cc=leon@kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=linux-trace-kernel@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=netdev@vger.kernel.org \
    --cc=sparclinux@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).