1. 16 Jun, 2023 18 commits
    • Jakub Kicinski's avatar
      Merge branch 'optimize-procedure-of-changing-mac-address-on-interface' · 7deb0c3c
      Jakub Kicinski authored
      Piotr Gardocki says:
      
      ====================
      optimize procedure of changing MAC address on interface
      
      The first patch adds an if statement in core to skip early when
      the MAC address is not being changes.
      The remaining patches remove such checks from Intel drivers
      as they're redundant at this point.
      ====================
      
      Link: https://lore.kernel.org/r/20230614145302.902301-1-piotrx.gardocki@intel.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      7deb0c3c
    • Piotr Gardocki's avatar
      ice: remove unnecessary check for old MAC == new MAC · 96868cca
      Piotr Gardocki authored
      The check has been moved to core. The ndo_set_mac_address callback
      is not being called with new MAC address equal to the old one anymore.
      Signed-off-by: default avatarPiotr Gardocki <piotrx.gardocki@intel.com>
      Reviewed-by: default avatarSimon Horman <simon.horman@corigine.com>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      96868cca
    • Piotr Gardocki's avatar
      i40e: remove unnecessary check for old MAC == new MAC · c45a6d1a
      Piotr Gardocki authored
      The check has been moved to core. The ndo_set_mac_address callback
      is not being called with new MAC address equal to the old one anymore.
      Signed-off-by: default avatarPiotr Gardocki <piotrx.gardocki@intel.com>
      Reviewed-by: default avatarSimon Horman <simon.horman@corigine.com>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      c45a6d1a
    • Piotr Gardocki's avatar
      net: add check for current MAC address in dev_set_mac_address · ad72c4a0
      Piotr Gardocki authored
      In some cases it is possible for kernel to come with request
      to change primary MAC address to the address that is already
      set on the given interface.
      
      Add proper check to return fast from the function in these cases.
      
      An example of such case is adding an interface to bonding
      channel in balance-alb mode:
      modprobe bonding mode=balance-alb miimon=100 max_bonds=1
      ip link set bond0 up
      ifenslave bond0 <eth>
      Signed-off-by: default avatarPiotr Gardocki <piotrx.gardocki@intel.com>
      Reviewed-by: default avatarSimon Horman <simon.horman@corigine.com>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      ad72c4a0
    • Jakub Kicinski's avatar
      eth: fs_enet: fix print format for resource size · 8f72fb15
      Jakub Kicinski authored
      Randy reported that linux-next build warns on PowerPC:
      
      drivers/net/ethernet/freescale/fs_enet/mii-fec.c: In function 'fs_enet_mdio_probe':
      drivers/net/ethernet/freescale/fs_enet/mii-fec.c:130:50: warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'resource_size_t' {aka 'long long unsigned int'} [-Wformat=]
        130 |         snprintf(new_bus->id, MII_BUS_ID_SIZE, "%x", res.start);
            |                                                 ~^   ~~~~~~~~~
            |                                                  |      |
            |                                                  |      resource_size_t {aka long long unsigned int}
            |                                                  unsigned int
            |                                                 %llx
      
      Use the right print format.
      
      Link: https://lore.kernel.org/all/8f9f8d38-d9c7-9f1b-feb0-103d76902d14@infradead.org/Reported-by: default avatarRandy Dunlap <rdunlap@infradead.org>
      Acked-by: default avatarRandy Dunlap <rdunlap@infradead.org>
      Tested-by: Randy Dunlap <rdunlap@infradead.org> # build-tested
      Link: https://lore.kernel.org/r/20230615035231.2184880-1-kuba@kernel.orgSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      8f72fb15
    • David Howells's avatar
      splice, net: Fix splice_to_socket() to handle pipe bufs larger than a page · ca2d49f7
      David Howells authored
      splice_to_socket() assumes that a pipe_buffer won't hold more than a single
      page of data - but this assumption can be violated by skb_splice_bits()
      when it splices from a socket into a pipe.
      
      The problem is that splice_to_socket() doesn't advance the pipe_buffer
      length and offset when transcribing from the pipe buf into a bio_vec, so if
      the buf is >PAGE_SIZE, it keeps repeating the same initial chunk and
      doesn't advance the tail index.  It then subtracts this from "remain" and
      overcounts the amount of data to be sent.
      
      The cleanup phase then tries to overclean the pipe, hits an unused pipe buf
      and a NULL-pointer dereference occurs.
      
      Fix this by not restricting the bio_vec size to PAGE_SIZE and instead
      transcribing the entirety of each pipe_buffer into a single bio_vec and
      advancing the tail index if remain hasn't hit zero yet.
      
      Large bio_vecs will then be split up by iterator functions such as
      iov_iter_extract_pages().
      
      This resulted in a KASAN report looking like:
      
      general protection fault, probably for non-canonical address 0xdffffc0000000001: 0000 [#1] PREEMPT SMP KASAN
      KASAN: null-ptr-deref in range [0x0000000000000008-0x000000000000000f]
      ...
      RIP: 0010:pipe_buf_release include/linux/pipe_fs_i.h:203 [inline]
      RIP: 0010:splice_to_socket+0xa91/0xe30 fs/splice.c:933
      
      Fixes: 2dc334f1 ("splice, net: Use sendmsg(MSG_SPLICE_PAGES) rather than ->sendpage()")
      Reported-by: syzbot+f9e28a23426ac3b24f20@syzkaller.appspotmail.com
      Link: https://lore.kernel.org/r/0000000000000900e905fdeb8e39@google.com/
      Tested-by: syzbot+f9e28a23426ac3b24f20@syzkaller.appspotmail.com
      Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
      cc: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
      cc: David Ahern <dsahern@kernel.org>
      cc: Jens Axboe <axboe@kernel.dk>
      cc: Matthew Wilcox <willy@infradead.org>
      cc: Christian Brauner <brauner@kernel.org>
      cc: Alexander Viro <viro@zeniv.linux.org.uk>
      Link: https://lore.kernel.org/r/1428985.1686737388@warthog.procyon.org.ukSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      ca2d49f7
    • Stephen Rothwell's avatar
      sunvnet: fix sparc64 build error after gso code split · d9ffa069
      Stephen Rothwell authored
      After merging the net-next tree, today's linux-next build (sparc64
      defconfig) failed like this:
      
      drivers/net/ethernet/sun/sunvnet_common.c: In function 'vnet_handle_offloads':
      drivers/net/ethernet/sun/sunvnet_common.c:1277:16: error: implicit declaration of function 'skb_gso_segment'; did you mean 'skb_gso_reset'? [-Werror=implicit-function-declaration]
       1277 |         segs = skb_gso_segment(skb, dev->features & ~NETIF_F_TSO);
            |                ^~~~~~~~~~~~~~~
            |                skb_gso_reset
      drivers/net/ethernet/sun/sunvnet_common.c:1277:14: warning: assignment to 'struct sk_buff *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
       1277 |         segs = skb_gso_segment(skb, dev->features & ~NETIF_F_TSO);
            |              ^
      
      Fixes: d457a0e3 ("net: move gso declarations and functions to their own files")
      Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
      Reviewed-by: default avatarSimon Horman <simon.horman@corigine.com>
      Link: https://lore.kernel.org/r/20230613164639.164b2991@canb.auug.org.auSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      d9ffa069
    • David Arinzon's avatar
      net: ena: Add dynamic recycling mechanism for rx buffers · f7d625ad
      David Arinzon authored
      The current implementation allocates page-sized rx buffers.
      As traffic may consist of different types and sizes of packets,
      in various cases, buffers are not fully used.
      
      This change (Dynamic RX Buffers - DRB) uses part of the allocated rx
      page needed for the incoming packet, and returns the rest of the
      unused page to be used again as an rx buffer for future packets.
      A threshold of 2K for unused space has been set in order to declare
      whether the remainder of the page can be reused again as an rx buffer.
      
      As a page may be reused, dma_sync_single_for_cpu() is added in order
      to sync the memory to the CPU side after it was owned by the HW.
      In addition, when the rx page can no longer be reused, it is being
      unmapped using dma_page_unmap(), which implicitly syncs and then
      unmaps the entire page. In case the kernel still handles the skbs
      pointing to the previous buffers from that rx page, it may access
      garbage pointers, caused by the implicit sync overwriting them.
      The implicit dma sync is removed by replacing dma_page_unmap() with
      dma_unmap_page_attrs() with DMA_ATTR_SKIP_CPU_SYNC flag.
      
      The functionality is disabled for XDP traffic to avoid handling
      several descriptors per packet.
      Signed-off-by: default avatarArthur Kiyanovski <akiyano@amazon.com>
      Signed-off-by: default avatarShay Agroskin <shayagr@amazon.com>
      Signed-off-by: default avatarDavid Arinzon <darinzon@amazon.com>
      Link: https://lore.kernel.org/r/20230612121448.28829-1-darinzon@amazon.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      f7d625ad
    • Breno Leitao's avatar
      net: ioctl: Use kernel memory on protocol ioctl callbacks · e1d001fa
      Breno Leitao authored
      Most of the ioctls to net protocols operates directly on userspace
      argument (arg). Usually doing get_user()/put_user() directly in the
      ioctl callback.  This is not flexible, because it is hard to reuse these
      functions without passing userspace buffers.
      
      Change the "struct proto" ioctls to avoid touching userspace memory and
      operate on kernel buffers, i.e., all protocol's ioctl callbacks is
      adapted to operate on a kernel memory other than on userspace (so, no
      more {put,get}_user() and friends being called in the ioctl callback).
      
      This changes the "struct proto" ioctl format in the following way:
      
          int                     (*ioctl)(struct sock *sk, int cmd,
      -                                        unsigned long arg);
      +                                        int *karg);
      
      (Important to say that this patch does not touch the "struct proto_ops"
      protocols)
      
      So, the "karg" argument, which is passed to the ioctl callback, is a
      pointer allocated to kernel space memory (inside a function wrapper).
      This buffer (karg) may contain input argument (copied from userspace in
      a prep function) and it might return a value/buffer, which is copied
      back to userspace if necessary. There is not one-size-fits-all format
      (that is I am using 'may' above), but basically, there are three type of
      ioctls:
      
      1) Do not read from userspace, returns a result to userspace
      2) Read an input parameter from userspace, and does not return anything
        to userspace
      3) Read an input from userspace, and return a buffer to userspace.
      
      The default case (1) (where no input parameter is given, and an "int" is
      returned to userspace) encompasses more than 90% of the cases, but there
      are two other exceptions. Here is a list of exceptions:
      
      * Protocol RAW:
         * cmd = SIOCGETVIFCNT:
           * input and output = struct sioc_vif_req
         * cmd = SIOCGETSGCNT
           * input and output = struct sioc_sg_req
         * Explanation: for the SIOCGETVIFCNT case, userspace passes the input
           argument, which is struct sioc_vif_req. Then the callback populates
           the struct, which is copied back to userspace.
      
      * Protocol RAW6:
         * cmd = SIOCGETMIFCNT_IN6
           * input and output = struct sioc_mif_req6
         * cmd = SIOCGETSGCNT_IN6
           * input and output = struct sioc_sg_req6
      
      * Protocol PHONET:
        * cmd == SIOCPNADDRESOURCE | SIOCPNDELRESOURCE
           * input int (4 bytes)
        * Nothing is copied back to userspace.
      
      For the exception cases, functions sock_sk_ioctl_inout() will
      copy the userspace input, and copy it back to kernel space.
      
      The wrapper that prepare the buffer and put the buffer back to user is
      sk_ioctl(), so, instead of calling sk->sk_prot->ioctl(), the callee now
      calls sk_ioctl(), which will handle all cases.
      Signed-off-by: default avatarBreno Leitao <leitao@debian.org>
      Reviewed-by: default avatarWillem de Bruijn <willemb@google.com>
      Reviewed-by: default avatarDavid Ahern <dsahern@kernel.org>
      Reviewed-by: default avatarKuniyuki Iwashima <kuniyu@amazon.com>
      Link: https://lore.kernel.org/r/20230609152800.830401-1-leitao@debian.orgSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      e1d001fa
    • Jakub Kicinski's avatar
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net · 173780ff
      Jakub Kicinski authored
      Cross-merge networking fixes after downstream PR.
      
      Conflicts:
      
      include/linux/mlx5/driver.h
        617f5db1 ("RDMA/mlx5: Fix affinity assignment")
        dc131808 ("net/mlx5: Enable devlink port for embedded cpu VF vports")
      https://lore.kernel.org/all/20230613125939.595e50b8@canb.auug.org.au/
      
      tools/testing/selftests/net/mptcp/mptcp_join.sh
        47867f0a ("selftests: mptcp: join: skip check if MIB counter not supported")
        425ba803 ("selftests: mptcp: join: support RM_ADDR for used endpoints or not")
        45b1a122 ("mptcp: introduces more address related mibs")
        0639fa23 ("selftests: mptcp: add explicit check for new mibs")
      https://lore.kernel.org/netdev/20230609-upstream-net-20230610-mptcp-selftests-support-old-kernels-part-3-v1-0-2896fe2ee8a3@tessares.net/
      
      No adjacent changes.
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      173780ff
    • Linus Torvalds's avatar
      Merge tag 'net-6.4-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net · 40f71e7c
      Linus Torvalds authored
      Pull networking fixes from Jakub Kicinski:
       "Including fixes from wireless, and netfilter.
      
        Selftests excluded - we have 58 patches and diff of +442/-199, which
        isn't really small but perhaps with the exception of the WiFi locking
        change it's old(ish) bugs.
      
        We have no known problems with v6.4.
      
        The selftest changes are rather large as MPTCP folks try to apply
        Greg's guidance that selftest from torvalds/linux should be able to
        run against stable kernels.
      
        Last thing I should call out is the DCCP/UDP-lite deprecation notices.
        We are fairly sure those are dead, but if we're wrong reverting them
        back in won't be fun.
      
        Current release - regressions:
      
         - wifi:
            - cfg80211: fix double lock bug in reg_wdev_chan_valid()
            - iwlwifi: mvm: spin_lock_bh() to fix lockdep regression
      
        Current release - new code bugs:
      
         - handshake: remove fput() that causes use-after-free
      
        Previous releases - regressions:
      
         - sched: cls_u32: fix reference counter leak leading to overflow
      
         - sched: cls_api: fix lockup on flushing explicitly created chain
      
        Previous releases - always broken:
      
         - nf_tables: integrate pipapo into commit protocol
      
         - nf_tables: incorrect error path handling with NFT_MSG_NEWRULE, fix
           dangling pointer on failure
      
         - ping6: fix send to link-local addresses with VRF
      
         - sched: act_pedit: parse L3 header for L4 offset, the skb may not
           have the offset saved
      
         - sched: act_ct: fix promotion of offloaded unreplied tuple
      
         - sched: refuse to destroy an ingress and clsact Qdiscs if there are
           lockless change operations in flight
      
         - wifi: mac80211: fix handful of bugs in multi-link operation
      
         - ipvlan: fix bound dev checking for IPv6 l3s mode
      
         - eth: enetc: correct the indexes of highest and 2nd highest TCs
      
         - eth: ice: fix XDP memory leak when NIC is brought up and down
      
        Misc:
      
         - add deprecation notices for UDP-lite and DCCP
      
         - selftests: mptcp: skip tests not supported by old kernels
      
         - sctp: handle invalid error codes without calling BUG()"
      
      * tag 'net-6.4-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net: (91 commits)
        dccp: Print deprecation notice.
        udplite: Print deprecation notice.
        octeon_ep: Add missing check for ioremap
        selftests/ptp: Fix timestamp printf format for PTP_SYS_OFFSET
        net: ethernet: stmicro: stmmac: fix possible memory leak in __stmmac_open
        net: tipc: resize nlattr array to correct size
        sfc: fix XDP queues mode with legacy IRQ
        net: macsec: fix double free of percpu stats
        net: lapbether: only support ethernet devices
        MAINTAINERS: add reviewers for SMC Sockets
        s390/ism: Fix trying to free already-freed IRQ by repeated ism_dev_exit()
        net: dsa: felix: fix taprio guard band overflow at 10Mbps with jumbo frames
        net/sched: cls_api: Fix lockup on flushing explicitly created chain
        ice: Fix ice module unload
        net/handshake: remove fput() that causes use-after-free
        selftests: forwarding: hw_stats_l3: Set addrgenmode in a separate step
        net/sched: qdisc_destroy() old ingress and clsact Qdiscs before grafting
        net/sched: Refactor qdisc_graft() for ingress and clsact Qdiscs
        net/sched: act_ct: Fix promotion of offloaded unreplied tuple
        wifi: iwlwifi: mvm: spin_lock_bh() to fix lockdep regression
        ...
      40f71e7c
    • Linus Torvalds's avatar
      Merge tag 'loongarch-fixes-6.4-1' of... · 627d8586
      Linus Torvalds authored
      Merge tag 'loongarch-fixes-6.4-1' of git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
      
      Pull LoongArch fixes from Huacai Chen:
       "Some trivial bug fixes for v6.4-rc7"
      
      * tag 'loongarch-fixes-6.4-1' of git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson:
        LoongArch: Fix debugfs_create_dir() error checking
        LoongArch: Avoid uninitialized alignment_mask
        LoongArch: Fix perf event id calculation
        LoongArch: Fix the write_fcsr() macro
        LoongArch: Let pmd_present() return true when splitting pmd
      627d8586
    • Linus Torvalds's avatar
      Merge tag 'for-6.4/dm-fixes' of... · 0e306952
      Linus Torvalds authored
      Merge tag 'for-6.4/dm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm
      
      Pull device mapper fixes from Mike Snitzer:
      
       - Fix DM thinp discard performance regression introduced during this
         merge window where DM core was splitting large discards every 128K
         (max_sectors_kb) rather than every 64M (discard_max_bytes).
      
       - Extend DM core LOCKFS fix, made during 6.4 merge, to also fix race
         between do_mount and dm's do_suspend (in addition to the earlier
         fix's do_mount race with dm's do_resume).
      
       - Fix DM thin metadata operations to first check if the thin-pool is in
         "fail_io" mode; otherwise UAF can occur.
      
       - Fix DM thinp's call to __blkdev_issue_discard to use GFP_NOIO rather
         than GFP_NOWAIT (__blkdev_issue_discard cannot handle NULL return
         from bio_alloc).
      
      * tag 'for-6.4/dm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm:
        dm: use op specific max_sectors when splitting abnormal io
        dm thin: fix issue_discard to pass GFP_NOIO to __blkdev_issue_discard
        dm thin metadata: check fail_io before using data_sm
        dm: don't lock fs when the map is NULL during suspend or resume
      0e306952
    • Linus Torvalds's avatar
      Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma · 93fd8eb0
      Linus Torvalds authored
      Pull rdma fixes from Jason Gunthorpe:
       "This is an unusually large bunch of bug fixes for the later rc cycle,
        rxe and mlx5 both dumped a lot of things at once. rxe continues to fix
        itself, and mlx5 is fixing a bunch of "queue counters" related bugs.
      
        There is one highly notable bug fix regarding the qkey. This small
        security check was missed in the original 2005 implementation and it
        allows some significant issues.
      
        Summary:
      
         - Two rtrs bug fixes for error unwind bugs
      
         - Several rxe bug fixes:
            * Incorrect Rx packet validation
            * Using memory without a refcount
            * Syzkaller found use before initialization
            * Regression fix for missing locking with the tasklet conversion
              from this merge window
      
         - Have bnxt report the correct link properties to userspace, this was
           a regression in v6.3
      
         - Several mlx5 bug fixes:
            * Kernel crash triggerable by userspace for the RAW ethernet
              profile
            * Defend against steering refcounting issues created by userspace
            * Incorrect change of QP port affinity parameters in some LAG
              configurations
      
         - Fix mlx5 Q counters:
            * Do not over allocate Q counters to allow userspace to use the
              full port capacity
            * Kernel crash triggered by eswitch due to mis-use of Q counters
            * Incorrect mlx5_device for Q counters in some LAG configurations
      
         - Properly implement the IBA spec restricting privileged qkeys to
           root
      
         - Always an error when reading from a disassociated device's event
           queue
      
         - isert bug fixes:
            * Avoid a deadlock with the CM handler and CM ID destruction
            * Correct list corruption due to incorrect locking
            * Fix a use after free around connection tear down"
      
      * tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma:
        RDMA/rxe: Fix rxe_cq_post
        IB/isert: Fix incorrect release of isert connection
        IB/isert: Fix possible list corruption in CMA handler
        IB/isert: Fix dead lock in ib_isert
        RDMA/mlx5: Fix affinity assignment
        IB/uverbs: Fix to consider event queue closing also upon non-blocking mode
        RDMA/uverbs: Restrict usage of privileged QKEYs
        RDMA/cma: Always set static rate to 0 for RoCE
        RDMA/mlx5: Fix Q-counters query in LAG mode
        RDMA/mlx5: Remove vport Q-counters dependency on normal Q-counters
        RDMA/mlx5: Fix Q-counters per vport allocation
        RDMA/mlx5: Create an indirect flow table for steering anchor
        RDMA/mlx5: Initiate dropless RQ for RAW Ethernet functions
        RDMA/rxe: Fix the use-before-initialization error of resp_pkts
        RDMA/bnxt_re: Fix reporting active_{speed,width} attributes
        RDMA/rxe: Fix ref count error in check_rkey()
        RDMA/rxe: Fix packet length checks
        RDMA/rtrs: Fix rxe_dealloc_pd warning
        RDMA/rtrs: Fix the last iu->buf leak in err path
      93fd8eb0
    • Linus Torvalds's avatar
      Merge tag 'spi-fix-v6.4-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi · b7feaa49
      Linus Torvalds authored
      Pull spi fixes from Mark Brown:
       "A few more driver specific fixes.
      
        The DesignWare fix is for an issue introduced by conversion to the
        chip select accessor functions and is pretty important but the other
        two are less severe"
      
      * tag 'spi-fix-v6.4-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi:
        spi: dw: Replace incorrect spi_get_chipselect with set
        spi: fsl-dspi: avoid SCK glitches with continuous transfers
        spi: cadence-quadspi: Add missing check for dma_set_mask
      b7feaa49
    • Linus Torvalds's avatar
      Merge tag 'regulator-fix-v6.4-rc6' of... · eee71c34
      Linus Torvalds authored
      Merge tag 'regulator-fix-v6.4-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator
      
      Pull regulator fix from Mark Brown:
       "The set of regulators described for the Qualcomm PM8550 just seems to
        have been completely wrong and would likely not have worked at all if
        anything tried to actually configure anything except for enabling and
        disabling at runtime"
      
      * tag 'regulator-fix-v6.4-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator:
        regulator: qcom-rpmh: Fix regulators for PM8550
      eee71c34
    • Linus Torvalds's avatar
      Merge tag 'regmap-fix-v6.4-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap · 231a1e31
      Linus Torvalds authored
      Pull regmap fix from Mark Brown:
       "Another fix for the maple tree cache, Takashi noticed that unlike
        other caches the maple tree cache didn't check for read only registers
        before trying to sync which would result in spurious syncs for read
        only registers where we don't have a default.
      
        This was due to the check being open coded in the caches, we now check
        in the shared 'does this register need sync' function so that is fixed
        for this and future caches"
      
      * tag 'regmap-fix-v6.4-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap:
        regmap: regcache: Don't sync read-only registers
      231a1e31
    • Linus Torvalds's avatar
      Merge tag 'media/v6.4-6' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media · c926a55f
      Linus Torvalds authored
      Pull media fixes from Mauro Carvalho Chehab:
       "A fix for dvb-core to avoid a race condition during DVB board
        registration"
      
      * tag 'media/v6.4-6' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media:
        Revert "media: dvb-core: Fix use-after-free on race condition at dvb_frontend"
      c926a55f
  2. 15 Jun, 2023 22 commits
    • Linus Torvalds's avatar
      Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4 · 62d87796
      Linus Torvalds authored
      Pull ext4 fixes from Ted Ts'o:
       "Fix two regressions in ext4, one report by syzkaller[1], and reported
        by multiple users (and tracked by regzbot[2])"
      
      [1] https://syzkaller.appspot.com/bug?extid=4acc7d910e617b360859
      [2] https://linux-regtracking.leemhuis.info/regzbot/regression/ZIauBR7YiV3rVAHL@glitch/
      
      * tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4:
        ext4: drop the call to ext4_error() from ext4_get_group_info()
        Revert "ext4: remove unnecessary check in ext4_bg_num_gdb_nometa"
      62d87796
    • Linus Torvalds's avatar
      Merge tag '6.4-rc6-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6 · 7a043feb
      Linus Torvalds authored
      Pull smb client fixes from Steve French:
       "Eight, mostly small, smb3 client fixes:
      
         - important fix for deferred close oops (race with unmount) found
           with xfstest generic/098 to some servers
      
         - important reconnect fix
      
         - fix problem with max_credits mount option
      
         - two multichannel (interface related) fixes
      
         - one trivial removal of confusing comment
      
         - two small debugging improvements (to better spot crediting
           problems)"
      
      * tag '6.4-rc6-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6:
        cifs: add a warning when the in-flight count goes negative
        cifs: fix lease break oops in xfstest generic/098
        cifs: fix max_credits implementation
        cifs: fix sockaddr comparison in iface_cmp
        smb/client: print "Unknown" instead of bogus link speed value
        cifs: print all credit counters in DebugData
        cifs: fix status checks in cifs_tree_connect
        smb: remove obsolete comment
      7a043feb
    • Jakub Kicinski's avatar
      Merge branch 'udplite-dccp-print-deprecation-notice' · 8f0e3703
      Jakub Kicinski authored
      Kuniyuki Iwashima says:
      
      ====================
      udplite/dccp: Print deprecation notice.
      
      UDP-Lite is assumed to have no users for 7 years, and DCCP is
      orphaned for 7 years too.
      
      Let's add deprecation notice and see if anyone responds to it.
      ====================
      
      Link: https://lore.kernel.org/r/20230614194705.90673-1-kuniyu@amazon.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      8f0e3703
    • Kuniyuki Iwashima's avatar
      dccp: Print deprecation notice. · b144fcaf
      Kuniyuki Iwashima authored
      DCCP was marked as Orphan in the MAINTAINERS entry 2 years ago in commit
      054c4610 ("MAINTAINERS: dccp: move Gerrit Renker to CREDITS").  It says
      we haven't heard from the maintainer for five years, so DCCP is not well
      maintained for 7 years now.
      
      Recently DCCP only receives updates for bugs, and major distros disable it
      by default.
      
      Removing DCCP would allow for better organisation of TCP fields to reduce
      the number of cache lines hit in the fast path.
      
      Let's add a deprecation notice when DCCP socket is created and schedule its
      removal to 2025.
      Signed-off-by: default avatarKuniyuki Iwashima <kuniyu@amazon.com>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      b144fcaf
    • Kuniyuki Iwashima's avatar
      udplite: Print deprecation notice. · be28c14a
      Kuniyuki Iwashima authored
      Recently syzkaller reported a 7-year-old null-ptr-deref [0] that occurs
      when a UDP-Lite socket tries to allocate a buffer under memory pressure.
      
      Someone should have stumbled on the bug much earlier if UDP-Lite had been
      used in a real app.  Also, we do not always need a large UDP-Lite workload
      to hit the bug since UDP and UDP-Lite share the same memory accounting
      limit.
      
      Removing UDP-Lite would simplify UDP code removing a bunch of conditionals
      in fast path.
      
      Let's add a deprecation notice when UDP-Lite socket is created and schedule
      its removal to 2025.
      
      Link: https://lore.kernel.org/netdev/20230523163305.66466-1-kuniyu@amazon.com/ [0]
      Signed-off-by: default avatarKuniyuki Iwashima <kuniyu@amazon.com>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      be28c14a
    • Jiasheng Jiang's avatar
      octeon_ep: Add missing check for ioremap · 9a36e2d4
      Jiasheng Jiang authored
      Add check for ioremap() and return the error if it fails in order to
      guarantee the success of ioremap().
      
      Fixes: 862cd659 ("octeon_ep: Add driver framework and device initialization")
      Signed-off-by: default avatarJiasheng Jiang <jiasheng@iscas.ac.cn>
      Reviewed-by: default avatarKalesh AP <kalesh-anakkur.purayil@broadcom.com>
      Link: https://lore.kernel.org/r/20230615033400.2971-1-jiasheng@iscas.ac.cnSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      9a36e2d4
    • Alex Maftei's avatar
      selftests/ptp: Fix timestamp printf format for PTP_SYS_OFFSET · 76a4c8b8
      Alex Maftei authored
      Previously, timestamps were printed using "%lld.%u" which is incorrect
      for nanosecond values lower than 100,000,000 as they're fractional
      digits, therefore leading zeros are meaningful.
      
      This patch changes the format strings to "%lld.%09u" in order to add
      leading zeros to the nanosecond value.
      
      Fixes: 568ebc59 ("ptp: add the PTP_SYS_OFFSET ioctl to the testptp program")
      Fixes: 4ec54f95 ("ptp: Fix compiler warnings in the testptp utility")
      Fixes: 6ab0e475 ("Documentation: fix misc. warnings")
      Signed-off-by: default avatarAlex Maftei <alex.maftei@amd.com>
      Acked-by: default avatarRichard Cochran <richardcochran@gmail.com>
      Link: https://lore.kernel.org/r/20230615083404.57112-1-alex.maftei@amd.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      76a4c8b8
    • Christian Marangi's avatar
      net: ethernet: stmicro: stmmac: fix possible memory leak in __stmmac_open · 30134b7c
      Christian Marangi authored
      Fix a possible memory leak in __stmmac_open when stmmac_init_phy fails.
      It's also needed to free everything allocated by stmmac_setup_dma_desc
      and not just the dma_conf struct.
      
      Drop free_dma_desc_resources from __stmmac_open and correctly call
      free_dma_desc_resources on each user of __stmmac_open on error.
      Reported-by: default avatarJose Abreu <Jose.Abreu@synopsys.com>
      Fixes: ba39b344 ("net: ethernet: stmicro: stmmac: generate stmmac dma conf before open")
      Signed-off-by: default avatarChristian Marangi <ansuelsmth@gmail.com>
      Cc: stable@vger.kernel.org
      Reviewed-by: default avatarSimon Horman <simon.horman@corigine.com>
      Reviewed-by: default avatarJose Abreu <Jose.Abreu@synopsys.com>
      Link: https://lore.kernel.org/r/20230614091714.15912-1-ansuelsmth@gmail.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      30134b7c
    • Lin Ma's avatar
      net: tipc: resize nlattr array to correct size · 44194cb1
      Lin Ma authored
      According to nla_parse_nested_deprecated(), the tb[] is supposed to the
      destination array with maxtype+1 elements. In current
      tipc_nl_media_get() and __tipc_nl_media_set(), a larger array is used
      which is unnecessary. This patch resize them to a proper size.
      
      Fixes: 1e55417d ("tipc: add media set to new netlink api")
      Fixes: 46f15c67 ("tipc: add media get/dump to new netlink api")
      Signed-off-by: default avatarLin Ma <linma@zju.edu.cn>
      Reviewed-by: default avatarFlorian Westphal <fw@strlen.de>
      Reviewed-by: default avatarTung Nguyen <tung.q.nguyen@dektech.com.au>
      Link: https://lore.kernel.org/r/20230614120604.1196377-1-linma@zju.edu.cnSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      44194cb1
    • Mike Snitzer's avatar
      dm: use op specific max_sectors when splitting abnormal io · be04c14a
      Mike Snitzer authored
      Split abnormal IO in terms of the corresponding operation specific
      max_sectors (max_discard_sectors, max_secure_erase_sectors or
      max_write_zeroes_sectors).
      
      This fixes a significant dm-thinp discard performance regression that
      was introduced with commit e2dd8aca ("dm bio prison v1: improve
      concurrent IO performance"). Relative to discard: max_discard_sectors
      is used instead of max_sectors; which fixes excessive discard splitting
      (e.g. max_sectors=128K vs max_discard_sectors=64M).
      
      Tested by discarding an 1 Petabyte dm-thin device:
      lvcreate -V 1125899906842624B -T test/pool -n thin
      time blkdiscard /dev/test/thin
      
      Before this fix (splitting discards every 128K): ~116m
       After this fix (splitting discards every 64M) : 0m33.460s
      Reported-by: default avatarZorro Lang <zlang@redhat.com>
      Fixes: 06961c48 ("dm: split discards further if target sets max_discard_granularity")
      Requires: 13f6facf ("dm: allow targets to require splitting WRITE_ZEROES and SECURE_ERASE")
      Fixes: e2dd8aca ("dm bio prison v1: improve concurrent IO performance")
      Signed-off-by: default avatarMike Snitzer <snitzer@kernel.org>
      be04c14a
    • Mike Snitzer's avatar
      dm thin: fix issue_discard to pass GFP_NOIO to __blkdev_issue_discard · 722d9082
      Mike Snitzer authored
      issue_discard() passes GFP_NOWAIT to __blkdev_issue_discard() despite
      its code assuming bio_alloc() always succeeds.
      
      Commit 3dba53a9 ("dm thin: use __blkdev_issue_discard for async
      discard support") clearly shows where things went bad:
      
      Before commit 3dba53a9, dm-thin.c's open-coded
      __blkdev_issue_discard_async() properly handled using GFP_NOWAIT.
      Unfortunately __blkdev_issue_discard() doesn't and it was missed
      during review.
      
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarMike Snitzer <snitzer@kernel.org>
      722d9082
    • Li Lingfeng's avatar
      dm thin metadata: check fail_io before using data_sm · cb65b282
      Li Lingfeng authored
      Must check pmd->fail_io before using pmd->data_sm since
      pmd->data_sm may be destroyed by other processes.
      
             P1(kworker)                             P2(message)
      do_worker
       process_prepared
        process_prepared_discard_passdown_pt2
         dm_pool_dec_data_range
                                          pool_message
                                           commit
                                            dm_pool_commit_metadata
                                              ↓
                                             // commit failed
                                            metadata_operation_failed
                                             abort_transaction
                                              dm_pool_abort_metadata
                                               __open_or_format_metadata
                                                 ↓
                                                dm_sm_disk_open
                                                  ↓
                                                 // open failed
                                                 // pmd->data_sm is NULL
          dm_sm_dec_blocks
            ↓
           // try to access pmd->data_sm --> UAF
      
      As shown above, if dm_pool_commit_metadata() and
      dm_pool_abort_metadata() fail in pool_message process, kworker may
      trigger UAF.
      
      Fixes: be500ed7 ("dm space maps: improve performance with inc/dec on ranges of blocks")
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarLi Lingfeng <lilingfeng3@huawei.com>
      Signed-off-by: default avatarMike Snitzer <snitzer@kernel.org>
      cb65b282
    • Li Lingfeng's avatar
      dm: don't lock fs when the map is NULL during suspend or resume · 2760904d
      Li Lingfeng authored
      As described in commit 38d11da5 ("dm: don't lock fs when the map is
      NULL in process of resume"), a deadlock may be triggered between
      do_resume() and do_mount().
      
      This commit preserves the fix from commit 38d11da5 but moves it to
      where it also serves to fix a similar deadlock between do_suspend()
      and do_mount().  It does so, if the active map is NULL, by clearing
      DM_SUSPEND_LOCKFS_FLAG in dm_suspend() which is called by both
      do_suspend() and do_resume().
      
      Fixes: 38d11da5 ("dm: don't lock fs when the map is NULL in process of resume")
      Signed-off-by: default avatarLi Lingfeng <lilingfeng3@huawei.com>
      Signed-off-by: default avatarMike Snitzer <snitzer@kernel.org>
      2760904d
    • Dan Carpenter's avatar
      leds: trigger: netdev: uninitialized variable in netdev_trig_activate() · 97c5209b
      Dan Carpenter authored
      The qca8k_cled_hw_control_get() function which implements ->hw_control_get
      sets the appropriate bits but does not clear them.  This leads to an
      uninitialized variable bug.  Fix this by setting mode to zero at the
      start.
      
      Fixes: e0256648 ("net: dsa: qca8k: implement hw_control ops")
      Signed-off-by: default avatarDan Carpenter <dan.carpenter@linaro.org>
      Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
      Acked-by: default avatarLee Jones <lee@kernel.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      97c5209b
    • Jakub Kicinski's avatar
      tools: ynl: work around stale system headers · f0ec58d5
      Jakub Kicinski authored
      The inability to include the uAPI headers directly in tools/
      is one of the bigger annoyances of compiling user space code.
      Most projects trade the pain for smaller inconvenience of having
      to copy the headers under tools/include.
      
      In case of netlink headers I think that we can avoid both.
      Netlink family headers are simple and should be self-contained.
      We can try to twiddle the Makefile a little to force-include
      just the family header, and use system headers for the rest.
      
      This works fairly well. There are two warts - for some reason
      if we specify -include $path/family.h as a compilation flag,
      the #ifdef header guard does not seem to work. So we need
      to throw the guard in on the command line as well. Seems like
      GCC detects that the header is different and tries to include
      both. Second problem is that make wants hash sign to be escaped
      or not depending on the version. Sigh.
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      f0ec58d5
    • Íñigo Huguet's avatar
      sfc: fix XDP queues mode with legacy IRQ · e84a1e1e
      Íñigo Huguet authored
      In systems without MSI-X capabilities, xdp_txq_queues_mode is calculated
      in efx_allocate_msix_channels, but when enabling MSI-X fails, it was not
      changed to a proper default value. This was leading to the driver
      thinking that it has dedicated XDP queues, when it didn't.
      
      Fix it by setting xdp_txq_queues_mode to the correct value if the driver
      fallbacks to MSI or legacy IRQ mode. The correct value is
      EFX_XDP_TX_QUEUES_BORROWED because there are no XDP dedicated queues.
      
      The issue can be easily visible if the kernel is started with pci=nomsi,
      then a call trace is shown. It is not shown only with sfc's modparam
      interrupt_mode=2. Call trace example:
       WARNING: CPU: 2 PID: 663 at drivers/net/ethernet/sfc/efx_channels.c:828 efx_set_xdp_channels+0x124/0x260 [sfc]
       [...skip...]
       Call Trace:
        <TASK>
        efx_set_channels+0x5c/0xc0 [sfc]
        efx_probe_nic+0x9b/0x15a [sfc]
        efx_probe_all+0x10/0x1a2 [sfc]
        efx_pci_probe_main+0x12/0x156 [sfc]
        efx_pci_probe_post_io+0x18/0x103 [sfc]
        efx_pci_probe.cold+0x154/0x257 [sfc]
        local_pci_probe+0x42/0x80
      
      Fixes: 6215b608 ("sfc: last resort fallback for lack of xdp tx queues")
      Reported-by: default avatarYanghang Liu <yanghliu@redhat.com>
      Signed-off-by: default avatarÍñigo Huguet <ihuguet@redhat.com>
      Acked-by: default avatarMartin Habets <habetsm.xilinx@gmail.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      e84a1e1e
    • Fedor Pchelkin's avatar
      net: macsec: fix double free of percpu stats · 0c0cf3db
      Fedor Pchelkin authored
      Inside macsec_add_dev() we free percpu macsec->secy.tx_sc.stats and
      macsec->stats on some of the memory allocation failure paths. However, the
      net_device is already registered to that moment: in macsec_newlink(), just
      before calling macsec_add_dev(). This means that during unregister process
      its priv_destructor - macsec_free_netdev() - will be called and will free
      the stats again.
      
      Remove freeing percpu stats inside macsec_add_dev() because
      macsec_free_netdev() will correctly free the already allocated ones. The
      pointers to unallocated stats stay NULL, and free_percpu() treats that
      correctly.
      
      Found by Linux Verification Center (linuxtesting.org) with Syzkaller.
      
      Fixes: 0a28bfd4 ("net/macsec: Add MACsec skb_metadata_dst Tx Data path support")
      Fixes: c09440f7 ("macsec: introduce IEEE 802.1AE driver")
      Signed-off-by: default avatarFedor Pchelkin <pchelkin@ispras.ru>
      Reviewed-by: default avatarSabrina Dubroca <sd@queasysnail.net>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      0c0cf3db
    • Jakub Kicinski's avatar
      net: tls: make the offload check helper take skb not socket · ed3c9a2f
      Jakub Kicinski authored
      All callers of tls_is_sk_tx_device_offloaded() currently do
      an equivalent of:
      
       if (skb->sk && tls_is_skb_tx_device_offloaded(skb->sk))
      
      Have the helper accept skb and do the skb->sk check locally.
      Two drivers have local static inlines with similar wrappers
      already.
      
      While at it change the ifdef condition to TLS_DEVICE.
      Only TLS_DEVICE selects SOCK_VALIDATE_XMIT, so the two are
      equivalent. This makes removing the duplicated IS_ENABLED()
      check in funeth more obviously correct.
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      Acked-by: default avatarMaxim Mikityanskiy <maxtram95@gmail.com>
      Reviewed-by: default avatarSimon Horman <simon.horman@corigine.com>
      Acked-by: default avatarTariq Toukan <tariqt@nvidia.com>
      Acked-by: default avatarDimitris Michailidis <dmichail@fungible.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      ed3c9a2f
    • Eric Dumazet's avatar
      net: lapbether: only support ethernet devices · 9eed321c
      Eric Dumazet authored
      It probbaly makes no sense to support arbitrary network devices
      for lapbether.
      
      syzbot reported:
      
      skbuff: skb_under_panic: text:ffff80008934c100 len:44 put:40 head:ffff0000d18dd200 data:ffff0000d18dd1ea tail:0x16 end:0x140 dev:bond1
      kernel BUG at net/core/skbuff.c:200 !
      Internal error: Oops - BUG: 00000000f2000800 [#1] PREEMPT SMP
      Modules linked in:
      CPU: 0 PID: 5643 Comm: dhcpcd Not tainted 6.4.0-rc5-syzkaller-g4641cff8e810 #0
      Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 05/25/2023
      pstate: 60400005 (nZCv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
      pc : skb_panic net/core/skbuff.c:196 [inline]
      pc : skb_under_panic+0x13c/0x140 net/core/skbuff.c:210
      lr : skb_panic net/core/skbuff.c:196 [inline]
      lr : skb_under_panic+0x13c/0x140 net/core/skbuff.c:210
      sp : ffff8000973b7260
      x29: ffff8000973b7270 x28: ffff8000973b7360 x27: dfff800000000000
      x26: ffff0000d85d8150 x25: 0000000000000016 x24: ffff0000d18dd1ea
      x23: ffff0000d18dd200 x22: 000000000000002c x21: 0000000000000140
      x20: 0000000000000028 x19: ffff80008934c100 x18: ffff8000973b68a0
      x17: 0000000000000000 x16: ffff80008a43bfbc x15: 0000000000000202
      x14: 0000000000000000 x13: 0000000000000001 x12: 0000000000000001
      x11: 0000000000000201 x10: 0000000000000000 x9 : f22f7eb937cced00
      x8 : f22f7eb937cced00 x7 : 0000000000000001 x6 : 0000000000000001
      x5 : ffff8000973b6b78 x4 : ffff80008df9ee80 x3 : ffff8000805974f4
      x2 : 0000000000000001 x1 : 0000000100000201 x0 : 0000000000000086
      Call trace:
      skb_panic net/core/skbuff.c:196 [inline]
      skb_under_panic+0x13c/0x140 net/core/skbuff.c:210
      skb_push+0xf0/0x108 net/core/skbuff.c:2409
      ip6gre_header+0xbc/0x738 net/ipv6/ip6_gre.c:1383
      dev_hard_header include/linux/netdevice.h:3137 [inline]
      lapbeth_data_transmit+0x1c4/0x298 drivers/net/wan/lapbether.c:257
      lapb_data_transmit+0x8c/0xb0 net/lapb/lapb_iface.c:447
      lapb_transmit_buffer+0x178/0x204 net/lapb/lapb_out.c:149
      lapb_send_control+0x220/0x320 net/lapb/lapb_subr.c:251
      lapb_establish_data_link+0x94/0xec
      lapb_device_event+0x348/0x4e0
      notifier_call_chain+0x1a4/0x510 kernel/notifier.c:93
      raw_notifier_call_chain+0x3c/0x50 kernel/notifier.c:461
      __dev_notify_flags+0x2bc/0x544
      dev_change_flags+0xd0/0x15c net/core/dev.c:8643
      devinet_ioctl+0x858/0x17e4 net/ipv4/devinet.c:1150
      inet_ioctl+0x2ac/0x4d8 net/ipv4/af_inet.c:979
      sock_do_ioctl+0x134/0x2dc net/socket.c:1201
      sock_ioctl+0x4ec/0x858 net/socket.c:1318
      vfs_ioctl fs/ioctl.c:51 [inline]
      __do_sys_ioctl fs/ioctl.c:870 [inline]
      __se_sys_ioctl fs/ioctl.c:856 [inline]
      __arm64_sys_ioctl+0x14c/0x1c8 fs/ioctl.c:856
      __invoke_syscall arch/arm64/kernel/syscall.c:38 [inline]
      invoke_syscall+0x98/0x2c0 arch/arm64/kernel/syscall.c:52
      el0_svc_common+0x138/0x244 arch/arm64/kernel/syscall.c:142
      do_el0_svc+0x64/0x198 arch/arm64/kernel/syscall.c:191
      el0_svc+0x4c/0x160 arch/arm64/kernel/entry-common.c:647
      el0t_64_sync_handler+0x84/0xfc arch/arm64/kernel/entry-common.c:665
      el0t_64_sync+0x190/0x194 arch/arm64/kernel/entry.S:591
      Code: aa1803e6 aa1903e7 a90023f5 947730f5 (d4210000)
      
      Fixes: 1da177e4 ("Linux-2.6.12-rc2")
      Reported-by: default avatarsyzbot <syzkaller@googlegroups.com>
      Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
      Cc: Martin Schiller <ms@dev.tdt.de>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      9eed321c
    • Jan Karcher's avatar
      MAINTAINERS: add reviewers for SMC Sockets · 7d03646d
      Jan Karcher authored
      adding three people from Alibaba as reviewers for SMC.
      They are currently working on improving SMC on other architectures than
      s390 and help with reviewing patches on top.
      
      Thank you D. Wythe, Tony Lu and Wen Gu for your contributions and
      collaboration and welcome on board as reviewers!
      Reviewed-by: default avatarWenjia Zhang <wenjia@linux.ibm.com>
      Signed-off-by: default avatarJan Karcher <jaka@linux.ibm.com>
      Acked-by: default avatarTony Lu <tonylu@linux.alibaba.com>
      Acked-by: default avatarWen Gu <guwen@linux.alibaba.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      7d03646d
    • Julian Ruess's avatar
      s390/ism: Fix trying to free already-freed IRQ by repeated ism_dev_exit() · 78d0f949
      Julian Ruess authored
      This patch prevents the system from crashing when unloading the ISM module.
      
      How to reproduce: Attach an ISM device and execute 'rmmod ism'.
      
      Error-Log:
      - Trying to free already-free IRQ 0
      - WARNING: CPU: 1 PID: 966 at kernel/irq/manage.c:1890 free_irq+0x140/0x540
      
      After calling ism_dev_exit() for each ISM device in the exit routine,
      pci_unregister_driver() will execute ism_remove() for each ISM device.
      Because ism_remove() also calls ism_dev_exit(),
      free_irq(pci_irq_vector(pdev, 0), ism) is called twice for each ISM
      device. This results in a crash with the error
      'Trying to free already-free IRQ'.
      
      In the exit routine, it is enough to call pci_unregister_driver()
      because it ensures that ism_dev_exit() is called once per
      ISM device.
      
      Cc: <stable@vger.kernel.org> # 6.3+
      Fixes: 89e7d2ba ("net/ism: Add new API for client registration")
      Reviewed-by: default avatarNiklas Schnelle <schnelle@linux.ibm.com>
      Signed-off-by: default avatarJulian Ruess <julianr@linux.ibm.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      78d0f949
    • David S. Miller's avatar
      Merge branch 'macb-partial-store-and-forward' · 580b7fe5
      David S. Miller authored
      Pranavi Somisetty says:
      
      ====================
      Add support for partial store and forward
      
      Add support for partial store and forward mode in Cadence MACB.
      
      Link for v1:
      https://lore.kernel.org/all/20221213121245.13981-1-pranavi.somisetty@amd.com/
      
      Changes v2:
      1. Removed all the changes related to validating FCS when Rx checksum
      offload is disabled.
      2. Instead of using a platform dependent number (0xFFF) for the reset
      value of rx watermark, derive it from designcfg_debug2 register.
      3. Added a check to see if partial s/f is supported, by reading the
      designcfg_debug6 register.
      4. Added devicetree bindings for "rx-watermark" property.
      Link for v2:
      https://lore.kernel.org/all/20230511071214.18611-1-pranavi.somisetty@amd.com/
      
      Changes v3:
      1. Fixed DT schema error: "scalar properties shouldn't have array keywords"
      2. Modified description of rx-watermark in to include units of the watermark value
      3. Modified the DT property name corresponding to rx_watermark in pbuf_rxcutthru to
      "cdns,rx-watermark".
      4. Followed reverse christmas tree pattern in declaring variables.
      5. Return -EINVAL when an invalid watermark value is set.
      6. Removed netdev_info when partial store and forward is not enabled.
      7. Validating the rx-watermark value in probe itself and only write to the register
      in init.
      8. Writing a reset value to the pbuf_cuthru register before disabing partial store
      and forward is redundant. So removing it.
      9. Removed the platform caps flag.
      10. Instead of reading rx-watermark from DT in macb_configure_caps,
      reading it in probe.
      11. Changed Signed-Off-By and author names on the macb driver patch.
      Link for v3:
      https://lore.kernel.org/all/20230530095138.1302-1-pranavi.somisetty@amd.com/
      
      Changes v4:
      1. Modified description for "rx-watermark" property in the DT bindings.
      2. Changed the width of the rx-watermark property to uint32.
      3. Removed redundant code and unused variables.
      4. When the rx-watermark value is invalid, instead of returning EINVAL,
      do not enable partial store and forward.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      580b7fe5