Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
authorJakub Kicinski <kuba@kernel.org>
Thu, 8 Feb 2024 23:20:37 +0000 (15:20 -0800)
committerJakub Kicinski <kuba@kernel.org>
Thu, 8 Feb 2024 23:30:33 +0000 (15:30 -0800)
Cross-merge networking fixes after downstream PR.

No conflicts.

Adjacent changes:

drivers/net/ethernet/stmicro/stmmac/common.h
  38cc3c6dcc09 ("net: stmmac: protect updates of 64-bit statistics counters")
  fd5a6a71313e ("net: stmmac: est: Per Tx-queue error count for HLBF")
  c5c3e1bfc9e0 ("net: stmmac: Offload queueMaxSDU from tc-taprio")

drivers/net/wireless/microchip/wilc1000/netdev.c
  c9013880284d ("wifi: fill in MODULE_DESCRIPTION()s for wilc1000")
  328efda22af8 ("wifi: wilc1000: do not realloc workqueue everytime an interface is added")

net/unix/garbage.c
  11498715f266 ("af_unix: Remove io_uring code for GC.")
  1279f9d9dec2 ("af_unix: Call kfree_skb() for dead unix_(sk)->oob_skb in GC.")

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
12 files changed:
1  2 
MAINTAINERS
drivers/net/ethernet/engleder/tsnep_main.c
drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c
drivers/net/ethernet/stmicro/stmmac/common.h
drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
drivers/net/wireless/microchip/wilc1000/netdev.c
include/net/netfilter/nf_tables.h
include/uapi/linux/netfilter/nf_tables.h
net/netfilter/nf_tables_api.c
net/unix/garbage.c

diff --cc MAINTAINERS
Simple merge
Simple merge
Simple merge
index 9b8473dd79a4b010c6ff5e93c9751d8a40be98a3,8f63f0b4bf0129c4704919f8742a052566943b1e..3e4b986de94b95bf3b3aac315c1674191ecb963c
@@@ -339,10 -301,40 +339,21 @@@ static void __unix_gc(struct work_struc
        /* Here we are. Hitlist is filled. Die. */
        __skb_queue_purge(&hitlist);
  
+ #if IS_ENABLED(CONFIG_AF_UNIX_OOB)
+       list_for_each_entry_safe(u, next, &gc_candidates, link) {
+               struct sk_buff *skb = u->oob_skb;
+               if (skb) {
+                       u->oob_skb = NULL;
+                       kfree_skb(skb);
+               }
+       }
+ #endif
        spin_lock(&unix_gc_lock);
  
 -      /* There could be io_uring registered files, just push them back to
 -       * the inflight list
 -       */
 -      list_for_each_entry_safe(u, next, &gc_candidates, link)
 -              list_move_tail(&u->link, &gc_inflight_list);
 -
        /* All candidates should have been detached by now. */
 -      BUG_ON(!list_empty(&gc_candidates));
 +      WARN_ON_ONCE(!list_empty(&gc_candidates));
  
        /* Paired with READ_ONCE() in wait_for_unix_gc(). */
        WRITE_ONCE(gc_in_progress, false);