Re: [PATCH V1] net: qrtr: ns: Return 0 if server port is not present

2024-01-01 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (main)
by David S. Miller :

On Thu, 21 Dec 2023 15:36:51 +0530 you wrote:
> When a 'DEL_CLIENT' message is received from the remote, the corresponding
> server port gets deleted. A DEL_SERVER message is then announced for this
> server. As part of handling the subsequent DEL_SERVER message, the name-
> server attempts to delete the server port which results in a '-ENOENT' error.
> The return value from server_del() is then propagated back to qrtr_ns_worker,
> causing excessive error prints.
> To address this, return 0 from control_cmd_del_server() without checking the
> return value of server_del(), since the above scenario is not an error case
> and hence server_del() doesn't have any other error return value.
> 
> [...]

Here is the summary with links:
  - [V1] net: qrtr: ns: Return 0 if server port is not present
https://git.kernel.org/netdev/net/c/9bf2e9165f90

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next v3] vsock/virtio: use skb_frag_*() helpers

2024-01-03 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski :

On Tue,  2 Jan 2024 12:59:04 -0800 you wrote:
> Minor fix for virtio: code wanting to access the fields inside an skb
> frag should use the skb_frag_*() helpers, instead of accessing the
> fields directly. This allows for extensions where the underlying
> memory is not a page.
> 
> Acked-by: Stefano Garzarella 
> Signed-off-by: Mina Almasry 
> 
> [...]

Here is the summary with links:
  - [net-next,v3] vsock/virtio: use skb_frag_*() helpers
https://git.kernel.org/netdev/net-next/c/06d9b446c4d4

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next v2] vsock/test: add '--peer-port' input argument

2024-01-24 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski :

On Tue, 23 Jan 2024 10:27:50 +0300 you wrote:
> Implement port for given CID as input argument instead of using
> hardcoded value '1234'. This allows to run different test instances
> on a single CID. Port argument is not required parameter and if it is
> not set, then default value will be '1234' - thus we preserve previous
> behaviour.
> 
> Signed-off-by: Arseniy Krasnov 
> 
> [...]

Here is the summary with links:
  - [net-next,v2] vsock/test: add '--peer-port' input argument
https://git.kernel.org/netdev/net-next/c/e18c709230cb

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next v1] vsock/test: print type for SOCK_SEQPACKET

2024-01-25 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski :

On Wed, 24 Jan 2024 22:32:55 +0300 you wrote:
> SOCK_SEQPACKET is supported for virtio transport, so do not interpret
> such type of socket as unknown.
> 
> Signed-off-by: Arseniy Krasnov 
> ---
>  tools/testing/vsock/vsock_diag_test.c | 2 ++
>  1 file changed, 2 insertions(+)

Here is the summary with links:
  - [net-next,v1] vsock/test: print type for SOCK_SEQPACKET
https://git.kernel.org/netdev/net-next/c/767ec326f985

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next 1/2] net/vsockmon: Leverage core stats allocator

2024-02-26 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski :

On Fri, 23 Feb 2024 03:58:37 -0800 you wrote:
> With commit 34d21de99cea9 ("net: Move {l,t,d}stats allocation to core and
> convert veth & vrf"), stats allocation could be done on net core
> instead of this driver.
> 
> With this new approach, the driver doesn't have to bother with error
> handling (allocation failure checking, making sure free happens in the
> right spot, etc). This is core responsibility now.
> 
> [...]

Here is the summary with links:
  - [net-next,1/2] net/vsockmon: Leverage core stats allocator
https://git.kernel.org/netdev/net-next/c/bcd53aff4d0c
  - [net-next,2/2] net/vsockmon: Do not set zeroed statistics
https://git.kernel.org/netdev/net-next/c/3a25e212306c

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next v3] tcp: Add skb addr and sock addr to arguments of tracepoint tcp_probe.

2024-03-08 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (main)
by David S. Miller :

On Tue, 5 Mar 2024 11:04:17 +0800 you wrote:
> It is useful to expose skb addr and sock addr to user in tracepoint
> tcp_probe, so that we can get more information while monitoring
> receiving of tcp data, by ebpf or other ways.
> 
> For example, we need to identify a packet by seq and end_seq when
> calculate transmit latency between layer 2 and layer 4 by ebpf, but which is
> not available in tcp_probe, so we can only use kprobe hooking
> tcp_rcv_established to get them. But we can use tcp_probe directly if skb
> addr and sock addr are available, which is more efficient.
> 
> [...]

Here is the summary with links:
  - [net-next,v3] tcp: Add skb addr and sock addr to arguments of tracepoint 
tcp_probe.
https://git.kernel.org/netdev/net-next/c/caabd859c41b

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next v4] net: dqs: add NIC stall detector based on BQL

2024-03-08 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (main)
by David S. Miller :

On Mon,  4 Mar 2024 06:08:47 -0800 you wrote:
> From: Jakub Kicinski 
> 
> softnet_data->time_squeeze is sometimes used as a proxy for
> host overload or indication of scheduling problems. In practice
> this statistic is very noisy and has hard to grasp units -
> e.g. is 10 squeezes a second to be expected, or high?
> 
> [...]

Here is the summary with links:
  - [net-next,v4] net: dqs: add NIC stall detector based on BQL
https://git.kernel.org/netdev/net-next/c/6025b9135f7a

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net v2] vsock/virtio: fix packet delivery to tap device

2024-04-02 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski :

On Fri, 29 Mar 2024 17:12:59 +0100 you wrote:
> Commit 82dfb540aeb2 ("VSOCK: Add virtio vsock vsockmon hooks") added
> virtio_transport_deliver_tap_pkt() for handing packets to the
> vsockmon device. However, in virtio_transport_send_pkt_work(),
> the function is called before actually sending the packet (i.e.
> before placing it in the virtqueue with virtqueue_add_sgs() and checking
> whether it returned successfully).
> Queuing the packet in the virtqueue can fail even multiple times.
> However, in virtio_transport_deliver_tap_pkt() we deliver the packet
> to the monitoring tap interface only the first time we call it.
> This certainly avoids seeing the same packet replicated multiple times
> in the monitoring interface, but it can show the packet sent with the
> wrong timestamp or even before we succeed to queue it in the virtqueue.
> 
> [...]

Here is the summary with links:
  - [net,v2] vsock/virtio: fix packet delivery to tap device
https://git.kernel.org/netdev/net/c/b32a09ea7c38

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net v4] virtio_net: Do not send RSS key if it is not supported

2024-04-07 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (main)
by David S. Miller :

On Wed,  3 Apr 2024 08:43:12 -0700 you wrote:
> There is a bug when setting the RSS options in virtio_net that can break
> the whole machine, getting the kernel into an infinite loop.
> 
> Running the following command in any QEMU virtual machine with virtionet
> will reproduce this problem:
> 
> # ethtool -X eth0  hfunc toeplitz
> 
> [...]

Here is the summary with links:
  - [net,v4] virtio_net: Do not send RSS key if it is not supported
https://git.kernel.org/netdev/net/c/059a49aa2e25

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next v9] virtio_net: Support RX hash XDP hint

2024-04-18 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (main)
by Paolo Abeni :

On Wed, 17 Apr 2024 15:18:22 +0800 you wrote:
> The RSS hash report is a feature that's part of the virtio specification.
> Currently, virtio backends like qemu, vdpa (mlx5), and potentially vhost
> (still a work in progress as per [1]) support this feature. While the
> capability to obtain the RSS hash has been enabled in the normal path,
> it's currently missing in the XDP path. Therefore, we are introducing
> XDP hints through kfuncs to allow XDP programs to access the RSS hash.
> 
> [...]

Here is the summary with links:
  - [net-next,v9] virtio_net: Support RX hash XDP hint
https://git.kernel.org/netdev/net-next/c/aa37f8916d20

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH v4 1/2] ipvs: add READ_ONCE barrier for ipvs->sysctl_amemthresh

2024-05-08 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (main)
by David S. Miller :

On Mon,  6 May 2024 16:14:43 +0200 you wrote:
> Cc: Julian Anastasov 
> Cc: Simon Horman 
> Cc: Pablo Neira Ayuso 
> Cc: Jozsef Kadlecsik 
> Cc: Florian Westphal 
> Suggested-by: Julian Anastasov 
> Signed-off-by: Alexander Mikhalitsyn 
> 
> [...]

Here is the summary with links:
  - [v4,1/2] ipvs: add READ_ONCE barrier for ipvs->sysctl_amemthresh
https://git.kernel.org/netdev/net-next/c/643bb5dbaef7
  - [v4,2/2] ipvs: allow some sysctls in non-init user namespaces
https://git.kernel.org/netdev/net-next/c/2b696a2a101d

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH] net: appletalk: remove cops support

2023-10-04 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski :

On Wed, 27 Sep 2023 11:00:30 +0200 you wrote:
> The COPS Appletalk support is very old, never said to actually work
> properly, and the firmware code for the devices are under a very suspect
> license.  Remove it all to clear up the license issue, if it is still
> needed and actually used by anyone, we can add it back later once the
> license is cleared up.
> 
> Reported-by: Prarit Bhargava 
> Cc: Christoph Hellwig 
> Cc: Vitaly Kuznetsov 
> Cc: jsch...@samba.org
> Signed-off-by: Greg Kroah-Hartman 
> 
> [...]

Here is the summary with links:
  - net: appletalk: remove cops support
https://git.kernel.org/netdev/net-next/c/00f3696f7555

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH bpf-next] bpf: change syscall_nr type to int in struct syscall_tp_t

2023-10-13 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to bpf/bpf-next.git (master)
by Andrii Nakryiko :

On Fri, 13 Oct 2023 07:42:19 +0200 you wrote:
> linux-rt-devel tree contains a patch (b1773eac3f29c ("sched: Add support
> for lazy preemption")) that adds an extra member to struct trace_entry.
> This causes the offset of args field in struct trace_event_raw_sys_enter
> be different from the one in struct syscall_trace_enter:
> 
> struct trace_event_raw_sys_enter {
> struct trace_entry ent;  /* 012 */
> 
> [...]

Here is the summary with links:
  - [bpf-next] bpf: change syscall_nr type to int in struct syscall_tp_t
https://git.kernel.org/bpf/bpf-next/c/ba8ea72388a1

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH] neighbor: tracing: Move pin6 inside CONFIG_IPV6=y section

2023-10-18 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (main)
by David S. Miller :

On Mon, 16 Oct 2023 14:49:04 +0200 you wrote:
> When CONFIG_IPV6=n, and building with W=1:
> 
> In file included from include/trace/define_trace.h:102,
>from include/trace/events/neigh.h:255,
>from net/core/net-traces.c:51:
> include/trace/events/neigh.h: In function 
> ‘trace_event_raw_event_neigh_create’:
> include/trace/events/neigh.h:42:34: error: variable ‘pin6’ set but not 
> used [-Werror=unused-but-set-variable]
>42 | struct in6_addr *pin6;
> |  ^~~~
> include/trace/trace_events.h:402:11: note: in definition of macro 
> ‘DECLARE_EVENT_CLASS’
>   402 | { assign; }   
>   \
> |   ^~
> include/trace/trace_events.h:44:30: note: in expansion of macro ‘PARAMS’
>44 |  PARAMS(assign),   \
> |  ^~
> include/trace/events/neigh.h:23:1: note: in expansion of macro 
> ‘TRACE_EVENT’
>23 | TRACE_EVENT(neigh_create,
> | ^~~
> include/trace/events/neigh.h:41:9: note: in expansion of macro 
> ‘TP_fast_assign’
>41 | TP_fast_assign(
> | ^~
> In file included from include/trace/define_trace.h:103,
>from include/trace/events/neigh.h:255,
>from net/core/net-traces.c:51:
> include/trace/events/neigh.h: In function ‘perf_trace_neigh_create’:
> include/trace/events/neigh.h:42:34: error: variable ‘pin6’ set but not 
> used [-Werror=unused-but-set-variable]
>42 | struct in6_addr *pin6;
> |  ^~~~
> include/trace/perf.h:51:11: note: in definition of macro 
> ‘DECLARE_EVENT_CLASS’
>51 | { assign; }   
>   \
> |   ^~
> include/trace/trace_events.h:44:30: note: in expansion of macro ‘PARAMS’
>44 |  PARAMS(assign),   \
> |  ^~
> include/trace/events/neigh.h:23:1: note: in expansion of macro 
> ‘TRACE_EVENT’
>23 | TRACE_EVENT(neigh_create,
> | ^~~
> include/trace/events/neigh.h:41:9: note: in expansion of macro 
> ‘TP_fast_assign’
>41 | TP_fast_assign(
> | ^~
> 
> [...]

Here is the summary with links:
  - neighbor: tracing: Move pin6 inside CONFIG_IPV6=y section
https://git.kernel.org/netdev/net/c/2915240eddba

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net 0/4] vsock: fix server prevents clients from reconnecting

2023-11-07 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net.git (main)
by David S. Miller :

On Fri,  3 Nov 2023 18:55:47 +0100 you wrote:
> From: Filippo Storniolo 
> 
> This patch series introduce fix and tests for the following vsock bug:
> If the same remote peer, using the same port, tries to connect
> to a server on a listening port more than once, the server will
> reject the connection, causing a "connection reset by peer"
> error on the remote peer. This is due to the presence of a
> dangling socket from a previous connection in both the connected
> and bound socket lists.
> The inconsistency of the above lists only occurs when the remote
> peer disconnects and the server remains active.
> This bug does not occur when the server socket is closed.
> 
> [...]

Here is the summary with links:
  - [net,1/4] vsock/virtio: remove socket from connected/bound list on shutdown
https://git.kernel.org/netdev/net/c/3a5cc90a4d17
  - [net,2/4] test/vsock fix: add missing check on socket creation
https://git.kernel.org/netdev/net/c/bfada5a7672f
  - [net,3/4] test/vsock: refactor vsock_accept
https://git.kernel.org/netdev/net/c/84d5fb974131
  - [net,4/4] test/vsock: add dobule bind connect test
https://git.kernel.org/netdev/net/c/d80f63f69025

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net v2] virtio/vsock: Fix uninit-value in virtio_transport_recv_pkt()

2023-11-07 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski :

On Sun,  5 Nov 2023 00:05:31 +0900 you wrote:
> KMSAN reported the following uninit-value access issue:
> 
> =
> BUG: KMSAN: uninit-value in virtio_transport_recv_pkt+0x1dfb/0x26a0 
> net/vmw_vsock/virtio_transport_common.c:1421
>  virtio_transport_recv_pkt+0x1dfb/0x26a0 
> net/vmw_vsock/virtio_transport_common.c:1421
>  vsock_loopback_work+0x3bb/0x5a0 net/vmw_vsock/vsock_loopback.c:120
>  process_one_work kernel/workqueue.c:2630 [inline]
>  process_scheduled_works+0xff6/0x1e60 kernel/workqueue.c:2703
>  worker_thread+0xeca/0x14d0 kernel/workqueue.c:2784
>  kthread+0x3cc/0x520 kernel/kthread.c:388
>  ret_from_fork+0x66/0x80 arch/x86/kernel/process.c:147
>  ret_from_fork_asm+0x11/0x20 arch/x86/entry/entry_64.S:304
> 
> [...]

Here is the summary with links:
  - [net,v2] virtio/vsock: Fix uninit-value in virtio_transport_recv_pkt()
https://git.kernel.org/netdev/net/c/34c4effacfc3

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net v1] vsock/test: fix SEQPACKET message bounds test

2023-11-23 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski :

On Wed, 22 Nov 2023 00:16:42 +0300 you wrote:
> Tune message length calculation to make this test work on machines
> where 'getpagesize()' returns >32KB. Now maximum message length is not
> hardcoded (on machines above it was smaller than 'getpagesize()' return
> value, thus we get negative value and test fails), but calculated at
> runtime and always bigger than 'getpagesize()' result. Reproduced on
> aarch64 with 64KB page size.
> 
> [...]

Here is the summary with links:
  - [net,v1] vsock/test: fix SEQPACKET message bounds test
https://git.kernel.org/netdev/net/c/f0863888f6cf

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net] vsock/virtio: fix "comparison of distinct pointer types lacks a cast" warning

2023-12-07 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski :

On Wed,  6 Dec 2023 17:41:43 +0100 you wrote:
> After backporting commit 581512a6dc93 ("vsock/virtio: MSG_ZEROCOPY
> flag support") in CentOS Stream 9, CI reported the following error:
> 
> In file included from ./include/linux/kernel.h:17,
>  from ./include/linux/list.h:9,
>  from ./include/linux/preempt.h:11,
>  from ./include/linux/spinlock.h:56,
>  from net/vmw_vsock/virtio_transport_common.c:9:
> net/vmw_vsock/virtio_transport_common.c: In function 
> ‘virtio_transport_can_zcopy‘:
> ./include/linux/minmax.h:20:35: error: comparison of distinct pointer 
> types lacks a cast [-Werror]
>20 | (!!(sizeof((typeof(x) *)1 == (typeof(y) *)1)))
>   |   ^~
> ./include/linux/minmax.h:26:18: note: in expansion of macro ‘__typecheck‘
>26 | (__typecheck(x, y) && __no_side_effects(x, y))
>   |  ^~~
> ./include/linux/minmax.h:36:31: note: in expansion of macro ‘__safe_cmp‘
>36 | __builtin_choose_expr(__safe_cmp(x, y), \
>   |   ^~
> ./include/linux/minmax.h:45:25: note: in expansion of macro 
> ‘__careful_cmp‘
>45 | #define min(x, y)   __careful_cmp(x, y, <)
>   | ^
> net/vmw_vsock/virtio_transport_common.c:63:37: note: in expansion of 
> macro ‘min‘
>63 | int pages_to_send = min(pages_in_iov, 
> MAX_SKB_FRAGS);
> 
> [...]

Here is the summary with links:
  - [net] vsock/virtio: fix "comparison of distinct pointer types lacks a cast" 
warning
https://git.kernel.org/netdev/net/c/b0a930e8d90c

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH v2] vsock/virtio: Fix unsigned integer wrap around in virtio_transport_has_space()

2023-12-13 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski :

On Mon, 11 Dec 2023 19:23:17 +0300 you wrote:
> We need to do signed arithmetic if we expect condition
> `if (bytes < 0)` to be possible
> 
> Found by Linux Verification Center (linuxtesting.org) with SVACE
> 
> Fixes: 06a8fc78367d ("VSOCK: Introduce virtio_vsock_common.ko")
> Signed-off-by: Nikolay Kuratov 
> 
> [...]

Here is the summary with links:
  - [v2] vsock/virtio: Fix unsigned integer wrap around in 
virtio_transport_has_space()
https://git.kernel.org/netdev/net/c/60316d7f10b1

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next v10 0/3] send credit update during setting SO_RCVLOWAT

2023-12-15 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (main)
by David S. Miller :

On Thu, 14 Dec 2023 15:52:27 +0300 you wrote:
> Hello,
> 
>DESCRIPTION
> 
> This patchset fixes old problem with hungup of both rx/tx sides and adds
> test for it. This happens due to non-default SO_RCVLOWAT value and
> deferred credit update in virtio/vsock. Link to previous old patchset:
> https://lore.kernel.org/netdev/39b2e9fd-601b-189d-39a9-914e55745...@sberdevices.ru/
> 
> [...]

Here is the summary with links:
  - [net-next,v10,1/3] virtio/vsock: fix logic which reduces credit update 
messages
https://git.kernel.org/netdev/net-next/c/93b808876682
  - [net-next,v10,2/3] virtio/vsock: send credit update during setting 
SO_RCVLOWAT
https://git.kernel.org/netdev/net-next/c/0fe179896811
  - [net-next,v10,3/3] vsock/test: two tests to check credit update logic
https://git.kernel.org/netdev/net-next/c/542e893fbadc

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next 0/5] net: constify ctl_table arguments of utility functions

2024-05-28 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski :

On Mon, 27 May 2024 19:04:18 +0200 you wrote:
> The sysctl core is preparing to only expose instances of
> struct ctl_table as "const".
> This will also affect the ctl_table argument of sysctl handlers.
> 
> As the function prototype of all sysctl handlers throughout the tree
> needs to stay consistent that change will be done in one commit.
> 
> [...]

Here is the summary with links:
  - [net-next,1/5] net/neighbour: constify ctl_table arguments of utility 
function
https://git.kernel.org/netdev/net-next/c/874aa96d78c7
  - [net-next,2/5] net/ipv4/sysctl: constify ctl_table arguments of utility 
functions
https://git.kernel.org/netdev/net-next/c/551814313f11
  - [net-next,3/5] net/ipv6/addrconf: constify ctl_table arguments of utility 
functions
https://git.kernel.org/netdev/net-next/c/c55eb03765f4
  - [net-next,4/5] net/ipv6/ndisc: constify ctl_table arguments of utility 
function
https://git.kernel.org/netdev/net-next/c/7a20cd1e71d8
  - [net-next,5/5] ipvs: constify ctl_table arguments of utility functions
https://git.kernel.org/netdev/net-next/c/0a9f788fdde4

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH V2] net: qrtr: ns: Ignore ENODEV failures in ns

2024-06-14 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (main)
by Paolo Abeni :

On Wed, 12 Jun 2024 12:01:56 +0530 you wrote:
> From: Chris Lew 
> 
> Ignore the ENODEV failures returned by kernel_sendmsg(). These errors
> indicate that either the local port has been closed or the remote has
> gone down. Neither of these scenarios are fatal and will eventually be
> handled through packets that are later queued on the control port.
> 
> [...]

Here is the summary with links:
  - [V2] net: qrtr: ns: Ignore ENODEV failures in ns
https://git.kernel.org/netdev/net-next/c/404dbd26322f

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next v5 0/7] net: pass receive socket to drop tracepoint

2024-06-19 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (main)
by David S. Miller :

On Mon, 17 Jun 2024 11:09:00 -0700 you wrote:
> We set up our production packet drop monitoring around the kfree_skb
> tracepoint. While this tracepoint is extremely valuable for diagnosing
> critical problems, it also has some limitation with drops on the local
> receive path: this tracepoint can only inspect the dropped skb itself,
> but such skb might not carry enough information to:
> 
> 1. determine in which netns/container this skb gets dropped
> 2. determine by which socket/service this skb oughts to be received
> 
> [...]

Here is the summary with links:
  - [net-next,v5,1/7] net: add rx_sk to trace_kfree_skb
https://git.kernel.org/netdev/net-next/c/c53795d48ee8
  - [net-next,v5,2/7] net: introduce sk_skb_reason_drop function
https://git.kernel.org/netdev/net-next/c/ba8de796baf4
  - [net-next,v5,3/7] ping: use sk_skb_reason_drop to free rx packets
https://git.kernel.org/netdev/net-next/c/7467de17635f
  - [net-next,v5,4/7] net: raw: use sk_skb_reason_drop to free rx packets
https://git.kernel.org/netdev/net-next/c/ce9a2424e9da
  - [net-next,v5,5/7] tcp: use sk_skb_reason_drop to free rx packets
https://git.kernel.org/netdev/net-next/c/46a02aa35752
  - [net-next,v5,6/7] udp: use sk_skb_reason_drop to free rx packets
https://git.kernel.org/netdev/net-next/c/fc0cc9248843
  - [net-next,v5,7/7] af_packet: use sk_skb_reason_drop to free rx packets
https://git.kernel.org/netdev/net-next/c/e2e7d78d9a25

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH v4] tracing/net_sched: NULL pointer dereference in perf_trace_qdisc_reset()

2024-06-27 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (main)
by Paolo Abeni :

On Tue, 25 Jun 2024 02:33:23 +0900 you wrote:
> From: Yunseong Kim 
> 
> In the TRACE_EVENT(qdisc_reset) NULL dereference occurred from
> 
>  qdisc->dev_queue->dev  ->name
> 
> This situation simulated from bunch of veths and Bluetooth disconnection
> and reconnection.
> 
> [...]

Here is the summary with links:
  - [v4] tracing/net_sched: NULL pointer dereference in perf_trace_qdisc_reset()
https://git.kernel.org/netdev/net/c/bab4923132fe

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH V2] test/vsock: add install target

2024-07-13 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski :

On Wed, 10 Jul 2024 20:27:28 +0800 you wrote:
> From: Peng Fan 
> 
> Add install target for vsock to make Yocto easy to install the images.
> 
> Signed-off-by: Peng Fan 
> ---
> 
> [...]

Here is the summary with links:
  - [V2] test/vsock: add install target
https://git.kernel.org/netdev/net-next/c/42ffe242860c

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next] virtio_net: Fix napi_skb_cache_put warning

2024-07-14 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski :

On Fri, 12 Jul 2024 04:53:25 -0700 you wrote:
> After the commit bdacf3e34945 ("net: Use nested-BH locking for
> napi_alloc_cache.") was merged, the following warning began to appear:
> 
>WARNING: CPU: 5 PID: 1 at net/core/skbuff.c:1451 
> napi_skb_cache_put+0x82/0x4b0
> 
> __warn+0x12f/0x340
> napi_skb_cache_put+0x82/0x4b0
> napi_skb_cache_put+0x82/0x4b0
> report_bug+0x165/0x370
> handle_bug+0x3d/0x80
> exc_invalid_op+0x1a/0x50
> asm_exc_invalid_op+0x1a/0x20
> __free_old_xmit+0x1c8/0x510
> napi_skb_cache_put+0x82/0x4b0
> __free_old_xmit+0x1c8/0x510
> __free_old_xmit+0x1c8/0x510
> __pfx___free_old_xmit+0x10/0x10
> 
> [...]

Here is the summary with links:
  - [net-next] virtio_net: Fix napi_skb_cache_put warning
https://git.kernel.org/netdev/net-next/c/f8321fa75102

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH bpf-next v2] bpf: kprobe: remove unused declaring of bpf_kprobe_override

2024-07-30 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to bpf/bpf-next.git (master)
by Andrii Nakryiko :

On Tue, 30 Jul 2024 13:37:33 +0800 you wrote:
> After the commit 5ad2f102 ("tracing/kprobe: bpf: Compare instruction
> pointer with original one"), "bpf_kprobe_override" is not used anywhere
> anymore, and we can remove it now.
> 
> Fixes: 5ad2f102 ("tracing/kprobe: bpf: Compare instruction pointer with 
> original one")
> Signed-off-by: Menglong Dong 
> 
> [...]

Here is the summary with links:
  - [bpf-next,v2] bpf: kprobe: remove unused declaring of bpf_kprobe_override
https://git.kernel.org/bpf/bpf-next/c/1cbe8143fd2f

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next v4 0/3] ioctl support for AF_VSOCK and virtio-based transports

2024-08-02 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (main)
by David S. Miller :

On Tue, 30 Jul 2024 21:43:05 +0200 you wrote:
> This patch series introduce the support for ioctl(s) in AF_VSOCK.
> The only ioctl currently available is SIOCOUTQ, which returns
> the number of unsent or unacked packets. It is available for
> SOCK_STREAM, SOCK_SEQPACKET and SOCK_DGRAM.
> 
> As this information is transport-dependent, a new optional callback
> is introduced: unsent_bytes.
> 
> [...]

Here is the summary with links:
  - [net-next,v4,1/3] vsock: add support for SIOCOUTQ ioctl
https://git.kernel.org/netdev/net-next/c/744500d81f81
  - [net-next,v4,2/3] vsock/virtio: add SIOCOUTQ support for all virtio based 
transports
https://git.kernel.org/netdev/net-next/c/e6ab45005772
  - [net-next,v4,3/3] test/vsock: add ioctl unsent bytes test
https://git.kernel.org/netdev/net-next/c/18ee44ce97c1

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next v7 0/4] virtio-net: synchronize op/admin state

2024-08-15 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski :

On Wed, 14 Aug 2024 13:22:24 +0800 you wrote:
> Hi All:
> 
> This series tries to synchronize the operstate with the admin state
> which allows the lower virtio-net to propagate the link status to the
> upper devices like macvlan.
> 
> This is done by toggling carrier during ndo_open/stop while doing
> other necessary serialization about the carrier settings during probe.
> 
> [...]

Here is the summary with links:
  - [net-next,v7,1/4] virtio: rename virtio_config_enabled to 
virtio_config_core_enabled
https://git.kernel.org/netdev/net-next/c/0cb70ee4a6ee
  - [net-next,v7,2/4] virtio: allow driver to disable the configure change 
notification
https://git.kernel.org/netdev/net-next/c/224de6f886f8
  - [net-next,v7,3/4] virtio-net: synchronize operstate with admin state on 
up/down
https://git.kernel.org/netdev/net-next/c/df28de7b0050
  - [net-next,v7,4/4] virtio-net: synchronize probe with ndo_set_features
https://git.kernel.org/netdev/net-next/c/c392d6019398

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH bpf-next v6 0/2] bpf: enable some functions in cgroup programs

2024-08-19 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to bpf/bpf-next.git (master)
by Andrii Nakryiko :

On Mon, 19 Aug 2024 18:28:03 +0200 you wrote:
> From: Matteo Croce 
> 
> Enable some BPF kfuncs and the helper bpf_current_task_under_cgroup()
> for program types BPF_CGROUP_*.
> These will be used by systemd-networkd:
> https://github.com/systemd/systemd/pull/32212
> 
> [...]

Here is the summary with links:
  - [bpf-next,v6,1/2] bpf: enable generic kfuncs for BPF_CGROUP_* programs
https://git.kernel.org/bpf/bpf-next/c/67666479edf1
  - [bpf-next,v6,2/2] bpf: allow bpf_current_task_under_cgroup() with 
BPF_CGROUP_*
https://git.kernel.org/bpf/bpf-next/c/7f6287417baf

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next 00/11] mptcp: MIB counters for MPJ TX + misc improvements

2024-09-03 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski :

On Mon, 02 Sep 2024 12:45:51 +0200 you wrote:
> Recently, a few issues have been discovered around the creation of
> additional subflows. Without these counters, it was difficult to point
> out the reason why some subflows were not created as expected.
> 
> In patch 3, all error paths from __mptcp_subflow_connect() are covered,
> except the one related to the 'fully established mode', because it can
> only happen with the userspace PM, which will propagate the error to the
> userspace in this case (ENOTCONN).
> 
> [...]

Here is the summary with links:
  - [net-next,01/11] mptcp: pm: rename helpers linked to 'flush'
https://git.kernel.org/netdev/net-next/c/7bcf4d8022f9
  - [net-next,02/11] mptcp: pm: reduce entries iterations on connect
https://git.kernel.org/netdev/net-next/c/b83fbca1b4c9
  - [net-next,03/11] mptcp: MIB counters for sent MP_JOIN
https://git.kernel.org/netdev/net-next/c/1bd1788b6cab
  - [net-next,04/11] selftests: mptcp: join: reduce join_nr params
https://git.kernel.org/netdev/net-next/c/1b2965a8cd8d
  - [net-next,05/11] selftests: mptcp: join: one line for join check
https://git.kernel.org/netdev/net-next/c/ba8a664004da
  - [net-next,06/11] selftests: mptcp: join: validate MPJ SYN TX MIB counters
https://git.kernel.org/netdev/net-next/c/004125c251a6
  - [net-next,07/11] selftests: mptcp: join: more explicit check name
https://git.kernel.org/netdev/net-next/c/6ed495345be8
  - [net-next,08/11] selftests: mptcp: join: specify host being checked
https://git.kernel.org/netdev/net-next/c/8d328dbcf61b
  - [net-next,09/11] selftests: mptcp: join: mute errors when ran in the 
background
https://git.kernel.org/netdev/net-next/c/08eecd7e7fe7
  - [net-next,10/11] selftests: mptcp: join: simplify checksum_tests
https://git.kernel.org/netdev/net-next/c/0e2b4584d61a
  - [net-next,11/11] selftests: mptcp: pm_nl_ctl: remove re-definition
https://git.kernel.org/netdev/net-next/c/38dc0708bcc8

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH bpf,v2,0/2] bpf: fix incorrect name check pass logic in btf_name_valid_section

2024-09-04 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to bpf/bpf.git (master)
by Alexei Starovoitov :

On Sat, 31 Aug 2024 14:45:25 +0900 you wrote:
> This patch was written to fix an issue where btf_name_valid_section() would
> not properly check names with certain conditions and would throw an OOB vuln.
> And selftest was added to verify this patch.
> 
> Jeongjun Park (2):
>   bpf: add check for invalid name in btf_name_valid_section()
>   selftest/bpf : Add a selftest test case to check for incorrect names
> 
> [...]

Here is the summary with links:
  - [bpf,v2,1/2] bpf: add check for invalid name in btf_name_valid_section()
https://git.kernel.org/bpf/bpf/c/bb6705c3f93b
  - [bpf,v2,2/2] selftest/bpf : Add a selftest test case to check for incorrect 
names
https://git.kernel.org/bpf/bpf/c/743070894724

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH] selftests: bpf: Replace sizeof(arr)/sizeof(arr[0]) with ARRAY_SIZE

2024-09-04 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to bpf/bpf-next.git (master)
by Andrii Nakryiko :

On Tue,  3 Sep 2024 15:25:59 +0800 you wrote:
> From: Feng Yang 
> 
> The ARRAY_SIZE macro is more compact and more formal in linux source.
> 
> Signed-off-by: Feng Yang 
> ---
>  tools/testing/selftests/bpf/prog_tests/fexit_stress.c| 3 ++-
>  tools/testing/selftests/bpf/prog_tests/log_buf.c | 5 +++--
>  .../testing/selftests/bpf/prog_tests/module_fentry_shadow.c  | 3 ++-
>  .../bpf/prog_tests/raw_tp_writable_reject_nbd_invalid.c  | 3 ++-
>  .../selftests/bpf/prog_tests/raw_tp_writable_test_run.c  | 5 +++--
>  tools/testing/selftests/bpf/prog_tests/tc_opts.c | 2 +-
>  tools/testing/selftests/bpf/prog_tests/unpriv_bpf_disabled.c | 3 ++-
>  tools/testing/selftests/bpf/progs/syscall.c  | 3 ++-
>  tools/testing/selftests/bpf/progs/test_rdonly_maps.c | 3 ++-
>  tools/testing/selftests/bpf/progs/verifier_bits_iter.c   | 2 +-
>  10 files changed, 20 insertions(+), 12 deletions(-)

Here is the summary with links:
  - selftests: bpf: Replace sizeof(arr)/sizeof(arr[0]) with ARRAY_SIZE
https://git.kernel.org/bpf/bpf-next/c/23457b37ec3f

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH v2] selftests: net: convert comma to semicolon

2024-09-04 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski :

On Wed,  4 Sep 2024 09:44:41 +0800 you wrote:
> Replace comma between expressions with semicolons.
> 
> Using a ',' in place of a ';' can have unintended side effects.
> Although that is not the case here, it is seems best to use ';'
> unless ',' is intended.
> 
> Found by inspection.
> No functional change intended.
> Compile tested only.
> 
> [...]

Here is the summary with links:
  - [v2] selftests: net: convert comma to semicolon
https://git.kernel.org/netdev/net-next/c/6ffa72acc9c9

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH bpf-next v1 1/3] selftests/bpf: fix some typos in selftests

2024-09-05 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to bpf/bpf-next.git (master)
by Alexei Starovoitov :

On Thu,  5 Sep 2024 19:03:05 +0800 you wrote:
> Hi, fix some spelling errors in selftest, the details are as follows:
> 
> -in the codes:
>   test_bpf_sk_stoarge_map_iter_fd(void)
>   ->test_bpf_sk_storage_map_iter_fd(void)
>   load BTF from btf_data.o->load BTF from btf_data.bpf.o
> 
> [...]

Here is the summary with links:
  - [bpf-next,v1,1/3] selftests/bpf: fix some typos in selftests
https://git.kernel.org/bpf/bpf-next/c/5db0ba6766f8
  - [bpf-next,v1,2/3] bpftool: fix some typos in bpftool
https://git.kernel.org/bpf/bpf-next/c/a86857d2546c
  - [bpf-next,v1,3/3] libbpf: fix some typos in libbpf
https://git.kernel.org/bpf/bpf-next/c/bd4d67f8ae55

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net] selftests: net: enable bind tests

2024-09-05 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski :

On Wed,  4 Sep 2024 16:12:26 +1000 you wrote:
> bind_wildcard is compiled but not run, bind_timewait is not compiled.
> 
> These two tests complete in a very short time, use the test harness
> properly, and seem reasonable to enable.
> 
> The author of the tests confirmed via email that these were
> intended to be run.
> 
> [...]

Here is the summary with links:
  - [net] selftests: net: enable bind tests
https://git.kernel.org/netdev/net/c/e4af74a53b7a

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net-next v2 0/5] selftests: mptcp: add time per subtests in TAP output

2024-09-09 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski :

On Fri, 06 Sep 2024 20:46:06 +0200 you wrote:
> Patches here add 'time=ms' in the diagnostic data of the TAP output,
> e.g.
> 
>   ok 1 - pm_netlink: defaults addr list # time=9ms
> 
> This addition is useful to quickly identify which subtests are taking a
> longer time than the others, or more than expected.
> 
> [...]

Here is the summary with links:
  - [net-next,v2,1/5] selftests: mptcp: lib: add time per subtests in TAP output
https://git.kernel.org/netdev/net-next/c/f58817c852e9
  - [net-next,v2,2/5] selftests: mptcp: connect: remote time in TAP output
https://git.kernel.org/netdev/net-next/c/1a38cee4bbd0
  - [net-next,v2,3/5] selftests: mptcp: reset the last TS before the first test
https://git.kernel.org/netdev/net-next/c/d4e192728efc
  - [net-next,v2,4/5] selftests: mptcp: diag: remove trailing whitespace
https://git.kernel.org/netdev/net-next/c/a5b6be42aac0
  - [net-next,v2,5/5] selftests: mptcp: connect: remove duplicated spaces in 
TAP output
https://git.kernel.org/netdev/net-next/c/a92d1db0c989

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net] selftests: net: csum: Fix checksums for packets with non-zero padding

2024-09-10 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski :

On Fri,  6 Sep 2024 17:07:43 -0400 you wrote:
> Padding is not included in UDP and TCP checksums. Therefore, reduce the
> length of the checksummed data to include only the data in the IP
> payload. This fixes spurious reported checksum failures like
> 
> rx: pkt: sport=33000 len=26 csum=0xc850 verify=0xf9fe
> pkt: bad csum
> 
> [...]

Here is the summary with links:
  - [net] selftests: net: csum: Fix checksums for packets with non-zero padding
https://git.kernel.org/netdev/net/c/e8a63d473b49

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [PATCH net 0/3] selftests: mptcp: misc. small fixes

2024-09-11 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net.git (main)
by Jakub Kicinski :

On Tue, 10 Sep 2024 21:06:35 +0200 you wrote:
> Here are some various fixes for the MPTCP selftests.
> 
> Patch 1 fixes a recently modified test to continue to work as expected
> on older kernels. This is a fix for a recent fix that can be backported
> up to v5.15.
> 
> Patch 2 and 3 include dependences when exporting or installing the
> tests. Two fixes for v6.11-rc1.
> 
> [...]

Here is the summary with links:
  - [net,1/3] selftests: mptcp: join: restrict fullmesh endp on 1st sf
https://git.kernel.org/netdev/net/c/49ac6f05ace5
  - [net,2/3] selftests: mptcp: include lib.sh file
https://git.kernel.org/netdev/net/c/1a5a2d19e827
  - [net,3/3] selftests: mptcp: include net_helper.sh file
https://git.kernel.org/netdev/net/c/c66c08e51b55

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html





Re: [net-next] net: dsa: felix: disable always guard band bit for TAS config

2021-04-20 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Mon, 19 Apr 2021 18:25:30 +0800 you wrote:
> ALWAYS_GUARD_BAND_SCH_Q bit in TAS config register is descripted as
> this:
>   0: Guard band is implemented for nonschedule queues to schedule
>  queues transition.
>   1: Guard band is implemented for any queue to schedule queue
>  transition.
> 
> [...]

Here is the summary with links:
  - [net-next] net: dsa: felix: disable always guard band bit for TAS config
https://git.kernel.org/netdev/net-next/c/316bcffe4479

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net-next] net: enetc: automatically select IERB module

2021-04-20 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Tue, 20 Apr 2021 16:28:21 +0200 you wrote:
> Now that enetc supports flow control we have to make sure the settings in
> the IERB are correct. Therefore, we actually depend on the enetc-ierb
> module. Previously it was possible that this module was disabled while the
> enetc was enabled. Fix it by automatically select the enetc-ierb module.
> 
> Fixes: e7d48e5fbf30 ("net: enetc: add a mini driver for the Integrated 
> Endpoint Register Block")
> Signed-off-by: Michael Walle 
> 
> [...]

Here is the summary with links:
  - [net-next] net: enetc: automatically select IERB module
https://git.kernel.org/netdev/net-next/c/1b8caefaf4f0

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] phy: nxp-c45-tja11xx: fix phase offset calculation

2021-04-20 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Tue, 20 Apr 2021 16:11:33 +0300 you wrote:
> Fix phase offset calculation.
> 
> Signed-off-by: Radu Pirea (NXP OSS) 
> ---
>  drivers/net/phy/nxp-c45-tja11xx.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> [...]

Here is the summary with links:
  - phy: nxp-c45-tja11xx: fix phase offset calculation
https://git.kernel.org/netdev/net-next/c/6b3a63100ded

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net] vsock/virtio: free queued packets when closing socket

2021-04-20 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Tue, 20 Apr 2021 13:07:27 +0200 you wrote:
> As reported by syzbot [1], there is a memory leak while closing the
> socket. We partially solved this issue with commit ac03046ece2b
> ("vsock/virtio: free packets during the socket release"), but we
> forgot to drain the RX queue when the socket is definitely closed by
> the scheduled work.
> 
> To avoid future issues, let's use the new virtio_transport_remove_sock()
> to drain the RX queue before removing the socket from the af_vsock lists
> calling vsock_remove_sock().
> 
> [...]

Here is the summary with links:
  - [net] vsock/virtio: free queued packets when closing socket
https://git.kernel.org/netdev/net/c/8432b8114957

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net-next v2] net: phy: at803x: fix probe error if copper page is selected

2021-04-20 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Tue, 20 Apr 2021 12:29:29 +0200 you wrote:
> The commit c329e5afb42f ("net: phy: at803x: select correct page on
> config init") selects the copper page during probe. This fails if the
> copper page was already selected. In this case, the value of the copper
> page (which is 1) is propagated through phy_restore_page() and is
> finally returned for at803x_probe(). Fix it, by just using the
> at803x_page_write() directly.
> 
> [...]

Here is the summary with links:
  - [net-next,v2] net: phy: at803x: fix probe error if copper page is selected
https://git.kernel.org/netdev/net-next/c/8f7e876273e2

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH][next] net: mana: remove redundant initialization of variable err

2021-04-20 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Tue, 20 Apr 2021 13:27:30 +0100 you wrote:
> From: Colin Ian King 
> 
> The variable err is being initialized with a value that is
> never read and it is being updated later with a new value.  The
> initialization is redundant and can be removed
> 
> Addresses-Coverity: ("Unused value")
> Signed-off-by: Colin Ian King 
> 
> [...]

Here is the summary with links:
  - [next] net: mana: remove redundant initialization of variable err
https://git.kernel.org/netdev/net-next/c/55cdc26a91ac

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] net: davinci_emac: Fix incorrect masking of tx and rx error channel

2021-04-20 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Tue, 20 Apr 2021 18:16:14 +0100 you wrote:
> From: Colin Ian King 
> 
> The bit-masks used for the TXERRCH and RXERRCH (tx and rx error channels)
> are incorrect and always lead to a zero result. The mask values are
> currently the incorrect post-right shifted values, fix this by setting
> them to the currect values.
> 
> [...]

Here is the summary with links:
  - net: davinci_emac: Fix incorrect masking of tx and rx error channel
https://git.kernel.org/netdev/net/c/d83b8aa5207d

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net] net: marvell: prestera: fix port event handling on init

2021-04-20 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Tue, 20 Apr 2021 16:31:51 +0300 you wrote:
> From: Vadym Kochan 
> 
> For some reason there might be a crash during ports creation if port
> events are handling at the same time  because fw may send initial
> port event with down state.
> 
> The crash points to cancel_delayed_work() which is called when port went
> is down.  Currently I did not find out the real cause of the issue, so
> fixed it by cancel port stats work only if previous port's state was up
> & runnig.
> 
> [...]

Here is the summary with links:
  - [net] net: marvell: prestera: fix port event handling on init
https://git.kernel.org/netdev/net/c/333980481b99

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] selftests/net: Improve bind_bhash.sh to accommodate predictable network interface names

2023-09-10 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (main)
by David S. Miller :

On Thu,  7 Sep 2023 00:26:03 +0800 you wrote:
> Starting with v197, systemd uses predictable interface network names,
> the traditional interface naming scheme (eth0) is deprecated, therefore
> it cannot be assumed that the eth0 interface exists on the host.
> 
> This modification makes the bind_bhash test program run in a separate
> network namespace and no longer needs to consider the name of the
> network interface on the host.
> 
> [...]

Here is the summary with links:
  - selftests/net: Improve bind_bhash.sh to accommodate predictable network 
interface names
https://git.kernel.org/netdev/net/c/ced33ca07d8d

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [net-next 0/4] net: mvpp2: Minor non functional driver code improvements

2021-02-15 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Sun, 14 Feb 2021 15:38:33 +0200 you wrote:
> From: Stefan Chulski 
> 
> The patch series contains minor code improvements and did not change any 
> functionality.
> 
> Stefan Chulski (4):
>   net: mvpp2: simplify PPv2 version ID read
>   net: mvpp2: improve Packet Processor version check
>   net: mvpp2: improve mvpp2_get_sram return
>   net: mvpp2: improve Networking Complex Control register naming
> 
> [...]

Here is the summary with links:
  - [net-next,1/4] net: mvpp2: simplify PPv2 version ID read
https://git.kernel.org/netdev/net-next/c/8b986866b252
  - [net-next,2/4] net: mvpp2: improve Packet Processor version check
https://git.kernel.org/netdev/net-next/c/f704177e4721
  - [net-next,3/4] net: mvpp2: improve mvpp2_get_sram return
https://git.kernel.org/netdev/net-next/c/9ad78d81cb76
  - [net-next,4/4] net: mvpp2: improve Networking Complex Control register 
naming
https://git.kernel.org/netdev/net-next/c/935a11845aef

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH v1] atm: idt77252: fix build broken on amd64

2021-02-15 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Sun, 14 Feb 2021 18:43:08 -0500 you wrote:
> idt77252 is broken and wont load on amd64 systems
>   modprobe idt77252 shows the following
> 
> idt77252_init: skb->cb is too small (48 < 56)
> 
>   Add packed attribute to struct idt77252_skb_prv and struct atm_skb_data
>   so that the total size can be <= sizeof(skb->cb)
>   Also convert runtime size check to buildtime size check in
>   idt77252_init()
> 
> [...]

Here is the summary with links:
  - [v1] atm: idt77252: fix build broken on amd64
https://git.kernel.org/netdev/net/c/d0a0bbe7b0a1

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] b43: N-PHY: Fix the update of coef for the PHY revision >= 3case

2021-02-15 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Mon, 15 Feb 2021 12:05:32 + you wrote:
> From: Colin Ian King 
> 
> The documentation for the PHY update [1] states:
> 
> Loop 4 times with index i
> 
> If PHY Revision >= 3
> Copy table[i] to coef[i]
> Otherwise
> Set coef[i] to 0
> 
> [...]

Here is the summary with links:
  - b43: N-PHY: Fix the update of coef for the PHY revision >= 3case
https://git.kernel.org/netdev/net/c/4773acf3d4b5

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] net: wan/lmc: unregister device when no matching device is found

2021-02-15 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Mon, 15 Feb 2021 14:17:56 -0500 you wrote:
> lmc set sc->lmc_media pointer when there is a matching device.
> However, when no matching device is found, this pointer is NULL
> and the following dereference will result in a null-ptr-deref.
> 
> To fix this issue, unregister the hdlc device and return an error.
> 
> [4.569359] BUG: KASAN: null-ptr-deref in lmc_init_one.cold+0x2b6/0x55d 
> [lmc]
> [4.569748] Read of size 8 at addr 0008 by task modprobe/95
> [4.570102]
> [4.570187] CPU: 0 PID: 95 Comm: modprobe Not tainted 5.11.0-rc7 #94
> [4.570527] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 
> rel-1.13.0-48-gd9c812dda519-preb4
> [4.571125] Call Trace:
> [4.571261]  dump_stack+0x7d/0xa3
> [4.571445]  kasan_report.cold+0x10c/0x10e
> [4.571667]  ? lmc_init_one.cold+0x2b6/0x55d [lmc]
> [4.571932]  lmc_init_one.cold+0x2b6/0x55d [lmc]
> [4.572186]  ? lmc_mii_readreg+0xa0/0xa0 [lmc]
> [4.572432]  local_pci_probe+0x6f/0xb0
> [4.572639]  pci_device_probe+0x171/0x240
> [4.572857]  ? pci_device_remove+0xe0/0xe0
> [4.573080]  ? kernfs_create_link+0xb6/0x110
> [4.573315]  ? sysfs_do_create_link_sd.isra.0+0x76/0xe0
> [4.573598]  really_probe+0x161/0x420
> [4.573799]  driver_probe_device+0x6d/0xd0
> [4.574022]  device_driver_attach+0x82/0x90
> [4.574249]  ? device_driver_attach+0x90/0x90
> [4.574485]  __driver_attach+0x60/0x100
> [4.574694]  ? device_driver_attach+0x90/0x90
> [4.574931]  bus_for_each_dev+0xe1/0x140
> [4.575146]  ? subsys_dev_iter_exit+0x10/0x10
> [4.575387]  ? klist_node_init+0x61/0x80
> [4.575602]  bus_add_driver+0x254/0x2a0
> [4.575812]  driver_register+0xd3/0x150
> [4.576021]  ? 0xc0018000
> [4.576202]  do_one_initcall+0x84/0x250
> [4.576411]  ? trace_event_raw_event_initcall_finish+0x150/0x150
> [4.576733]  ? unpoison_range+0xf/0x30
> [4.576938]  ? kasan_kmalloc.constprop.0+0x84/0xa0
> [4.577219]  ? unpoison_range+0xf/0x30
> [4.577423]  ? unpoison_range+0xf/0x30
> [4.577628]  do_init_module+0xf8/0x350
> [4.577833]  load_module+0x3fe6/0x4340
> [4.578038]  ? vm_unmap_ram+0x1d0/0x1d0
> [4.578247]  ? kasan_kmalloc.constprop.0+0x84/0xa0
> [4.578526]  ? module_frob_arch_sections+0x20/0x20
> [4.578787]  ? __do_sys_finit_module+0x108/0x170
> [4.579037]  __do_sys_finit_module+0x108/0x170
> [4.579278]  ? __ia32_sys_init_module+0x40/0x40
> [4.579523]  ? file_open_root+0x200/0x200
> [4.579742]  ? do_sys_open+0x85/0xe0
> [4.579938]  ? filp_open+0x50/0x50
> [4.580125]  ? exit_to_user_mode_prepare+0xfc/0x130
> [4.580390]  do_syscall_64+0x33/0x40
> [4.580586]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
> [4.580859] RIP: 0033:0x7f1a724c3cf7
> [4.581054] Code: 48 89 57 30 48 8b 04 24 48 89 47 38 e9 1d a0 02 00 48 89 
> f8 48 89 f7 48 89 d6 48 891
> [4.582043] RSP: 002b:7fff44941c68 EFLAGS: 0246 ORIG_RAX: 
> 0139
> [4.582447] RAX: ffda RBX: 012ada70 RCX: 
> 7f1a724c3cf7
> [4.582827] RDX:  RSI: 012ac9e0 RDI: 
> 0003
> [4.583207] RBP: 0003 R08:  R09: 
> 0001
> [4.583587] R10: 7f1a72527300 R11: 0246 R12: 
> 012ac9e0
> [4.583968] R13:  R14: 012acc90 R15: 
> 0001
> [4.584349] 
> ==
> 
> [...]

Here is the summary with links:
  - net: wan/lmc: unregister device when no matching device is found
https://git.kernel.org/netdev/net/c/62e69bc41977

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [net-next] net: mvpp2: reduce tx-fifo for loopback port

2021-02-15 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Sun, 14 Feb 2021 16:10:03 +0200 you wrote:
> From: Stefan Chulski 
> 
> 1KB is enough for loopback port, so 2KB can be distributed
> between other ports.
> 
> Signed-off-by: Stefan Chulski 
> 
> [...]

Here is the summary with links:
  - [net-next] net: mvpp2: reduce tx-fifo for loopback port
https://git.kernel.org/netdev/net-next/c/7c29451550cc

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [net-next] net: mvpp2: Add TX flow control support for jumbo frames

2021-02-15 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Mon, 15 Feb 2021 17:23:42 +0200 you wrote:
> From: Stefan Chulski 
> 
> With MTU less than 1500B on all ports, the driver uses per CPU pool mode.
> If one of the ports set to jumbo frame MTU size, all ports move
> to shared pools mode.
> Here, buffer manager TX Flow Control reconfigured on all ports.
> 
> [...]

Here is the summary with links:
  - [net-next] net: mvpp2: Add TX flow control support for jumbo frames
https://git.kernel.org/netdev/net-next/c/3a616b92a9d1

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH v4 0/4] net: stmmac: Add Toshiba Visconti SoCs glue driver

2021-02-15 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Tue, 16 Feb 2021 00:24:34 +0900 you wrote:
> Hi,
> 
> This series is the ethernet driver for Toshiba's ARM SoC, Visconti[0].
> This provides DT binding documentation, device driver, MAINTAINER files,
> and updates to DT files.
> 
> Best regards,
>   Nobuhiro
> 
> [...]

Here is the summary with links:
  - [v4,1/4] dt-bindings: net: Add DT bindings for Toshiba Visconti TMPV7700 SoC
https://git.kernel.org/netdev/net-next/c/e6a395061c3e
  - [v4,2/4] net: stmmac: Add Toshiba Visconti SoCs glue driver
https://git.kernel.org/netdev/net-next/c/b38dd98ff8d0
  - [v4,3/4] MAINTAINERS: Add entries for Toshiba Visconti ethernet controller
https://git.kernel.org/netdev/net-next/c/df53e4f48e8d
  - [v4,4/4] arm: dts: visconti: Add DT support for Toshiba Visconti5 ethernet 
controller
https://git.kernel.org/netdev/net-next/c/ec8a42e73432

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net-next v2 0/3] net: phy: broadcom: Cleanups and APD

2021-02-15 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Fri, 12 Feb 2021 19:46:29 -0800 you wrote:
> This patch series cleans up the brcmphy.h header and its numerous unused
> phydev->dev_flags, fixes the RXC/TXC clock disabling bit and allows the
> BCM54210E PHY to utilize APD.
> 
> Changes in v2:
> 
> - dropped the patch that attempted to fix a possible discrepancy between
>   the datasheet and the actual hardware
> - added a patch to remove a forward declaration
> - do additional flags cleanup
> 
> [...]

Here is the summary with links:
  - [net-next,v2,1/3] net: phy: broadcom: Avoid forward for 
bcm54xx_config_clock_delay()
https://git.kernel.org/netdev/net-next/c/133bf7b4fbbe
  - [net-next,v2,2/3] net: phy: broadcom: Remove unused flags
https://git.kernel.org/netdev/net-next/c/17d3a83afbbf
  - [net-next,v2,3/3] net: phy: broadcom: Allow BCM54210E to configure APD
https://git.kernel.org/netdev/net-next/c/5d4358ede8eb

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] i40e: Fix incorrect use of ip6src due to copy-paste coding error

2021-02-15 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Mon, 15 Feb 2021 16:19:23 + you wrote:
> From: Colin Ian King 
> 
> It appears that the call of ipv6_add_any for the destination address
> is using ip6src instead of ip6dst, this looks like a copy-paste
> coding error. Fix this by replacing ip6src with ip6dst.
> 
> Addresses-Coverity: ("Copy-paste error")
> Fixes: efca91e89b67 ("i40e: Add flow director support for IPv6")
> Signed-off-by: Colin Ian King 
> 
> [...]

Here is the summary with links:
  - i40e: Fix incorrect use of ip6src due to copy-paste coding error
https://git.kernel.org/netdev/net-next/c/7f76963b692d

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] ionic: Remove unused function pointer typedef ionic_reset_cb

2021-02-16 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Tue, 16 Feb 2021 12:05:30 +0800 you wrote:
> From: Chen Lin 
> 
> Remove the 'ionic_reset_cb' typedef as it is not used.
> 
> Signed-off-by: Chen Lin 
> ---
>  drivers/net/ethernet/pensando/ionic/ionic_lif.h |2 --
>  1 file changed, 2 deletions(-)

Here is the summary with links:
  - ionic: Remove unused function pointer typedef ionic_reset_cb
https://git.kernel.org/netdev/net-next/c/6825a456c9a3

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net-next v3 0/3] Fixes applied to VCS8514

2021-02-16 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Tue, 16 Feb 2021 16:29:41 +0100 you wrote:
> 3 different fixes applied to VSC8514:
> LCPLL reset, serdes calibration and coma mode disabled.
> Especially the serdes calibration is large and is now placed
> in a new file 'mscc_serdes.c' which can act as
> a placeholder for future serdes configuration.
> 
> v1 -> v2:
>   Preserved reversed christmas tree
>   Removed forward definitions
>   Fixed build issues
>   Changed net to net-next
> 
> [...]

Here is the summary with links:
  - [net-next,v3,1/3] net: phy: mscc: adding LCPLL reset to VSC8514
https://git.kernel.org/netdev/net-next/c/3cc2c646be0b
  - [net-next,v3,2/3] net: phy: mscc: improved serdes calibration applied to 
VSC8514
https://git.kernel.org/netdev/net-next/c/85e97f0b984e
  - [net-next,v3,3/3] net: phy: mscc: coma mode disabled for VSC8514
https://git.kernel.org/netdev/net-next/c/ca0d7fd0a58d

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [net-next v2] octeontx2-af: cn10k: Fixes CN10K RPM reference issue

2021-02-16 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Tue, 16 Feb 2021 17:09:36 +0530 you wrote:
> This patch fixes references to uninitialized variables and
> debugfs entry name for CN10K platform and HW_TSO flag check.
> 
> Fixes: 3ad3f8f93c81 ("octeontx2-af: cn10k: MAC internal loopback support").
> Signed-off-by: Geetha sowjanya 
> Signed-off-by: Sunil Goutham 
> 
> [...]

Here is the summary with links:
  - [net-next,v2] octeontx2-af: cn10k: Fixes CN10K RPM reference issue
https://git.kernel.org/netdev/net-next/c/786621d20023

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] tg3: Remove unused PHY_BRCM flags

2021-02-16 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Tue, 16 Feb 2021 11:08:37 -0800 you wrote:
> The tg3 driver tried to communicate towards the PHY driver whether it
> wanted RGMII in-band signaling enabled or disabled however there is
> nothing that looks at those flags in drivers/net/phy/broadcom.c so this
> does do not anything.
> 
> Suggested-by: Vladimir Oltean 
> Signed-off-by: Florian Fainelli 
> 
> [...]

Here is the summary with links:
  - tg3: Remove unused PHY_BRCM flags
https://git.kernel.org/netdev/net-next/c/32aeba1f7a98

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net-next v4 0/8] bridge: mrp: Extend br_mrp_switchdev_*

2021-02-16 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Tue, 16 Feb 2021 22:41:57 +0100 you wrote:
> This patch series extends MRP switchdev to allow the SW to have a better
> understanding if the HW can implement the MRP functionality or it needs
> to help the HW to run it. There are 3 cases:
> - when HW can't implement at all the functionality.
> - when HW can implement a part of the functionality but needs the SW
>   implement the rest. For example if it can't detect when it stops
>   receiving MRP Test frames but it can copy the MRP frames to CPU to
>   allow the SW to determine this.  Another example is generating the MRP
>   Test frames. If HW can't do that then the SW is used as backup.
> - when HW can implement completely the functionality.
> 
> [...]

Here is the summary with links:
  - [net-next,v4,1/8] switchdev: mrp: Remove CONFIG_BRIDGE_MRP
https://git.kernel.org/netdev/net-next/c/405be6b46b70
  - [net-next,v4,2/8] switchdev: mrp: Extend ring_role_mrp and in_role_mrp
https://git.kernel.org/netdev/net-next/c/c513efa20c52
  - [net-next,v4,3/8] bridge: mrp: Add 'enum br_mrp_hw_support'
https://git.kernel.org/netdev/net-next/c/e1bd99d07e61
  - [net-next,v4,4/8] bridge: mrp: Extend br_mrp_switchdev to detect better the 
errors
https://git.kernel.org/netdev/net-next/c/1a3ddb0b7516
  - [net-next,v4,5/8] bridge: mrp: Update br_mrp to use new return values of 
br_mrp_switchdev
https://git.kernel.org/netdev/net-next/c/cd605d455a44
  - [net-next,v4,6/8] net: mscc: ocelot: Add support for MRP
https://git.kernel.org/netdev/net-next/c/d8ea7ff3995e
  - [net-next,v4,7/8] net: dsa: add MRP support
https://git.kernel.org/netdev/net-next/c/c595c4330da0
  - [net-next,v4,8/8] net: dsa: felix: Add support for MRP
https://git.kernel.org/netdev/net-next/c/a026c50b599f

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] drivers: net: xilinx_emaclite: remove arch limitation

2021-02-16 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Tue, 16 Feb 2021 22:33:42 + you wrote:
> The changes made in eccd540 is enough for xilinx_emaclite to run
> without problem on 64-bit systems. I have tested it on a Xilinx
> FPGA with RV64 softcore. The architecture limitation in Kconfig
> seems no longer necessary.
> 
> A small change is included to print address with %lx instead of
> casting to int and print with %x.
> 
> [...]

Here is the summary with links:
  - drivers: net: xilinx_emaclite: remove arch limitation
https://git.kernel.org/netdev/net-next/c/18af77c50fed

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] net/rds: Avoid potential use after free in rds_send_remove_from_sock

2021-04-07 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Tue,  6 Apr 2021 19:09:12 -0500 you wrote:
> In case of rs failure in rds_send_remove_from_sock(), the 'rm' resource
> is freed and later under spinlock, causing potential use-after-free.
> Set the free pointer to NULL to avoid undefined behavior.
> 
> Signed-off-by: Aditya Pakki 
> ---
>  net/rds/message.c | 1 +
>  net/rds/send.c| 2 +-
>  2 files changed, 2 insertions(+), 1 deletion(-)

Here is the summary with links:
  - net/rds: Avoid potential use after free in rds_send_remove_from_sock
https://git.kernel.org/netdev/net/c/0c85a7e87465

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH v2 net-next] stmmac: intel: Enable SERDES PHY rx clk for PSE

2021-04-07 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Tue,  6 Apr 2021 09:32:50 +0800 you wrote:
> EHL PSE SGMII mode requires to ungate the SERDES PHY rx clk for power up
> sequence and vice versa.
> 
> Signed-off-by: Voon Weifeng 
> ---
> Changes:
>  v1 -> v2
>  -change subject from "net: intel" to "stmmac: intel"
> 
> [...]

Here is the summary with links:
  - [v2,net-next] stmmac: intel: Enable SERDES PHY rx clk for PSE
https://git.kernel.org/netdev/net-next/c/017d6250ad71

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] nfc/fdp: remove unnecessary assignment and label

2021-04-07 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Wed,  7 Apr 2021 11:16:38 +0800 you wrote:
> From: wengjianfeng 
> 
> In function fdp_nci_patch_otp and fdp_nci_patch_ram,many goto
> out statements are used, and out label just return variable r.
> in some places,just jump to the out label, and in other places,
> assign a value to the variable r,then jump to the out label.
> It is unnecessary, we just use return sentences to replace goto
> sentences and delete out label.
> 
> [...]

Here is the summary with links:
  - nfc/fdp: remove unnecessary assignment and label
https://git.kernel.org/netdev/net-next/c/872fff333fb1

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH v2] net: tipc: Fix spelling errors in net/tipc module

2021-04-07 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Wed, 7 Apr 2021 09:59:45 +0800 you wrote:
> These patches fix a series of spelling errors in net/tipc module.
> 
> Reported-by: Hulk Robot 
> Signed-off-by: Zheng Yongjun 
> ---
>  net/tipc/bearer.h | 6 +++---
>  net/tipc/net.c| 2 +-
>  net/tipc/node.c   | 2 +-
>  3 files changed, 5 insertions(+), 5 deletions(-)

Here is the summary with links:
  - [v2] net: tipc: Fix spelling errors in net/tipc module
https://git.kernel.org/netdev/net/c/a79ace4b3129

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net-next] net: wan: z85230: drop unused async state

2021-04-07 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Wed,  7 Apr 2021 12:48:56 +0200 you wrote:
> According to the changelog, asynchronous mode was dropped sometime
> before v2.2. Let's get rid of the unused driver-specific async state as
> well so that it doesn't show up when doing tree-wide tty work.
> 
> Signed-off-by: Johan Hovold 
> ---
>  drivers/net/wan/z85230.h | 39 ---
>  1 file changed, 39 deletions(-)

Here is the summary with links:
  - [net-next] net: wan: z85230: drop unused async state
https://git.kernel.org/netdev/net-next/c/a18f19e91201

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] liquidio: Fix unintented sign extension of a left shift of a u16

2021-04-07 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Wed,  7 Apr 2021 11:12:48 +0100 you wrote:
> From: Colin Ian King 
> 
> The macro CN23XX_PEM_BAR1_INDEX_REG is being used to shift oct->pcie_port
> (a u16) left 24 places. There are two subtle issues here, first the
> shift gets promoted to an signed int and then sign extended to a u64.
> If oct->pcie_port is 0x80 or more then the upper bits get sign extended
> to 1. Secondly shfiting a u16 24 bits will lead to an overflow so it
> needs to be cast to a u64 for all the bits to not overflow.
> 
> [...]

Here is the summary with links:
  - liquidio: Fix unintented sign extension of a left shift of a u16
https://git.kernel.org/netdev/net-next/c/298b58f00c0f

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] xircom: remove redundant error check on variable err

2021-04-07 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Wed,  7 Apr 2021 10:39:22 +0100 you wrote:
> From: Colin Ian King 
> 
> The error check on err is always false as err is always 0 at the
> port_found label. The code is redundant and can be removed.
> 
> Addresses-Coverity: ("Logically dead code")
> Signed-off-by: Colin Ian King 
> 
> [...]

Here is the summary with links:
  - xircom: remove redundant error check on variable err
https://git.kernel.org/netdev/net-next/c/7b3ae17f0f68

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH v2] net: hso: fix null-ptr-deref during tty device unregistration

2021-04-07 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Wed,  7 Apr 2021 22:57:22 +0530 you wrote:
> Multiple ttys try to claim the same the minor number causing a double
> unregistration of the same device. The first unregistration succeeds
> but the next one results in a null-ptr-deref.
> 
> The get_free_serial_index() function returns an available minor number
> but doesn't assign it immediately. The assignment is done by the caller
> later. But before this assignment, calls to get_free_serial_index()
> would return the same minor number.
> 
> [...]

Here is the summary with links:
  - [v2] net: hso: fix null-ptr-deref during tty device unregistration
https://git.kernel.org/netdev/net/c/8a12f8836145

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] net: sched: sch_teql: fix null-pointer dereference

2021-04-08 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Thu,  8 Apr 2021 18:14:31 +0300 you wrote:
> Reproduce:
> 
>   modprobe sch_teql
>   tc qdisc add dev teql0 root teql0
> 
> This leads to (for instance in Centos 7 VM) OOPS:
> 
> [...]

Here is the summary with links:
  - net: sched: sch_teql: fix null-pointer dereference
https://git.kernel.org/netdev/net/c/1ffbc7ea9160

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net v2 0/2] lantiq: GSWIP: two more fixes

2021-04-08 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net.git (refs/heads/master):

On Thu,  8 Apr 2021 20:38:26 +0200 you wrote:
> Hello,
> 
> after my last patch got accepted and is now in net as commit
> 3e6fdeb28f4c33 ("net: dsa: lantiq_gswip: Let GSWIP automatically set
> the xMII clock") [0] some more people from the OpenWrt community
> (many thanks to everyone involved) helped test the GSWIP driver: [1]
> 
> [...]

Here is the summary with links:
  - [net,v2,1/2] net: dsa: lantiq_gswip: Don't use PHY auto polling
https://git.kernel.org/netdev/net/c/3e9005be8777
  - [net,v2,2/2] net: dsa: lantiq_gswip: Configure all remaining GSWIP_MII_CFG 
bits
https://git.kernel.org/netdev/net/c/4b5923249b8f

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] net: ipv6: check for validity before dereferencing cfg->fc_nlinfo.nlh

2021-04-08 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Fri, 9 Apr 2021 03:01:29 +0500 you wrote:
> nlh is being checked for validtity two times when it is dereferenced in
> this function. Check for validity again when updating the flags through
> nlh pointer to make the dereferencing safe.
> 
> CC: 
> Addresses-Coverity: ("NULL pointer dereference")
> Signed-off-by: Muhammad Usama Anjum 
> 
> [...]

Here is the summary with links:
  - net: ipv6: check for validity before dereferencing cfg->fc_nlinfo.nlh
https://git.kernel.org/netdev/net/c/864db232dc70

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH iproute2-next V4] devlink: add support for port params get/set

2021-02-11 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to iproute2/iproute2-next.git (refs/heads/main):

On Tue,  9 Feb 2021 12:31:51 +0200 you wrote:
> Add implementation for the port parameters
> getting/setting.
> Add bash completion for port param.
> Add man description for port param.
> 
> Signed-off-by: Oleksandr Mazur 
> 
> [...]

Here is the summary with links:
  - [iproute2-next,V4] devlink: add support for port params get/set

https://git.kernel.org/pub/scm/network/iproute2/iproute2-next.git/commit/?id=c946f5d3e414

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net-next v4 0/9] net: phy: icplus: cleanups and new features

2021-02-11 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Thu, 11 Feb 2021 08:47:41 +0100 you wrote:
> Cleanup the PHY drivers for IPplus devices and add PHY counters and MDIX
> support for the IP101A/G.
> 
> Patch 5 adds a model detection based on the behavior of the PHY.
> Unfortunately, the IP101A shares the PHY ID with the IP101G. But the latter
> provides more features. Try to detect the newer model by accessing the page
> selection register. If it is writeable, it is assumed, that it is a IP101G.
> 
> [...]

Here is the summary with links:
  - [net-next,v4,1/9] net: phy: icplus: use PHY_ID_MATCH_MODEL() macro
https://git.kernel.org/netdev/net-next/c/2ad4758cec48
  - [net-next,v4,2/9] net: phy: icplus: use PHY_ID_MATCH_EXACT() for IP101A/G
https://git.kernel.org/netdev/net-next/c/7360a4de36a4
  - [net-next,v4,3/9] net: phy: icplus: drop address operator for functions
https://git.kernel.org/netdev/net-next/c/8edf206cc2b5
  - [net-next,v4,4/9] net: phy: icplus: use the .soft_reset() of the phy-core
https://git.kernel.org/netdev/net-next/c/df22de9a6f13
  - [net-next,v4,5/9] net: phy: icplus: split IP101A/G driver
https://git.kernel.org/netdev/net-next/c/675115bf8c3d
  - [net-next,v4,6/9] net: phy: icplus: don't set APS_EN bit on IP101G
https://git.kernel.org/netdev/net-next/c/eeac7d43d4dd
  - [net-next,v4,7/9] net: phy: icplus: fix paged register access
https://git.kernel.org/netdev/net-next/c/f9bc51e6cce2
  - [net-next,v4,8/9] net: phy: icplus: add PHY counter for IP101G
https://git.kernel.org/netdev/net-next/c/a0750d42e951
  - [net-next,v4,9/9] net: phy: icplus: add MDI/MDIX support for IP101A/G
https://git.kernel.org/netdev/net-next/c/32ab60e53920

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH v13 net-next 00/15] net: mvpp2: Add TX Flow Control support

2021-02-11 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Thu, 11 Feb 2021 12:48:47 +0200 you wrote:
> From: Stefan Chulski 
> 
> Armada hardware has a pause generation mechanism in GOP (MAC).
> The GOP generate flow control frames based on an indication programmed in 
> Ports Control 0 Register. There is a bit per port.
> However assertion of the PortX Pause bits in the ports control 0 register 
> only sends a one time pause.
> To complement the function the GOP has a mechanism to periodically send pause 
> control messages based on periodic counters.
> This mechanism ensures that the pause is effective as long as the Appropriate 
> PortX Pause is asserted.
> 
> [...]

Here is the summary with links:
  - [v13,net-next,01/15] doc: marvell: add CM3 address space and PPv2.3 
description
https://git.kernel.org/netdev/net-next/c/1c2b4812b7da
  - [v13,net-next,02/15] dts: marvell: add CM3 SRAM memory to cp11x ethernet 
device tree
https://git.kernel.org/netdev/net-next/c/60523583b07c
  - [v13,net-next,03/15] net: mvpp2: add CM3 SRAM memory map
https://git.kernel.org/netdev/net-next/c/e54ad1e01c00
  - [v13,net-next,04/15] net: mvpp2: always compare hw-version vs MVPP21
https://git.kernel.org/netdev/net-next/c/60dcd6b7d96e
  - [v13,net-next,05/15] net: mvpp2: add PPv23 version definition
https://git.kernel.org/netdev/net-next/c/6af27a1dc422
  - [v13,net-next,06/15] net: mvpp2: increase BM pool and RXQ size
https://git.kernel.org/netdev/net-next/c/d07ea73f37f9
  - [v13,net-next,07/15] net: mvpp2: add FCA periodic timer configurations
https://git.kernel.org/netdev/net-next/c/2788d8418af5
  - [v13,net-next,08/15] net: mvpp2: add FCA RXQ non occupied descriptor 
threshold
https://git.kernel.org/netdev/net-next/c/bf270fa3c445
  - [v13,net-next,09/15] net: mvpp2: enable global flow control
https://git.kernel.org/netdev/net-next/c/a59d354208a7
  - [v13,net-next,10/15] net: mvpp2: add RXQ flow control configurations
https://git.kernel.org/netdev/net-next/c/3bd17fdc08e9
  - [v13,net-next,11/15] net: mvpp2: add ethtool flow control configuration 
support
https://git.kernel.org/netdev/net-next/c/76055831cf84
  - [v13,net-next,12/15] net: mvpp2: add BM protection underrun feature support
https://git.kernel.org/netdev/net-next/c/eb30b269549a
  - [v13,net-next,13/15] net: mvpp2: add PPv23 RX FIFO flow control
https://git.kernel.org/netdev/net-next/c/aca0e23584c9
  - [v13,net-next,14/15] net: mvpp2: set 802.3x GoP Flow Control mode
https://git.kernel.org/netdev/net-next/c/262412d55acd
  - [v13,net-next,15/15] net: mvpp2: add TX FC firmware check
https://git.kernel.org/netdev/net-next/c/9ca5e767ec34

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [net-next v6 00/14] Add Marvell CN10K support

2021-02-11 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Thu, 11 Feb 2021 21:28:20 +0530 you wrote:
> The current admin function (AF) driver and the netdev driver supports
> OcteonTx2 silicon variants. The same OcteonTx2's
> Resource Virtualization Unit (RVU) is carried forward to the next-gen
> silicon ie OcteonTx3, with some changes and feature enhancements.
> 
> This patch set adds support for OcteonTx3 (CN10K) silicon and gets
> the drivers to the same level as OcteonTx2. No new OcteonTx3 specific
> features are added.
> 
> [...]

Here is the summary with links:
  - [net-next,v6,01/14] octeontx2-af: cn10k: Add mbox support for CN10K platform
https://git.kernel.org/netdev/net-next/c/98c561116360
  - [net-next,v6,02/14] octeontx2-pf: cn10k: Add mbox support for CN10K
https://git.kernel.org/netdev/net-next/c/facede8209ef
  - [net-next,v6,03/14] octeontx2-af: cn10k: Update NIX/NPA context structure
https://git.kernel.org/netdev/net-next/c/30077d210c83
  - [net-next,v6,04/14] octeontx2-af: cn10k: Update NIX and NPA context in 
debugfs
https://git.kernel.org/netdev/net-next/c/3feac505fb31
  - [net-next,v6,05/14] octeontx2-pf: cn10k: Initialise NIX context
https://git.kernel.org/netdev/net-next/c/d21a857562ad
  - [net-next,v6,06/14] octeontx2-pf: cn10k: Map LMTST region
https://git.kernel.org/netdev/net-next/c/6e8ad4387da5
  - [net-next,v6,07/14] octeontx2-pf: cn10k: Use LMTST lines for NPA/NIX 
operations
https://git.kernel.org/netdev/net-next/c/4c236d5dc8b8
  - [net-next,v6,08/14] octeontx2-af: cn10k: Add RPM MAC support
https://git.kernel.org/netdev/net-next/c/91c6945ea1f9
  - [net-next,v6,09/14] octeontx2-af: cn10k: Add support for programmable 
channels
https://git.kernel.org/netdev/net-next/c/242da439214b
  - [net-next,v6,10/14] octeontx2-af: cn10K: Add MTU configuration
https://git.kernel.org/netdev/net-next/c/6e54e1c5399a
  - [net-next,v6,11/14] octeontx2-pf: cn10k: Get max mtu supported from admin 
function
https://git.kernel.org/netdev/net-next/c/ab58a416c93f
  - [net-next,v6,12/14] octeontx2-af: cn10k: Add RPM LMAC pause frame support
https://git.kernel.org/netdev/net-next/c/1845ada47f6d
  - [net-next,v6,13/14] octeontx2-af: cn10k: Add RPM Rx/Tx stats support
https://git.kernel.org/netdev/net-next/c/ce7a6c3106de
  - [net-next,v6,14/14] octeontx2-af: cn10k: MAC internal loopback support
https://git.kernel.org/netdev/net-next/c/3ad3f8f93c81

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH v2 0/4] net: ti: am65-cpsw-nuss: Add switchdev driver

2021-02-11 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Thu, 11 Feb 2021 16:26:40 +0530 you wrote:
> This series adds switchdev support for AM65 CPSW NUSS driver to support
> multi port CPSW present on J721e and AM64 SoCs.
> It adds devlink hook to switch b/w switch mode and multi mac mode.
> 
> v2:
> Rebased on latest net-next
> Update patch 1/4 with rationale for using devlink
> 
> [...]

Here is the summary with links:
  - [v2,1/4] net: ti: am65-cpsw-nuss: Add devlink support
https://git.kernel.org/netdev/net-next/c/58356eb31d60
  - [v2,2/4] net: ti: am65-cpsw-nuss: Add netdevice notifiers
https://git.kernel.org/netdev/net-next/c/2934db9bcb30
  - [v2,3/4] net: ti: am65-cpsw-nuss: Add switchdev support
https://git.kernel.org/netdev/net-next/c/86e8b070b25e
  - [v2,4/4] docs: networking: ti: Add driver doc for AM65 NUSS switch driver
https://git.kernel.org/netdev/net-next/c/e276cfb9cd5b

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH v2] enetc: auto select PHYLIB and MDIO_DEVRES

2021-02-11 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Thu, 11 Feb 2021 12:54:11 -0500 you wrote:
> FSL_ENETC_MDIO use symbols from PHYLIB (MDIO_BUS) and MDIO_DEVRES,
> however there are no dependency specified in Kconfig
> 
> ERROR: modpost: "__mdiobus_register" 
> [drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio.ko] undefined!
> ERROR: modpost: "mdiobus_unregister" 
> [drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio.ko] undefined!
> ERROR: modpost: "devm_mdiobus_alloc_size" 
> [drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio.ko] undefined!
> 
> [...]

Here is the summary with links:
  - [v2] enetc: auto select PHYLIB and MDIO_DEVRES
https://git.kernel.org/netdev/net/c/e185ea30df1f

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH bpf-next v7 1/5] bpf: Be less specific about socket cookies guarantees

2021-02-11 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to bpf/bpf-next.git (refs/heads/master):

On Wed, 10 Feb 2021 12:14:02 +0100 you wrote:
> Since "92acdc58ab11 bpf, net: Rework cookie generator as per-cpu one"
> socket cookies are not guaranteed to be non-decreasing. The
> bpf_get_socket_cookie helper descriptions are currently specifying that
> cookies are non-decreasing but we don't want users to rely on that.
> 
> Reported-by: Daniel Borkmann 
> Signed-off-by: Florent Revest 
> Acked-by: KP Singh 
> 
> [...]

Here is the summary with links:
  - [bpf-next,v7,1/5] bpf: Be less specific about socket cookies guarantees
https://git.kernel.org/bpf/bpf-next/c/07881ccbf40c
  - [bpf-next,v7,2/5] bpf: Expose bpf_get_socket_cookie to tracing programs
https://git.kernel.org/bpf/bpf-next/c/c5dbb89fc2ac
  - [bpf-next,v7,3/5] selftests/bpf: Integrate the socket_cookie test to 
test_progs
https://git.kernel.org/bpf/bpf-next/c/61f8c9c8f3c8
  - [bpf-next,v7,4/5] selftests/bpf: Use vmlinux.h in socket_cookie_prog.c
https://git.kernel.org/bpf/bpf-next/c/6cd4dcc3fb81
  - [bpf-next,v7,5/5] selftests/bpf: Add a selftest for the tracing 
bpf_get_socket_cookie
https://git.kernel.org/bpf/bpf-next/c/6fdd671baaf5

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH v3 net-next 0/5] net: ipa: some more cleanup

2021-02-12 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Fri, 12 Feb 2021 08:33:57 -0600 you wrote:
> Version 3 of this series uses dev_err_probe() in the second patch,
> as suggested by Heiner Kallweit.
> 
> Version 2 was sent to ensure the series was based on current
> net-next/master, and added copyright updates to files touched.
> 
> The original introduction is below.
> 
> [...]

Here is the summary with links:
  - [v3,net-next,1/5] net: ipa: use a separate pointer for adjusted GSI memory
https://git.kernel.org/netdev/net-next/c/571b1e7e58ad
  - [v3,net-next,2/5] net: ipa: use dev_err_probe() in ipa_clock.c
https://git.kernel.org/netdev/net-next/c/4c7ccfcd09fd
  - [v3,net-next,3/5] net: ipa: fix register write command validation
https://git.kernel.org/netdev/net-next/c/2d65ed76924b
  - [v3,net-next,4/5] net: ipa: introduce ipa_table_hash_support()
https://git.kernel.org/netdev/net-next/c/a266ad6b5deb
  - [v3,net-next,5/5] net: ipa: introduce gsi_channel_initialized()
https://git.kernel.org/netdev/net-next/c/6170b6dab2d4

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH v5 net-next 00/10] Cleanup in brport flags switchdev offload for DSA

2021-02-12 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Fri, 12 Feb 2021 17:15:50 +0200 you wrote:
> From: Vladimir Oltean 
> 
> The initial goal of this series was to have better support for
> standalone ports mode on the DSA drivers like ocelot/felix and sja1105.
> This turned out to require some API adjustments in both directions:
> to the information presented to and by the switchdev notifier, and to
> the API presented to the switch drivers by the DSA layer.
> 
> [...]

Here is the summary with links:
  - [v5,net-next,01/10] net: switchdev: propagate extack to port attributes
https://git.kernel.org/netdev/net-next/c/4c08c586ff29
  - [v5,net-next,02/10] net: bridge: offload all port flags at once in 
br_setport
https://git.kernel.org/netdev/net-next/c/304ae3bf1c1a
  - [v5,net-next,03/10] net: bridge: don't print in br_switchdev_set_port_flag
https://git.kernel.org/netdev/net-next/c/078bbb851ea6
  - [v5,net-next,04/10] net: dsa: configure better brport flags when ports 
leave the bridge
https://git.kernel.org/netdev/net-next/c/5e38c15856e9
  - [v5,net-next,05/10] net: switchdev: pass flags and mask to both 
{PRE_,}BRIDGE_FLAGS attributes
https://git.kernel.org/netdev/net-next/c/e18f4c18ab5b
  - [v5,net-next,06/10] net: dsa: act as passthrough for bridge port flags
https://git.kernel.org/netdev/net-next/c/a8b659e7ff75
  - [v5,net-next,07/10] net: dsa: felix: restore multicast flood to CPU when 
NPI tagger reinitializes
https://git.kernel.org/netdev/net-next/c/6edb9e8d451e
  - [v5,net-next,08/10] net: mscc: ocelot: use separate flooding PGID for 
broadcast
https://git.kernel.org/netdev/net-next/c/b360d94f1b86
  - [v5,net-next,09/10] net: mscc: ocelot: offload bridge port flags to device
https://git.kernel.org/netdev/net-next/c/421741ea5672
  - [v5,net-next,10/10] net: dsa: sja1105: offload bridge port flags to device
https://git.kernel.org/netdev/net-next/c/4d9423549501

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH v6 net-next 00/11] skbuff: introduce skbuff_heads bulking and reusing

2021-02-13 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Sat, 13 Feb 2021 14:10:43 + you wrote:
> Currently, all sorts of skb allocation always do allocate
> skbuff_heads one by one via kmem_cache_alloc().
> On the other hand, we have percpu napi_alloc_cache to store
> skbuff_heads queued up for freeing and flush them by bulks.
> 
> We can use this cache not only for bulk-wiping, but also to obtain
> heads for new skbs and avoid unconditional allocations, as well as
> for bulk-allocating (like XDP's cpumap code and veth driver already
> do).
> 
> [...]

Here is the summary with links:
  - [v6,net-next,01/11] skbuff: move __alloc_skb() next to the other skb 
allocation functions
https://git.kernel.org/netdev/net-next/c/5381b23d5bf9
  - [v6,net-next,02/11] skbuff: simplify kmalloc_reserve()
https://git.kernel.org/netdev/net-next/c/ef28095fce66
  - [v6,net-next,03/11] skbuff: make __build_skb_around() return void
https://git.kernel.org/netdev/net-next/c/483126b3b2c6
  - [v6,net-next,04/11] skbuff: simplify __alloc_skb() a bit
https://git.kernel.org/netdev/net-next/c/df1ae022af2c
  - [v6,net-next,05/11] skbuff: use __build_skb_around() in __alloc_skb()
https://git.kernel.org/netdev/net-next/c/f9d6725bf44a
  - [v6,net-next,06/11] skbuff: remove __kfree_skb_flush()
https://git.kernel.org/netdev/net-next/c/fec6e49b6398
  - [v6,net-next,07/11] skbuff: move NAPI cache declarations upper in the file
https://git.kernel.org/netdev/net-next/c/50fad4b543b3
  - [v6,net-next,08/11] skbuff: introduce {,__}napi_build_skb() which reuses 
NAPI cache heads
https://git.kernel.org/netdev/net-next/c/f450d539c05a
  - [v6,net-next,09/11] skbuff: allow to optionally use NAPI cache from 
__alloc_skb()
https://git.kernel.org/netdev/net-next/c/d13612b58e64
  - [v6,net-next,10/11] skbuff: allow to use NAPI cache from __napi_alloc_skb()
https://git.kernel.org/netdev/net-next/c/cfb8ec659521
  - [v6,net-next,11/11] skbuff: queue NAPI_MERGED_FREE skbs into NAPI cache 
instead of freeing
https://git.kernel.org/netdev/net-next/c/9243adfc311a

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net] net: ag71xx: remove unnecessary MTU reservation

2021-02-22 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Thu, 18 Feb 2021 11:45:14 +0800 you wrote:
> 2 bytes of the MTU are reserved for Atheros DSA tag, but DSA core
> has already handled that since commit dc0fe7d47f9f.
> Remove the unnecessary reservation.
> 
> Fixes: d51b6ce441d3 ("net: ethernet: add ag71xx driver")
> Signed-off-by: DENG Qingfang 
> 
> [...]

Here is the summary with links:
  - [net] net: ag71xx: remove unnecessary MTU reservation
https://git.kernel.org/netdev/net/c/04b385f32508

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [net-next] net: mvpp2: skip RSS configurations on loopback port

2021-02-22 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Thu, 18 Feb 2021 14:42:03 +0200 you wrote:
> From: Stefan Chulski 
> 
> PPv2 loopback port doesn't support RSS, so we should
> skip RSS configurations for this port.
> 
> Signed-off-by: Stefan Chulski 
> 
> [...]

Here is the summary with links:
  - [net-next] net: mvpp2: skip RSS configurations on loopback port
https://git.kernel.org/netdev/net/c/0a8a800027f1

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net-next] net: dsa: Fix dependencies with HSR

2021-02-22 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Fri, 19 Feb 2021 21:12:21 -0800 you wrote:
> The core DSA framework uses hsr_is_master() which would not resolve to a
> valid symbol if HSR is built-into the kernel and DSA is a module.
> 
> Fixes: 18596f504a3e ("net: dsa: add support for offloading HSR")
> Reported-by: kernel test robot 
> Signed-off-by: Florian Fainelli 
> 
> [...]

Here is the summary with links:
  - [net-next] net: dsa: Fix dependencies with HSR
https://git.kernel.org/netdev/net/c/94ead4caa061

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net 1/1] net: stmmac: fix CBS idleslope and sendslope calculation

2021-02-22 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Thu, 18 Feb 2021 21:40:53 +0800 you wrote:
> From: "Song, Yoong Siang" 
> 
> When link speed is not 100 Mbps, port transmit rate and speed divider
> are set to 8 and 100 respectively. These values are incorrect for
> CBS idleslope and sendslope HW values calculation if the link speed is
> not 1 Gbps.
> 
> [...]

Here is the summary with links:
  - [net,1/1] net: stmmac: fix CBS idleslope and sendslope calculation
https://git.kernel.org/netdev/net/c/24877687b375

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] net/mlx4_core: Add missed mlx4_free_cmd_mailbox()

2021-02-22 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Sun, 21 Feb 2021 22:35:59 +0800 you wrote:
> mlx4_do_mirror_rule() forgets to call mlx4_free_cmd_mailbox() to
> free the memory region allocated by mlx4_alloc_cmd_mailbox() before
> an exit.
> Add the missed call to fix it.
> 
> Fixes: 78efed275117 ("net/mlx4_core: Support mirroring VF DMFS rules on both 
> ports")
> Signed-off-by: Chuhong Yuan 
> 
> [...]

Here is the summary with links:
  - net/mlx4_core: Add missed mlx4_free_cmd_mailbox()
https://git.kernel.org/netdev/net/c/8eb65fda4a6d

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] Marvell Sky2 Ethernet adapter: fix warning messages.

2021-02-23 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Thu, 18 Feb 2021 13:34:42 +0100 you wrote:
> sky2.c driver uses netdev_warn() before the net device is initialized.
> Fix it by using dev_warn() instead.
> 
> Signed-off-by: Krzysztof Halasa 

Here is the summary with links:
  - Marvell Sky2 Ethernet adapter: fix warning messages.
https://git.kernel.org/netdev/net/c/18755e270666

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net-next 0/4] r8152: minor adjustments

2021-02-23 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net.git (refs/heads/master):

On Fri, 19 Feb 2021 17:04:39 +0800 you wrote:
> These patches are used to adjust the code.
> 
> Hayes Wang (4):
>   r8152: enable U1/U2 for USB_SPEED_SUPER
>   r8152: check if the pointer of the function exists
>   r8152: replace netif_err with dev_err
>   r8152: spilt rtl_set_eee_plus and r8153b_green_en
> 
> [...]

Here is the summary with links:
  - [net-next,1/4] r8152: enable U1/U2 for USB_SPEED_SUPER
https://git.kernel.org/netdev/net/c/7a0ae61acde2
  - [net-next,2/4] r8152: check if the pointer of the function exists
https://git.kernel.org/netdev/net/c/c79515e47935
  - [net-next,3/4] r8152: replace netif_err with dev_err
https://git.kernel.org/netdev/net/c/156c32076112
  - [net-next,4/4] r8152: spilt rtl_set_eee_plus and r8153b_green_en
https://git.kernel.org/netdev/net/c/40fa7568ac23

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net v4 1/1] net: introduce CAN specific pointer in the struct net_device

2021-02-24 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Tue, 23 Feb 2021 08:01:26 +0100 you wrote:
> Since 20dd3850bcf8 ("can: Speed up CAN frame receiption by using
> ml_priv") the CAN framework uses per device specific data in the AF_CAN
> protocol. For this purpose the struct net_device->ml_priv is used. Later
> the ml_priv usage in CAN was extended for other users, one of them being
> CAN_J1939.
> 
> Later in the kernel ml_priv was converted to an union, used by other
> drivers. E.g. the tun driver started storing it's stats pointer.
> 
> [...]

Here is the summary with links:
  - [net,v4,1/1] net: introduce CAN specific pointer in the struct net_device
https://git.kernel.org/netdev/net/c/4e096a18867a

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net v2] vsock: fix locking in vsock_shutdown()

2021-02-09 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Tue,  9 Feb 2021 09:52:19 +0100 you wrote:
> In vsock_shutdown() we touched some socket fields without holding the
> socket lock, such as 'state' and 'sk_flags'.
> 
> Also, after the introduction of multi-transport, we are accessing
> 'vsk->transport' in vsock_send_shutdown() without holding the lock
> and this call can be made while the connection is in progress, so
> the transport can change in the meantime.
> 
> [...]

Here is the summary with links:
  - [net,v2] vsock: fix locking in vsock_shutdown()
https://git.kernel.org/netdev/net/c/1c5fae9c9a09

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH bpf-next] selftests/bpf: Simplify the calculation of variables

2021-02-10 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to bpf/bpf-next.git (refs/heads/master):

On Tue,  9 Feb 2021 16:46:38 +0800 you wrote:
> Fix the following coccicheck warnings:
> 
> ./tools/testing/selftests/bpf/xdpxceiver.c:954:28-30: WARNING !A || A &&
> B is equivalent to !A || B.
> 
> ./tools/testing/selftests/bpf/xdpxceiver.c:932:28-30: WARNING !A || A &&
> B is equivalent to !A || B.
> 
> [...]

Here is the summary with links:
  - [bpf-next] selftests/bpf: Simplify the calculation of variables
https://git.kernel.org/bpf/bpf-next/c/bd2d4e6c6e9f

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net-next] rxrpc: Fix missing dependency on NET_UDP_TUNNEL

2021-02-10 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Tue, 09 Feb 2021 15:02:05 + you wrote:
> The changes to make rxrpc create the udp socket missed a bit to add the
> Kconfig dependency on the udp tunnel code to do this.
> 
> Fix this by adding making AF_RXRPC select NET_UDP_TUNNEL.
> 
> Fixes: 1a9b86c9fd95 ("rxrpc: use udp tunnel APIs instead of open code in 
> rxrpc_open_socket")
> Reported-by: kernel test robot 
> Signed-off-by: Vadim Fedorenko 
> Signed-off-by: David Howells 
> Reviewed-by: Xin Long 
> cc: a...@dev.mellanox.co.il
> cc: Jakub Kicinski 
> 
> [...]

Here is the summary with links:
  - [net-next] rxrpc: Fix missing dependency on NET_UDP_TUNNEL
https://git.kernel.org/netdev/net-next/c/dc0e6056decc

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [net-next] net: mvpp2: add an entry to skip parser

2021-02-10 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Wed, 10 Feb 2021 16:17:13 +0200 you wrote:
> From: Stefan Chulski 
> 
> This entry used when skipping the parser needed,
> for example, the custom header pretended to ethernet header.
> 
> Suggested-by: Liron Himi 
> Signed-off-by: Stefan Chulski 
> 
> [...]

Here is the summary with links:
  - [net-next] net: mvpp2: add an entry to skip parser
https://git.kernel.org/netdev/net-next/c/e4b62cf7559f

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH] bpf_lru_list: Read double-checked variable once without lock

2021-02-10 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to bpf/bpf-next.git (refs/heads/master):

On Tue,  9 Feb 2021 12:27:01 +0100 you wrote:
> For double-checked locking in bpf_common_lru_push_free(), node->type is
> read outside the critical section and then re-checked under the lock.
> However, concurrent writes to node->type result in data races.
> 
> For example, the following concurrent access was observed by KCSAN:
> 
>   write to 0x88801521bc22 of 1 bytes by task 10038 on cpu 1:
>__bpf_lru_node_move_inkernel/bpf/bpf_lru_list.c:91
>__local_list_flushkernel/bpf/bpf_lru_list.c:298
>...
>   read to 0x88801521bc22 of 1 bytes by task 10043 on cpu 0:
>bpf_common_lru_push_free  kernel/bpf/bpf_lru_list.c:507
>bpf_lru_push_free kernel/bpf/bpf_lru_list.c:555
>...
> 
> [...]

Here is the summary with links:
  - bpf_lru_list: Read double-checked variable once without lock
https://git.kernel.org/bpf/bpf-next/c/6df8fb83301d

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net-next] net: mdio: Remove of_phy_attach()

2021-02-17 Thread patchwork-bot+netdevbpf
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Wed, 17 Feb 2021 12:25:57 -0800 you wrote:
> We have no in-tree users, also update the sfp-phylink.rst documentation
> to indicate that phy_attach_direct() is used instead of of_phy_attach().
> 
> Signed-off-by: Florian Fainelli 
> ---
>  Documentation/networking/sfp-phylink.rst |  2 +-
>  drivers/net/mdio/of_mdio.c   | 30 
>  include/linux/of_mdio.h  | 10 
>  3 files changed, 1 insertion(+), 41 deletions(-)

Here is the summary with links:
  - [net-next] net: mdio: Remove of_phy_attach()
https://git.kernel.org/netdev/net-next/c/96313e1db8e5

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH net-next v2 0/5] dwmac-sun8i cleanup and shutdown hook

2021-02-17 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Tue, 16 Feb 2021 22:20:01 -0600 you wrote:
> These patches clean up some things I noticed while fixing suspend/resume
> behavior. The first four are minor code improvements. The last one adds
> a shutdown hook to minimize power consumption on boards without a PMIC.
> 
> Changes v1 to v2:
>   - Note the assumption of exclusive reset controller access in patch 3
> 
> [...]

Here is the summary with links:
  - [net-next,v2,1/5] net: stmmac: dwmac-sun8i: Return void from PHY unpower
https://git.kernel.org/netdev/net-next/c/557ef2dfb586
  - [net-next,v2,2/5] net: stmmac: dwmac-sun8i: Remove unnecessary PHY power 
check
https://git.kernel.org/netdev/net-next/c/afac1d34bfb4
  - [net-next,v2,3/5] net: stmmac: dwmac-sun8i: Use reset_control_reset
https://git.kernel.org/netdev/net-next/c/1c22f54696be
  - [net-next,v2,4/5] net: stmmac: dwmac-sun8i: Minor probe function cleanup
https://git.kernel.org/netdev/net-next/c/2743aa245038
  - [net-next,v2,5/5] net: stmmac: dwmac-sun8i: Add a shutdown callback
https://git.kernel.org/netdev/net-next/c/96be41d74f2e

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




Re: [PATCH v3 net-next 0/7] ptp: ptp_clockmatrix: Fix output 1 PPS alignment.

2021-02-17 Thread patchwork-bot+netdevbpf
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Wed, 17 Feb 2021 00:42:11 -0500 you wrote:
> From: Vincent Cheng 
> 
> This series fixes a race condition that may result in the output clock
> not aligned to internal 1 PPS clock.
> 
> Part of device initialization is to align the rising edge of output
> clocks to the internal rising edge of the 1 PPS clock.  If the system
> APLL and DPLL are not locked when this alignment occurs, the alignment
> fails and a fixed offset between the internal 1 PPS clock and the
> output clock occurs.
> 
> [...]

Here is the summary with links:
  - [v3,net-next,1/7] ptp: ptp_clockmatrix: Add wait_for_sys_apll_dpll_lock.
https://git.kernel.org/netdev/net-next/c/797d3186544f
  - [v3,net-next,2/7] ptp: ptp_clockmatrix: Add alignment of 1 PPS to 
idtcm_perout_enable.
https://git.kernel.org/netdev/net-next/c/e8b4d8b542b1
  - [v3,net-next,3/7] ptp: ptp_clockmatrix: Remove unused header declarations.
https://git.kernel.org/netdev/net-next/c/10c270cf25bd
  - [v3,net-next,4/7] ptp: ptp_clockmatrix: Clean-up dev_*() messages.
https://git.kernel.org/netdev/net-next/c/1c49d3e94778
  - [v3,net-next,5/7] ptp: ptp_clockmatrix: Coding style - tighten vertical 
spacing.
https://git.kernel.org/netdev/net-next/c/fcfd37573a09
  - [v3,net-next,6/7] ptp: ptp_clockmatrix: Simplify code - remove unnecessary 
`err` variable.
https://git.kernel.org/netdev/net-next/c/fde3b3a7069e
  - [v3,net-next,7/7] ptp: ptp_clockmatrix: clean-up - parenthesis around a == 
b are unnecessary
https://git.kernel.org/netdev/net-next/c/77fdb168a3e2

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html




  1   2   3   4   5   6   7   8   9   >