Re: [PATCH net-next v4 5/5] virtio_net: improve dim command request efficiency

2024-06-19 Thread kernel test robot
/20240619161908.82348-6-hengqi%40linux.alibaba.com patch subject: [PATCH net-next v4 5/5] virtio_net: improve dim command request efficiency config: x86_64-rhel-8.3 (https://download.01.org/0day-ci/archive/20240620/202406201437.juuepbzl-...@intel.com/config) compiler: gcc-13 (Ubuntu 13.2.0-4ubuntu3

[PATCH net-next v4 5/5] virtio_net: improve dim command request efficiency

2024-06-19 Thread Heng Qi
Currently, control vq handles commands synchronously, leading to increased delays for dim commands during multi-queue VM configuration and directly impacting dim performance. To address this, we are shifting to asynchronous processing of ctrlq's dim commands. Signed-off-by: Heng Qi --- drivers/

Re: [PATCH net-next v3 4/4] virtio_net: improve dim command request efficiency

2024-06-18 Thread Heng Qi
On Tue, 18 Jun 2024 09:29:48 +0800, Jason Wang wrote: > On Mon, Jun 17, 2024 at 4:08 PM Heng Qi wrote: > > > > On Mon, 17 Jun 2024 12:05:30 +0800, Jason Wang wrote: > > > On Thu, Jun 6, 2024 at 2:15 PM Heng Qi wrote: > > > > > > > > Currently, control vq handles commands synchronously, > > > >

Re: [PATCH net-next v3 4/4] virtio_net: improve dim command request efficiency

2024-06-17 Thread Jason Wang
On Mon, Jun 17, 2024 at 4:08 PM Heng Qi wrote: > > On Mon, 17 Jun 2024 12:05:30 +0800, Jason Wang wrote: > > On Thu, Jun 6, 2024 at 2:15 PM Heng Qi wrote: > > > > > > Currently, control vq handles commands synchronously, > > > leading to increased delays for dim commands during multi-queue > > >

Re: [PATCH net-next v3 4/4] virtio_net: improve dim command request efficiency

2024-06-17 Thread Heng Qi
On Mon, 17 Jun 2024 12:05:30 +0800, Jason Wang wrote: > On Thu, Jun 6, 2024 at 2:15 PM Heng Qi wrote: > > > > Currently, control vq handles commands synchronously, > > leading to increased delays for dim commands during multi-queue > > VM configuration and directly impacting dim performance. > >

Re: [PATCH net-next v3 4/4] virtio_net: improve dim command request efficiency

2024-06-16 Thread Jason Wang
On Thu, Jun 6, 2024 at 2:15 PM Heng Qi wrote: > > Currently, control vq handles commands synchronously, > leading to increased delays for dim commands during multi-queue > VM configuration and directly impacting dim performance. > > To address this, we are shifting to asynchronous processing of >

Re: [PATCH net-next v3 4/4] virtio_net: improve dim command request efficiency

2024-06-06 Thread kernel test robot
/20240606061446.127802-5-hengqi%40linux.alibaba.com patch subject: [PATCH net-next v3 4/4] virtio_net: improve dim command request efficiency config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20240607/202406070616.vnsljtt2-...@intel.com/config) compiler: sh4-linux-gcc (GCC) 13.2.0

Re: [PATCH net-next v3 4/4] virtio_net: improve dim command request efficiency

2024-06-06 Thread kernel test robot
/20240606061446.127802-5-hengqi%40linux.alibaba.com patch subject: [PATCH net-next v3 4/4] virtio_net: improve dim command request efficiency config: riscv-defconfig (https://download.01.org/0day-ci/archive/20240606/202406061803.r48fh9c8-...@intel.com/config) compiler: clang version 19.0.0git (https

[PATCH net-next v3 4/4] virtio_net: improve dim command request efficiency

2024-06-05 Thread Heng Qi
Currently, control vq handles commands synchronously, leading to increased delays for dim commands during multi-queue VM configuration and directly impacting dim performance. To address this, we are shifting to asynchronous processing of ctrlq's dim commands. Signed-off-by: Heng Qi --- drivers/

Re: [PATCH net-next v2 2/2] virtio_net: improve dim command request efficiency

2024-06-05 Thread Heng Qi
_vqs; > > + bool is_coal_wait; > > + struct list_head list; > > +}; > > + > > /* The dma information of pages allocated at a time. */ > > struct virtnet_rq_dma { > > dma_addr_t addr; > > @@ -421,6 +429,9 @@ struct virtnet_info { > >

Re: [PATCH net-next v2 2/2] virtio_net: improve dim command request efficiency

2024-06-05 Thread Jason Wang
dma_addr_t addr; > @@ -421,6 +429,9 @@ struct virtnet_info { > /* Wait for the device to complete the cvq request. */ > struct completion completion; > > + /* Work struct for acquisition of cvq processing results. */ > + struct work_struct get

[PATCH net-next v2 2/2] virtio_net: improve dim command request efficiency

2024-06-05 Thread Heng Qi
list; +}; + /* The dma information of pages allocated at a time. */ struct virtnet_rq_dma { dma_addr_t addr; @@ -421,6 +429,9 @@ struct virtnet_info { /* Wait for the device to complete the cvq request. */ struct completion completion; + /* Work struct for acquisition o

[PATCH net-next 3/3] virtio_net: improve dim command request efficiency

2024-04-25 Thread Heng Qi
Currently, ctrlq processes commands in a synchronous manner, which increases the delay of dim commands when configuring multi-queue VMs, which in turn causes the CPU utilization to increase and interferes with the performance of dim. Therefore we asynchronously process ctlq's dim commands. Signed

Re: [PATCH net-next 2/3] virtio-net: batch dim request

2024-01-16 Thread Heng Qi
. In addition, each vq request is processed separately, causing more delays for the CPU to wait for the DMA request to complete. These interruptions and overhead will strain the CPU responsible for controlling the path of the DPU, especially in multi-device and large-queue scenarios. To solve the

Re: [PATCH net-next 2/3] virtio-net: batch dim request

2024-01-16 Thread Simon Horman
de CPU. > In addition, each vq request is processed separately, causing more > delays for the CPU to wait for the DMA request to complete. > > These interruptions and overhead will strain the CPU responsible for > controlling the path of the DPU, especially in multi-device and >

[PATCH net-next 2/3] virtio-net: batch dim request

2024-01-16 Thread Heng Qi
. The device completes processing and replies with a response. When large-queue devices issue multiple requests and kick the device frequently, this often interrupt the work of the device-side CPU. In addition, each vq request is processed separately, causing more delays for the CPU to wait for the

Re: pull-request: mac80211-next 2021-04-20

2021-04-20 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net-next.git (refs/heads/master): On Tue, 20 Apr 2021 17:00:30 +0200 you wrote: > Hi, > > We have a bunch more things for next, now that we got another > week "for free" ;-) Pretty much all over the map, see the tag > descr

pull-request: mac80211-next 2021-04-20

2021-04-20 Thread Johannes Berg
Hi, We have a bunch more things for next, now that we got another week "for free" ;-) Pretty much all over the map, see the tag description and shortlog below. Please pull and let me know if there's any problem. Thanks, johannes The following changes since commit 3cd52c1e32fe7dfee09815ced702d

RE: [net-next 1/3] net: dsa: optimize tx timestamp request handling

2021-04-20 Thread Y.b. Lu
idelot ; Florian > Fainelli ; Claudiu Manoil ; > Alexandre Belloni ; > unglinuxdri...@microchip.com; linux-...@vger.kernel.org; > linux-ker...@vger.kernel.org > Subject: Re: [net-next 1/3] net: dsa: optimize tx timestamp request handling > > On Fri, Apr 16, 2021 at 08:36:53PM +0800, Ya

RE: [net-next 1/3] net: dsa: optimize tx timestamp request handling

2021-04-20 Thread Y.b. Lu
n Fainelli ; Claudiu Manoil > ; Alexandre Belloni > ; unglinuxdri...@microchip.com; > linux-...@vger.kernel.org; linux-ker...@vger.kernel.org > Subject: Re: [net-next 1/3] net: dsa: optimize tx timestamp request handling > > On Fri, Apr 16, 2021 at 08:36:53PM +0800, Yangbo Lu wrote: > >

RE: [net-next 1/3] net: dsa: optimize tx timestamp request handling

2021-04-20 Thread Y.b. Lu
Didelot ; Florian Fainelli ; > Claudiu Manoil ; Alexandre Belloni > ; unglinuxdri...@microchip.com; > linux-...@vger.kernel.org; linux-ker...@vger.kernel.org > Subject: Re: [net-next 1/3] net: dsa: optimize tx timestamp request handling > > On Sun, Apr 18, 2021 at 12:18:42PM +0300, Vladimi

[pull request][net-next 00/15] mlx5 updates 2021-04-19

2021-04-19 Thread Saeed Mahameed
From: Saeed Mahameed Hi Dave, Jakub, This series provides updates for mlx5, mostly around mlx5 software steering For more information please see tag log below. Please pull and let me know if there is any problem. Thanks, Saeed. --- The following changes since commit e9377a911d772d27ef2810c24

Re: pull-request: wireless-drivers-next-2021-04-18

2021-04-19 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net-next.git (refs/heads/master): On Sun, 18 Apr 2021 08:26:14 + (UTC) you wrote: > Hi, > > here's a pull request to net-next tree, more info below. Please let me know if > there are any problems. > > Kalle > > [.

Re: [net-next 1/3] net: dsa: optimize tx timestamp request handling

2021-04-18 Thread Kurt Kanzenbach
On Fri Apr 16 2021, Yangbo Lu wrote: > Optimization could be done on dsa_skb_tx_timestamp(), and dsa device > drivers should adapt to it. > > - Check SKBTX_HW_TSTAMP request flag at the very beginning, instead of in > port_txtstamp, so that most skbs not requiring tx timest

Re: [net-next 1/3] net: dsa: optimize tx timestamp request handling

2021-04-18 Thread Richard Cochran
On Sun, Apr 18, 2021 at 12:18:42PM +0300, Vladimir Oltean wrote: > > How about not passing "clone" back to DSA as an argument by reference, > but instead require the driver to populate DSA_SKB_CB(skb)->clone if it > needs to do so? > > Also, how about changing the return type to void? Returning t

Re: [net-next 1/3] net: dsa: optimize tx timestamp request handling

2021-04-18 Thread Richard Cochran
and pass them to the > - * switch driver > - */ > + /* Handle tx timestamp request if has */ "if has" what? > dsa_skb_tx_timestamp(p, skb); > > if (dsa_realloc_skb(skb, dev)) { > -- > 2.25.1 > Thanks, Richard

Re: [net-next 1/3] net: dsa: optimize tx timestamp request handling

2021-04-18 Thread Richard Cochran
On Fri, Apr 16, 2021 at 08:36:53PM +0800, Yangbo Lu wrote: > Optimization could be done on dsa_skb_tx_timestamp(), and dsa device > drivers should adapt to it. > > - Check SKBTX_HW_TSTAMP request flag at the very beginning, instead of in > port_txtstamp, so that most skbs n

[PATCH iproute2-next 4/6] libnetlink: add bridge vlan dump request helper

2021-04-18 Thread Nikolay Aleksandrov
From: Nikolay Aleksandrov Add rtnl bridge vlan dump request helper which will be used to retrieve bridge vlan information and options. Signed-off-by: Nikolay Aleksandrov --- include/libnetlink.h | 2 ++ lib/libnetlink.c | 19 +++ 2 files changed, 21 insertions(+) diff

Re: [net-next 1/3] net: dsa: optimize tx timestamp request handling

2021-04-18 Thread Vladimir Oltean
On Fri, Apr 16, 2021 at 08:36:53PM +0800, Yangbo Lu wrote: > Optimization could be done on dsa_skb_tx_timestamp(), and dsa device > drivers should adapt to it. > > - Check SKBTX_HW_TSTAMP request flag at the very beginning, instead of in > port_txtstamp, so that most skbs n

pull-request: wireless-drivers-next-2021-04-18

2021-04-18 Thread Kalle Valo
Hi, here's a pull request to net-next tree, more info below. Please let me know if there are any problems. Kalle The following changes since commit 3a1aa533f7f676aad68f8da10b9502903770: Merge tag 'linux-can-next-for-5.13-20210414' of git://git.kernel.org/pub/scm/linux

Re: [PATCH net-next 0/6][pull request] 1GbE Intel Wired LAN Driver Updates 2021-04-16

2021-04-16 Thread patchwork-bot+netdevbpf
Hello: This series was applied to netdev/net-next.git (refs/heads/master): On Fri, 16 Apr 2021 13:44:54 -0700 you wrote: > This series contains updates to igb and igc drivers. > > Ederson adjusts Tx buffer distributions in Qav mode to improve > TSN-aware traffic for igb. He also enable PPS suppo

pull-request: bpf 2021-04-17

2021-04-16 Thread Daniel Borkmann
Hi David, hi Jakub, The following pull-request contains BPF updates for your *net* tree. We've added 10 non-merge commits during the last 9 day(s) which contain a total of 8 files changed, 175 insertions(+), 111 deletions(-). The main changes are: 1) Fix a potential NULL pointer dereferen

[PATCH net-next 0/6][pull request] 1GbE Intel Wired LAN Driver Updates 2021-04-16

2021-04-16 Thread Tony Nguyen
This series contains updates to igb and igc drivers. Ederson adjusts Tx buffer distributions in Qav mode to improve TSN-aware traffic for igb. He also enable PPS support and auxiliary PHC functions for igc. Grzegorz checks that the MTA register was properly written and retries if not for igb. Sa

[pull request][net-next 00/14] mlx5 updates 2021-04-16

2021-04-16 Thread Saeed Mahameed
From: Saeed Mahameed Hi Dave, Jakub, This series provides some updates to mlx5e driver. For more information please see tag log below. Please pull and let me know if there is any problem. Thanks, Saeed. --- The following changes since commit 392c36e5be1dee19ffce8c8ba8f07f90f5aa3f7c: Merge

[net-next 1/3] net: dsa: optimize tx timestamp request handling

2021-04-16 Thread Yangbo Lu
Optimization could be done on dsa_skb_tx_timestamp(), and dsa device drivers should adapt to it. - Check SKBTX_HW_TSTAMP request flag at the very beginning, instead of in port_txtstamp, so that most skbs not requiring tx timestamp just return. - No longer to identify PTP packets, and limit tx

Re: [PATCH net-next 00/15][pull request] 100GbE Intel Wired LAN Driver Updates 2021-04-14

2021-04-15 Thread patchwork-bot+netdevbpf
Hello: This series was applied to netdev/net-next.git (refs/heads/master): On Wed, 14 Apr 2021 17:29:58 -0700 you wrote: > This series contains updates to ice driver only. > > Bruce changes and removes open coded values to instead use existing > kernel defines and suppresses false cppcheck issue

Re: [PATCH net 0/3][pull request] Intel Wired LAN Driver Updates 2021-04-14

2021-04-15 Thread patchwork-bot+netdevbpf
Hello: This series was applied to netdev/net.git (refs/heads/master): On Wed, 14 Apr 2021 09:20:29 -0700 you wrote: > This series contains updates to ixgbe and ice drivers. > > Alex Duyck fixes a NULL pointer dereference for ixgbe. > > Yongxin Liu fixes an unbalanced enable/disable which was ca

[PATCH RESEND net-next 2/2] net: hns3: VF not request link status when PF support push link status feature

2021-04-14 Thread Huazhong Tan
From: Guangbin Huang To reduce the processing of unnecessary mailbox command when PF supports actively push its link status to VFs, VFs stop sending request link status command in periodic service task in this case. Signed-off-by: Guangbin Huang Signed-off-by: Huazhong Tan --- drivers/net

[PATCH net-next 00/15][pull request] 100GbE Intel Wired LAN Driver Updates 2021-04-14

2021-04-14 Thread Tony Nguyen
This series contains updates to ice driver only. Bruce changes and removes open coded values to instead use existing kernel defines and suppresses false cppcheck issues. Ani adds new VSI states to track netdev allocation and registration. He also removes leading underscores in the ice_pf_state en

Re: [pull request][net 0/3] mlx5 fixes 2021-04-14

2021-04-14 Thread Jakub Kicinski
On Wed, 14 Apr 2021 16:16:07 -0700 Saeed Mahameed wrote: > This series provides 3 small fixes to mlx5 driver. > Please pull and let me know if there is any problem. FWIW a little more info on user-visible misbehavior on patch 2 would have helped. Acked-by: Jakub Kicinski

Re: [PATCH net 0/3][pull request] Intel Wired LAN Driver Updates 2021-04-14

2021-04-14 Thread Jakub Kicinski
On Wed, 14 Apr 2021 09:20:29 -0700 Tony Nguyen wrote: > This series contains updates to ixgbe and ice drivers. > > Alex Duyck fixes a NULL pointer dereference for ixgbe. > > Yongxin Liu fixes an unbalanced enable/disable which was causing a call > trace with suspend for ixgbe. > > Colin King fix

[pull request][net 0/3] mlx5 fixes 2021-04-14

2021-04-14 Thread Saeed Mahameed
From: Saeed Mahameed Hi Dave, Jakub, This series provides 3 small fixes to mlx5 driver. Please pull and let me know if there is any problem. Thanks, Saeed. --- The following changes since commit 2afeec08ab5c86ae21952151f726bfe184f6b23d: xen-netback: Check for hotplug-status existence befor

Re: pull-request: can-next 2021-04-14

2021-04-14 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net-next.git (refs/heads/master): On Wed, 14 Apr 2021 22:03:51 +0200 you wrote: > Hello Jakub, hello David, > > this is a pull request of a single patch for net-next/master. > > Vincent Mailhol's patch fixes a NULL poin

Re: pull request (net-next): ipsec-next 2021-04-14

2021-04-14 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net-next.git (refs/heads/master): On Wed, 14 Apr 2021 12:16:58 +0200 you wrote: > Not much this time: > > 1) Simplification of some variable calculations in esp4 and esp6. >From Jiapeng Chong and Junlin Yang. > > 2) Fix a cla

Re: [PATCH net-next v2 0/3][pull request] 10GbE Intel Wired LAN Driver Updates 2021-04-13

2021-04-14 Thread patchwork-bot+netdevbpf
Hello: This series was applied to netdev/net-next.git (refs/heads/master): On Tue, 13 Apr 2021 19:17:20 -0700 you wrote: > This series contains updates to ixgbe and ixgbevf driver. > > Jostar Yang adds support for BCM54616s PHY for ixgbe. > > Chen Lin removes an unused function pointer for ixgb

pull-request: can-next 2021-04-14

2021-04-14 Thread Marc Kleine-Budde
Hello Jakub, hello David, this is a pull request of a single patch for net-next/master. Vincent Mailhol's patch fixes a NULL pointer dereference when handling error frames in the etas_es58x driver, which has been added in the previous PR. regards, Marc --- The following changes since c

[pull request][net-next V2 00/16] mlx5 updates 2021-04-13

2021-04-14 Thread Saeed Mahameed
From: Saeed Mahameed Hi Dave, Jakub, This patchset includes some updates and cleanup to mlx5 driver. For more information please see tag log below. v1->v2: update 1st patch commit message and mlx5 documentation to include performance numbers and applicability of the metadata settings. Please p

[PATCH net 0/3][pull request] Intel Wired LAN Driver Updates 2021-04-14

2021-04-14 Thread Tony Nguyen
This series contains updates to ixgbe and ice drivers. Alex Duyck fixes a NULL pointer dereference for ixgbe. Yongxin Liu fixes an unbalanced enable/disable which was causing a call trace with suspend for ixgbe. Colin King fixes a potential infinite loop for ice. The following are changes since

pull request (net-next): ipsec-next 2021-04-14

2021-04-14 Thread Steffen Klassert
Not much this time: 1) Simplification of some variable calculations in esp4 and esp6. From Jiapeng Chong and Junlin Yang. 2) Fix a clang Wformat warning in esp6 and ah6. From Arnd Bergmann. Please pull or let me know if there are problems. Thanks! The following changes since commit 34bb9

[PATCH net-next v2 0/3][pull request] 10GbE Intel Wired LAN Driver Updates 2021-04-13

2021-04-13 Thread Tony Nguyen
This series contains updates to ixgbe and ixgbevf driver. Jostar Yang adds support for BCM54616s PHY for ixgbe. Chen Lin removes an unused function pointer for ixgbe and ixgbevf. Bhaskar Chowdhury fixes a typo in ixgbe. --- v2: - Dropped rx_error statistics patch The following are changes since

Re: pull-request: can-next 2021-04-13

2021-04-13 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net-next.git (refs/heads/master): On Tue, 13 Apr 2021 11:51:47 +0200 you wrote: > Hello Jakub, hello David, > > this is a pull request of 14 patches for net-next/master. > > The first patch is by Yoshihiro Shimoda and updates the DT

Re: pull-request: wireless-drivers-next-2021-04-13

2021-04-13 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net-next.git (refs/heads/master): On Tue, 13 Apr 2021 05:33:45 + (UTC) you wrote: > Hi, > > here's a pull request to net-next tree, more info below. Please let me know if > there are any problems. > > Kalle > > [.

[pull request][net-next 00/16] mlx5 updates 2021-04-13

2021-04-13 Thread Saeed Mahameed
From: Saeed Mahameed Hi Dave, Jakub, This patchset includes some updates and cleanup to mlx5 driver. For more information please see tag log below. Please pull and let me know if there is any problem. Thanks, Saeed. --- The following changes since commit 8ef7adc6beb2ef0bce83513dc9e4505e7b21e8

pull-request: can-next 2021-04-13

2021-04-13 Thread Marc Kleine-Budde
Hello Jakub, hello David, this is a pull request of 14 patches for net-next/master. The first patch is by Yoshihiro Shimoda and updates the DT bindings for the rcar_can driver. Vincent Mailhol contributes 3 patches that add support for several ETAS USB CAN adapters. The final 10 patches are by

[PATCH net-next 2/2] net: hns3: VF not request link status when PF support push link status feature

2021-04-12 Thread Huazhong Tan
From: Guangbin Huang To reduce the processing of unnecessary mailbox command when PF supports actively push its link status to VFs, VFs stop sending request link status command in periodic service task in this case. Signed-off-by: Guangbin Huang Signed-off-by: Huazhong Tan --- drivers/net

pull-request: wireless-drivers-next-2021-04-13

2021-04-12 Thread Kalle Valo
Hi, here's a pull request to net-next tree, more info below. Please let me know if there are any problems. Kalle The following changes since commit 2117fce81f6b862aac0673abe8df0c60dca64bfa: Merge branch 'psample-Add-additional-metadata-attributes' (2021-03-14 15:00:44 -0700)

Re: BUG: unable to handle kernel paging request in bpf_check

2021-04-12 Thread Alexei Starovoitov
On Mon, Apr 12, 2021 at 12:11 AM Hao Sun wrote: > > Besides, another similar bug occurred while fault injection was enabled. > > BUG: unable to handle kernel paging request in bpf_prog_alloc_no_stats > > RAX: ff

Re: BUG: unable to handle kernel paging request in bpf_check

2021-04-12 Thread Hao Sun
Besides, another similar bug occurred while fault injection was enabled. BUG: unable to handle kernel paging request in bpf_prog_alloc_no_stats RAX: ffda RBX: 0059c080 RCX: 0047338d RDX: 0078 RSI

Re: BUG: unable to handle kernel paging request in __build_skb

2021-04-11 Thread Willem de Bruijn
On Sun, Apr 11, 2021 at 9:31 PM Hao Sun wrote: > > Hi > > When using Healer(https://github.com/SunHao-0/healer/tree/dev) to fuzz > the Linux kernel, I found the following bug report, but I'm not sure > about this. > Sorry, I do not have a reproducing program for this bug. > I hope that the stack t

Re: [pull-request][net-next][rdma-next] mlx5-next 2021-04-09

2021-04-09 Thread Jakub Kicinski
On Fri, 9 Apr 2021 13:07:04 -0700 Saeed Mahameed wrote: > Hi Dave, Jakub, Jason, > > This pr contains changes from mlx5-next branch, > already reviewed on netdev and rdma mailing lists, links below. > > 1) From Leon, Dynamically assign MSI-X vectors count > Already Acked by Bjorn Helgaas. > htt

[pull-request][net-next][rdma-next] mlx5-next 2021-04-09

2021-04-09 Thread Saeed Mahameed
Hi Dave, Jakub, Jason, This pr contains changes from mlx5-next branch, already reviewed on netdev and rdma mailing lists, links below. 1) From Leon, Dynamically assign MSI-X vectors count Already Acked by Bjorn Helgaas. https://patchwork.kernel.org/project/netdevbpf/cover/20210314124256.70253-1-

[PATCH net-next 0/4][pull request] 10GbE Intel Wired LAN Driver Updates 2021-04-09

2021-04-09 Thread Tony Nguyen
This series contains updates to ixgbe and ixgbevf driver. Jostar Yang adds support for BCM54616s PHY for ixgbe. Radoslaw aggregates additional Rx errors to be reported to netdev on ixgbe. Chen Lin removes an unused function pointer for ixgbe and ixgbevf. Bhaskar Chowdhury fixes a typo in ixgbe.

[PATCH net-next 0/9][pull request] 1GbE Intel Wired LAN Driver Updates 2021-04-09

2021-04-09 Thread Tony Nguyen
This series contains updates to igc driver only. Andre Guedes says: This series adds AF_XDP zero-copy feature to igc driver. The initial patches do some code refactoring, preparing the code base to land the AF_XDP zero-copy feature, avoiding code duplications. The last patches of the series are

Re: [PATCH net 0/6][pull request] Intel Wired LAN Driver Updates 2021-04-08

2021-04-08 Thread patchwork-bot+netdevbpf
Hello: This series was applied to netdev/net.git (refs/heads/master): On Thu, 8 Apr 2021 10:35:31 -0700 you wrote: > This series contains updates to i40e and ice drivers. > > Grzegorz fixes the ordering of parameters to i40e_aq_get_phy_register() > which is causing incorrect information to be r

Re: pull request: bluetooth-next 2021-04-08

2021-04-08 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net-next.git (refs/heads/master): On Thu, 8 Apr 2021 09:45:06 -0700 you wrote: > The following changes since commit d310ec03a34e92a77302edb804f7d68ee4f01ba0: > > Merge tag 'perf-core-2021-02-17' of > git://git.kernel.or

Re: [PATCH net-next 00/15][pull request] 100GbE Intel Wired LAN Driver Updates 2021-04-08

2021-04-08 Thread patchwork-bot+netdevbpf
Hello: This series was applied to netdev/net-next.git (refs/heads/master): On Thu, 8 Apr 2021 09:13:06 -0700 you wrote: > This series contains updates to ice driver only. > > Chinh adds retrying of sending some AQ commands when receiving EBUSY > error. > > Victor modifies how nodes are added t

[PATCH net 0/6][pull request] Intel Wired LAN Driver Updates 2021-04-08

2021-04-08 Thread Tony Nguyen
This series contains updates to i40e and ice drivers. Grzegorz fixes the ordering of parameters to i40e_aq_get_phy_register() which is causing incorrect information to be reported. Arkadiusz fixes various sparse issues reported on the i40e driver. Yongxin Liu fixes a memory leak with aRFS follow

pull request: bluetooth-next 2021-04-08

2021-04-08 Thread Luiz Augusto von Dentz
bluetooth-next pull request for net-next: - Proper support for BCM4330 and BMC4334 - Various improvements for firmware download of Intel controllers - Update management interface revision to 20 - Support for AOSP HCI vendor commands - Initial Virtio support Signed-off-by: Luiz Augusto

[PATCH net-next 00/15][pull request] 100GbE Intel Wired LAN Driver Updates 2021-04-08

2021-04-08 Thread Tony Nguyen
This series contains updates to ice driver only. Chinh adds retrying of sending some AQ commands when receiving EBUSY error. Victor modifies how nodes are added to reduce stack usage. Ani renames some variables to either follow spec naming or to be inline with naming in the rest of the driver. I

pull-request: bpf 2021-04-08

2021-04-08 Thread Daniel Borkmann
Hi David, hi Jakub, The following pull-request contains BPF updates for your *net* tree. We've added 4 non-merge commits during the last 2 day(s) which contain a total of 4 files changed, 31 insertions(+), 10 deletions(-). The main changes are: 1) Validate and reject invalid JIT b

pull-request: mac80211 2021-04-08.2

2021-04-08 Thread Johannes Berg
Hi, Yes, I'm late with this, sorry about that. I've mostly restricted this to the most necessary fixes, though the virt_wifi one isn't but since that's not used a lot, it's harmless and included since it's obvious. This updated version includes another netlink buffer overrun fix, as reported by sy

Re: pull-request: mac80211 2021-04-08

2021-04-08 Thread Johannes Berg
On Thu, 2021-04-08 at 14:53 +0200, Johannes Berg wrote: > Hi, > > Yes, I'm late with this, sorry about that. I've mostly restricted this > to the most necessary fixes, though the virt_wifi one isn't but since > that's not used a lot, it's harmless and included since it's obvious. > > The only thi

pull-request: mac80211 2021-04-08

2021-04-08 Thread Johannes Berg
Hi, Yes, I'm late with this, sorry about that. I've mostly restricted this to the most necessary fixes, though the virt_wifi one isn't but since that's not used a lot, it's harmless and included since it's obvious. The only thing that's bigger is the rfkill thing, but that's just since it adds a

[PATCH 0/3] pull request for net-next: batman-adv 2021-04-08

2021-04-08 Thread Simon Wunderlich
Hi Jakub, hi David, here is a little cleanup pull request of batman-adv to go into net-next. Please pull or let me know of any problem! Thank you, Simon The following changes since commit b1de0f01b0115575982cf24c88b35106449e9aa7: batman-adv: Use netif_rx_any_context(). (2021-02-13 18

Re: pull-request: ieee802154 for net 2021-04-07

2021-04-07 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net.git (refs/heads/master): On Wed, 7 Apr 2021 16:55:05 +0200 you wrote: > Hello Dave, Jakub. > > An update from ieee802154 for your *net* tree. > > Most of these are coming from the flood of syzkaller reports > lately got

Re: pull-request: can-next 2021-04-07

2021-04-07 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net-next.git (refs/heads/master): On Wed, 7 Apr 2021 10:01:12 +0200 you wrote: > Hello Jakub, hello David, > > this is a pull request of 6 patches for net-next/master. > > The first patch targets the CAN driver infrastructure,

Re: pull-request: wireless-drivers-2021-04-07

2021-04-07 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net.git (refs/heads/master): On Wed, 7 Apr 2021 12:22:04 + (UTC) you wrote: > Hi, > > here's a pull request to net tree, more info below. Please let me know if > there > are any problems. > > Kalle > > [...]

pull-request: ieee802154 for net 2021-04-07

2021-04-07 Thread Stefan Schmidt
Hello Dave, Jakub. An update from ieee802154 for your *net* tree. Most of these are coming from the flood of syzkaller reports lately got for the ieee802154 subsystem. There are likely to come more for this, but this is a good batch to get out for now. Alexander Aring created a patchset to avoid

pull-request: wireless-drivers-2021-04-07

2021-04-07 Thread Kalle Valo
Hi, here's a pull request to net tree, more info below. Please let me know if there are any problems. Kalle The following changes since commit 05a59d79793d482f628a31753c671f2e92178a21: Merge git://git.kernel.org:/pub/scm/linux/kernel/git/netdev/net (2021-03-09 17:15:56 -0800) are avai

pull-request: can-next 2021-04-07

2021-04-07 Thread Marc Kleine-Budde
Hello Jakub, hello David, this is a pull request of 6 patches for net-next/master. The first patch targets the CAN driver infrastructure, it improves the alloc_can{,fd}_skb() function to set the pointer to the CAN frame to NULL if skb allocation fails. The next patch adds missing error handling

[pull request][net-next 00/13] mlx5 updates 2021-04-06

2021-04-06 Thread Saeed Mahameed
From: Saeed Mahameed Hi Dave, Jakub, This series From Chris adds the support for TC psample offloads to mlx5 driver. For more information please see tag log below. Please pull and let me know if there is any problem. Thanks, Saeed. --- The following changes since commit 0b35e0deb5bee7d488235

[pull request][net 0/5] mlx5 fixes 2021-04-06

2021-04-06 Thread Saeed Mahameed
From: Saeed Mahameed Hi Dave, Jakub, This series provides some fixes to mlx5 driver. Please pull and let me know if there is any problem. Thanks, Saeed. --- The following changes since commit 5219d6012d46ec1fa3397e50bfeb7b8c16df72cf: docs: ethtool: fix some copy-paste errors (2021-04-06 16:

Re: [PATCH net] net: hns3: clear VF down state bit before request link status

2021-04-06 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Tue, 6 Apr 2021 21:10:43 +0800 you wrote: > From: Guangbin Huang > > Currently, the VF down state bit is cleared after VF sending > link status request command. There is problem that when VF gets > link stat

Re: pull-request: can 2021-04-06

2021-04-06 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net.git (refs/heads/master): On Tue, 6 Apr 2021 12:36:05 +0200 you wrote: > Hello Jakub, hello David, > > this is a pull request of 1 patch for net/master. > > The patch is by me and fixes the SPI half duplex support in the >

[PATCH net] net: hns3: clear VF down state bit before request link status

2021-04-06 Thread Huazhong Tan
From: Guangbin Huang Currently, the VF down state bit is cleared after VF sending link status request command. There is problem that when VF gets link status replied from PF, the down state bit may still set as 1. In this case, the link status replied from PF will be ignored and always set VF

pull-request: can 2021-04-06

2021-04-06 Thread Marc Kleine-Budde
Hello Jakub, hello David, this is a pull request of 1 patch for net/master. The patch is by me and fixes the SPI half duplex support in the mcp251x CAN driver. regards, Marc --- The following changes since commit 08c27f3322fec11950b8f1384aa0f3b11d028528: batman-adv: initialize "s

[pull request][net-next 00/16] mlx5 updates 2021-04-02

2021-04-03 Thread Saeed Mahameed
From: Saeed Mahameed Hi Dave, Jakub, This series provfides misc updates to mlx5. For more information please see tag log below. Please pull and let me know if there is any problem. Thanks, Saeed. --- The following changes since commit bd78980be1a68d14524c51c4b4170782fada622b: net: usb: ax8

pull-request: bpf-next 2021-04-01

2021-04-01 Thread Alexei Starovoitov
Hi David, hi Jakub, The following pull-request contains BPF updates for your *net-next* tree. We've added 68 non-merge commits during the last 7 day(s) which contain a total of 70 files changed, 2944 insertions(+), 1139 deletions(-). The main changes are: 1) UDP support for sockmap, from

pull-request: bpf 2021-04-01

2021-04-01 Thread Alexei Starovoitov
Hi David, hi Jakub, The following pull-request contains BPF updates for your *net* tree. We've added 11 non-merge commits during the last 8 day(s) which contain a total of 10 files changed, 151 insertions(+), 26 deletions(-). The main changes are: 1) xsk creation fixes, from Ciar

Re: [PATCH net 0/3][pull request] Intel Wired LAN Driver Updates 2021-04-01

2021-04-01 Thread patchwork-bot+netdevbpf
Hello: This series was applied to netdev/net.git (refs/heads/master): On Thu, 1 Apr 2021 10:21:04 -0700 you wrote: > This series contains updates to i40e driver only. > > Arkadiusz fixes warnings for inconsistent indentation. > > Magnus fixes an issue on xsk receive where single packets over t

Re: [PATCH net-next 00/15][pull request] 100GbE Intel Wired LAN Driver Updates 2021-03-31

2021-04-01 Thread patchwork-bot+netdevbpf
Hello: This series was applied to netdev/net-next.git (refs/heads/master): On Wed, 31 Mar 2021 16:08:43 -0700 you wrote: > This series contains updates to ice driver only. > > Benita adds support for XPS. > > Ani moves netdev registration to the end of probe to prevent use before > the interfac

[PATCH net 0/3][pull request] Intel Wired LAN Driver Updates 2021-04-01

2021-04-01 Thread Tony Nguyen
This series contains updates to i40e driver only. Arkadiusz fixes warnings for inconsistent indentation. Magnus fixes an issue on xsk receive where single packets over time are batched rather than received immediately. Eryk corrects warnings and reporting of veb-stats. The following are changes

Re: [syzbot] BUG: unable to handle kernel paging request in bpf_trace_run2

2021-04-01 Thread syzbot
syzbot suspects this issue was fixed by commit: commit befe6d946551d65cddbd32b9cb0170b0249fd5ed Author: Steven Rostedt (VMware) Date: Wed Nov 18 14:34:05 2020 + tracepoint: Do not fail unregistering a probe due to memory failure bisection log: https://syzkaller.appspot.com/x/bisect.t

[PATCH net-next 00/15][pull request] 100GbE Intel Wired LAN Driver Updates 2021-03-31

2021-03-31 Thread Tony Nguyen
This series contains updates to ice driver only. Benita adds support for XPS. Ani moves netdev registration to the end of probe to prevent use before the interface is ready and moves up an error check to possibly avoid an unneeded call. He also consolidates the VSI state and flag fields to a sing

Re: pull request (net): ipsec 2021-03-31

2021-03-31 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net.git (refs/heads/master): On Wed, 31 Mar 2021 10:18:36 +0200 you wrote: > 1) Fix ipv4 pmtu checks for xfrm anf vti interfaces. >From Eyal Birger. > > 2) There are situations where the socket passed to >xfrm_output_resu

[net 7/9] net/mlx5: Don't request more than supported EQs

2021-03-31 Thread Saeed Mahameed
From: Daniel Jurgens Calculating the number of compeltion EQs based on the number of available IRQ vectors doesn't work now that all async EQs share one IRQ. Thus the max number of EQs can be exceeded on systems with more than approximately 256 CPUs. Take this into account when calculating the nu

[pull request][net 0/9] mlx5 fixes 2021-03-31

2021-03-31 Thread Saeed Mahameed
indication of connector type Daniel Jurgens (1): net/mlx5: Don't request more than supported EQs Dima Chumak (1): net/mlx5e: Consider geneve_opts for encap contexts Maor Dickman (2): net/mlx5: Delete auxiliary bus driver eth-rep first net/mlx5: E-switch, Create vport

pull request (net): ipsec 2021-03-31

2021-03-31 Thread Steffen Klassert
1) Fix ipv4 pmtu checks for xfrm anf vti interfaces. From Eyal Birger. 2) There are situations where the socket passed to xfrm_output_resume() is not the same as the one attached to the skb. Use the socket passed to xfrm_output_resume() to avoid lookup failures when xfrm is used wit

Re: pull-request: can-next 2021-03-30

2021-03-30 Thread patchwork-bot+netdevbpf
Hello: This pull request was applied to netdev/net-next.git (refs/heads/master): On Tue, 30 Mar 2021 13:45:20 +0200 you wrote: > Hello Jakub, hello David, > > this is a pull request of 39 patches for net-next/master. > > The first two patches update the MAINTAINERS file. O

pull-request: can-next 2021-03-30

2021-03-30 Thread Marc Kleine-Budde
Hello Jakub, hello David, this is a pull request of 39 patches for net-next/master. The first two patches update the MAINTAINERS file. One is by me and removes Dan Murphy from the from m_can and tcan4x5x. The other one is by Pankaj Sharma and updates the maintainership of the m-can mmio driver

  1   2   3   4   5   6   7   8   9   10   >