From: Jakub Kicinski <kuba@kernel.org>
To: davem@davemloft.net
Cc: jdike@addtoit.com, richard@nod.at,
anton.ivanov@cambridgegreys.com, linux-um@lists.infradead.org,
dledford@redhat.com, jgg@ziepe.ca, leon@kernel.org,
linux-rdma@vger.kernel.org, edumazet@google.com,
jasowang@redhat.com, mkubecek@suse.cz, hayeswang@realtek.com,
doshir@vmware.com, pv-drivers@vmware.com, manishc@marvell.com,
GR-Linux-NIC-Dev@marvell.com, gregkh@linuxfoundation.org,
merez@codeaurora.org, kvalo@codeaurora.org,
linux-wireless@vger.kernel.org, netdev@vger.kernel.org,
Jakub Kicinski <kuba@kernel.org>
Subject: [PATCH net-next 0/7] ethtool: consolidate irq coalescing - other drivers
Date: Thu, 5 Mar 2020 17:05:55 -0800 [thread overview]
Message-ID: <20200306010602.1620354-1-kuba@kernel.org> (raw)
Hi!
Convert more drivers following the groundwork laid in a recent
patch set [1]. The aim of the effort is to consolidate irq
coalescing parameter validation in the core.
This set converts all the drivers outside of drivers/net/ethernet.
Only vmxnet3 them was checking unsupported parameters.
The aim is to merge this via the net-next tree so we can
convert all drivers and make the checking mandatory.
[1] https://lore.kernel.org/netdev/20200305051542.991898-1-kuba@kernel.org/
Jakub Kicinski (7):
um: reject unsupported coalescing params
RDMA/ipoib: reject unsupported coalescing params
tun: reject unsupported coalescing params
r8152: reject unsupported coalescing params
vmxnet3: let core reject the unsupported coalescing parameters
staging: qlge: reject unsupported coalescing params
wil6210: reject unsupported coalescing params
arch/um/drivers/vector_kern.c | 1 +
drivers/infiniband/ulp/ipoib/ipoib_ethtool.c | 2 ++
drivers/net/tun.c | 1 +
drivers/net/usb/r8152.c | 1 +
drivers/net/vmxnet3/vmxnet3_ethtool.c | 24 +++-----------------
drivers/net/wireless/ath/wil6210/ethtool.c | 1 +
drivers/staging/qlge/qlge_ethtool.c | 2 ++
7 files changed, 11 insertions(+), 21 deletions(-)
--
2.24.1
WARNING: multiple messages have this Message-ID (diff)
From: Jakub Kicinski <kuba@kernel.org>
To: davem@davemloft.net
Cc: mkubecek@suse.cz, doshir@vmware.com, pv-drivers@vmware.com,
jasowang@redhat.com, edumazet@google.com,
anton.ivanov@cambridgegreys.com, merez@codeaurora.org,
leon@kernel.org, linux-rdma@vger.kernel.org, richard@nod.at,
jgg@ziepe.ca, dledford@redhat.com,
Jakub Kicinski <kuba@kernel.org>,
hayeswang@realtek.com, jdike@addtoit.com,
linux-um@lists.infradead.org, kvalo@codeaurora.org,
GR-Linux-NIC-Dev@marvell.com, manishc@marvell.com,
netdev@vger.kernel.org, linux-wireless@vger.kernel.org,
gregkh@linuxfoundation.org
Subject: [PATCH net-next 0/7] ethtool: consolidate irq coalescing - other drivers
Date: Thu, 5 Mar 2020 17:05:55 -0800 [thread overview]
Message-ID: <20200306010602.1620354-1-kuba@kernel.org> (raw)
Hi!
Convert more drivers following the groundwork laid in a recent
patch set [1]. The aim of the effort is to consolidate irq
coalescing parameter validation in the core.
This set converts all the drivers outside of drivers/net/ethernet.
Only vmxnet3 them was checking unsupported parameters.
The aim is to merge this via the net-next tree so we can
convert all drivers and make the checking mandatory.
[1] https://lore.kernel.org/netdev/20200305051542.991898-1-kuba@kernel.org/
Jakub Kicinski (7):
um: reject unsupported coalescing params
RDMA/ipoib: reject unsupported coalescing params
tun: reject unsupported coalescing params
r8152: reject unsupported coalescing params
vmxnet3: let core reject the unsupported coalescing parameters
staging: qlge: reject unsupported coalescing params
wil6210: reject unsupported coalescing params
arch/um/drivers/vector_kern.c | 1 +
drivers/infiniband/ulp/ipoib/ipoib_ethtool.c | 2 ++
drivers/net/tun.c | 1 +
drivers/net/usb/r8152.c | 1 +
drivers/net/vmxnet3/vmxnet3_ethtool.c | 24 +++-----------------
drivers/net/wireless/ath/wil6210/ethtool.c | 1 +
drivers/staging/qlge/qlge_ethtool.c | 2 ++
7 files changed, 11 insertions(+), 21 deletions(-)
--
2.24.1
_______________________________________________
linux-um mailing list
linux-um@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-um
next reply other threads:[~2020-03-06 1:06 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-06 1:05 Jakub Kicinski [this message]
2020-03-06 1:05 ` [PATCH net-next 0/7] ethtool: consolidate irq coalescing - other drivers Jakub Kicinski
2020-03-06 1:05 ` [PATCH net-next 1/7] um: reject unsupported coalescing params Jakub Kicinski
2020-03-06 1:05 ` Jakub Kicinski
2020-03-06 6:58 ` Anton Ivanov
2020-03-06 6:58 ` Anton Ivanov
2020-03-06 1:05 ` [PATCH net-next 2/7] RDMA/ipoib: " Jakub Kicinski
2020-03-06 1:05 ` Jakub Kicinski
2020-03-06 12:09 ` Leon Romanovsky
2020-03-06 12:09 ` Leon Romanovsky
2020-03-06 1:05 ` [PATCH net-next 3/7] tun: " Jakub Kicinski
2020-03-06 1:05 ` Jakub Kicinski
2020-03-06 9:33 ` Jason Wang
2020-03-06 9:33 ` Jason Wang
2020-03-06 1:05 ` [PATCH net-next 4/7] r8152: " Jakub Kicinski
2020-03-06 1:05 ` Jakub Kicinski
2020-03-06 2:19 ` Hayes Wang
2020-03-06 1:06 ` [PATCH net-next 5/7] vmxnet3: let core reject the unsupported coalescing parameters Jakub Kicinski
2020-03-06 1:06 ` Jakub Kicinski
2020-03-06 1:06 ` [PATCH net-next 6/7] staging: qlge: reject unsupported coalescing params Jakub Kicinski
2020-03-06 1:06 ` Jakub Kicinski
2020-03-06 1:06 ` [PATCH net-next 7/7] wil6210: " Jakub Kicinski
2020-03-06 1:06 ` Jakub Kicinski
2020-03-06 6:33 ` Kalle Valo
2020-03-06 6:33 ` Kalle Valo
2020-03-07 6:46 ` [PATCH net-next 0/7] ethtool: consolidate irq coalescing - other drivers David Miller
2020-03-07 6:46 ` David Miller
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=20200306010602.1620354-1-kuba@kernel.org \
--to=kuba@kernel.org \
--cc=GR-Linux-NIC-Dev@marvell.com \
--cc=anton.ivanov@cambridgegreys.com \
--cc=davem@davemloft.net \
--cc=dledford@redhat.com \
--cc=doshir@vmware.com \
--cc=edumazet@google.com \
--cc=gregkh@linuxfoundation.org \
--cc=hayeswang@realtek.com \
--cc=jasowang@redhat.com \
--cc=jdike@addtoit.com \
--cc=jgg@ziepe.ca \
--cc=kvalo@codeaurora.org \
--cc=leon@kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=linux-um@lists.infradead.org \
--cc=linux-wireless@vger.kernel.org \
--cc=manishc@marvell.com \
--cc=merez@codeaurora.org \
--cc=mkubecek@suse.cz \
--cc=netdev@vger.kernel.org \
--cc=pv-drivers@vmware.com \
--cc=richard@nod.at \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.