1. 14 Jan, 2021 23 commits
    • Linus Torvalds's avatar
      Merge tag 'net-5.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net · e8c13a6b
      Linus Torvalds authored
      Pull networking fixes from Jakub Kicinski:
       "We have a few fixes for long standing issues, in particular Eric's fix
        to not underestimate the skb sizes, and my fix for brokenness of
        register_netdevice() error path. They may uncover other bugs so we
        will keep an eye on them. Also included are Willem's fixes for
        kmap(_atomic).
      
        Looking at the "current release" fixes, it seems we are about one rc
        behind a normal cycle. We've previously seen an uptick of "people had
        run their test suites" / "humans actually tried to use new features"
        fixes between rc2 and rc3.
      
        Summary:
      
        Current release - regressions:
      
         - fix feature enforcement to allow NETIF_F_HW_TLS_TX if IP_CSUM &&
           IPV6_CSUM
      
         - dcb: accept RTM_GETDCB messages carrying set-like DCB commands if
           user is admin for backward-compatibility
      
         - selftests/tls: fix selftests build after adding ChaCha20-Poly1305
      
        Current release - always broken:
      
         - ppp: fix refcount underflow on channel unbridge
      
         - bnxt_en: clear DEFRAG flag in firmware message when retry flashing
      
         - smc: fix out of bound access in the new netlink interface
      
        Previous releases - regressions:
      
         - fix use-after-free with UDP GRO by frags
      
         - mptcp: better msk-level shutdown
      
         - rndis_host: set proper input size for OID_GEN_PHYSICAL_MEDIUM
           request
      
         - i40e: xsk: fix potential NULL pointer dereferencing
      
        Previous releases - always broken:
      
         - skb frag: kmap_atomic fixes
      
         - avoid 32 x truesize under-estimation for tiny skbs
      
         - fix issues around register_netdevice() failures
      
         - udp: prevent reuseport_select_sock from reading uninitialized socks
      
         - dsa: unbind all switches from tree when DSA master unbinds
      
         - dsa: clear devlink port type before unregistering slave netdevs
      
         - can: isotp: isotp_getname(): fix kernel information leak
      
         - mlxsw: core: Thermal control fixes
      
         - ipv6: validate GSO SKB against MTU before finish IPv6 processing
      
         - stmmac: use __napi_schedule() for PREEMPT_RT
      
         - net: mvpp2: remove Pause and Asym_Pause support
      
        Misc:
      
         - remove from MAINTAINERS folks who had been inactive for >5yrs"
      
      * tag 'net-5.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net: (58 commits)
        mptcp: fix locking in mptcp_disconnect()
        net: Allow NETIF_F_HW_TLS_TX if IP_CSUM && IPV6_CSUM
        MAINTAINERS: dccp: move Gerrit Renker to CREDITS
        MAINTAINERS: ipvs: move Wensong Zhang to CREDITS
        MAINTAINERS: tls: move Aviad to CREDITS
        MAINTAINERS: ena: remove Zorik Machulsky from reviewers
        MAINTAINERS: vrf: move Shrijeet to CREDITS
        MAINTAINERS: net: move Alexey Kuznetsov to CREDITS
        MAINTAINERS: altx: move Jay Cliburn to CREDITS
        net: avoid 32 x truesize under-estimation for tiny skbs
        nt: usb: USB_RTL8153_ECM should not default to y
        net: stmmac: fix taprio configuration when base_time is in the past
        net: stmmac: fix taprio schedule configuration
        net: tip: fix a couple kernel-doc markups
        net: sit: unregister_netdevice on newlink's error path
        net: stmmac: Fixed mtu channged by cache aligned
        cxgb4/chtls: Fix tid stuck due to wrong update of qid
        i40e: fix potential NULL pointer dereferencing
        net: stmmac: use __napi_schedule() for PREEMPT_RT
        can: mcp251xfd: mcp251xfd_handle_rxif_one(): fix wrong NULL pointer check
        ...
      e8c13a6b
    • Paolo Abeni's avatar
      mptcp: fix locking in mptcp_disconnect() · 13a9499e
      Paolo Abeni authored
      tcp_disconnect() expects the caller acquires the sock lock,
      but mptcp_disconnect() is not doing that. Add the missing
      required lock.
      Reported-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
      Fixes: 76e2a55d ("mptcp: better msk-level shutdown.")
      Signed-off-by: default avatarPaolo Abeni <pabeni@redhat.com>
      Link: https://lore.kernel.org/r/f818e82b58a556feeb71dcccc8bf1c87aafc6175.1610638176.git.pabeni@redhat.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      13a9499e
    • Linus Torvalds's avatar
      Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid · 2bbe17ae
      Linus Torvalds authored
      Pull HID fixes from Jiri Kosina:
      
       - memory leak fix for Wacom driver (Ping Cheng)
      
       - various trivial small fixes, cleanups and device ID additions
      
      * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid:
        HID: logitech-hidpp: Add product ID for MX Ergo in Bluetooth mode
        HID: Ignore battery for Elan touchscreen on ASUS UX550
        HID: logitech-dj: add the G602 receiver
        HID: wiimote: remove h from printk format specifier
        HID: uclogic: remove h from printk format specifier
        HID: sony: select CONFIG_CRC32
        HID: sfh: fix address space confusion
        HID: multitouch: Enable multi-input for Synaptics pointstick/touchpad device
        HID: wacom: Fix memory leakage caused by kfifo_alloc
      2bbe17ae
    • Tariq Toukan's avatar
      net: Allow NETIF_F_HW_TLS_TX if IP_CSUM && IPV6_CSUM · 25537d71
      Tariq Toukan authored
      Cited patch below blocked the TLS TX device offload unless HW_CSUM
      is set. This broke devices that use IP_CSUM && IP6_CSUM.
      Here we fix it.
      
      Note that the single HW_TLS_TX feature flag indicates support for
      both IPv4/6, hence it should still be disabled in case only one of
      (IP_CSUM | IPV6_CSUM) is set.
      
      Fixes: ae0b04b2 ("net: Disable NETIF_F_HW_TLS_TX when HW_CSUM is disabled")
      Signed-off-by: default avatarTariq Toukan <tariqt@nvidia.com>
      Reported-by: default avatarRohit Maheshwari <rohitm@chelsio.com>
      Reviewed-by: default avatarMaxim Mikityanskiy <maximmi@mellanox.com>
      Link: https://lore.kernel.org/r/20210114151215.7061-1-tariqt@nvidia.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      25537d71
    • Jakub Kicinski's avatar
      Merge branch 'maintainers-remove-inactive-folks-from-networking' · 70db767f
      Jakub Kicinski authored
      To make maintainers' lives easier we're trying to nudge people
      towards CCing all the relevant folks on patches, in an attempt
      to improve review rate. We have a check in patchwork which validates
      the CC list against get_maintainers.pl. It's a little awkward, however,
      to force people to CC maintainers who we haven't seen on the mailing
      list for years. This series removes from maintainers folks who didn't
      provide any tag (incl. authoring a patch) in the last 5 years.
      To ensure reasonable signal to noise ratio we only considered
      MAINTAINERS entries which had more than 100 patches fall under
      them in that time period.
      
      All this is purely a process-greasing exercise, I hope nobody
      sees this series as an affront. Most folks are moved to CREDITS,
      a couple entries are simply removed.
      
      The following inactive maintainers are kept, because they indicated
      the intention to come back in the near future:
      
       - Veaceslav Falico (bonding)
       - Christian Benvenuti (Cisco drivers)
       - Felix Fietkau (mtk-eth)
       - Mirko Linder (skge/sky2)
      
      Patches in this series contain report from a script which did
      the analysis. Big thanks to Jonathan Corbet for help and writing
      the script (although I feel like I used it differently than Jon
      may have intended ;)). The output format is thus:
      
       Subsystem $name
        Changes $reviewed / $total ($percent%)           // how many changes to the subsystem had at least one ack/review
        Last activity: $date_of_most_recent_patch
        $maintainer/reviewer1:
          Author $last_commit_authored_by_the_person $how_many_in_5yrs
          Committer $last_committed $how_many
          Tags $last_tag_like_review_signoff_etc $how_many
        $maintainer/reviewer2:
          Author $last_commit_authored_by_the_person $how_many_in_5yrs
          Committer $last_committed $how_many
          Tags $last_tag_like_review_signoff_etc $how_many
        Top reviewers: // Top 3 reviewers (who are not listed in MAINTAINERS)
          [$count_of_reviews_and_acks]: $email
        INACTIVE MAINTAINER $name   // maintainer / reviewer who has done nothing in last 5yrs
      
      v2:
       - keep Felix and Mirko
      
      Link: https://lore.kernel.org/r/20210114014912.2519931-1-kuba@kernel.orgSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      70db767f
    • Jakub Kicinski's avatar
      MAINTAINERS: dccp: move Gerrit Renker to CREDITS · 054c4610
      Jakub Kicinski authored
      As far as I can tell we haven't heard from Gerrit for roughly
      5 years now. DCCP patch would really benefit from some review.
      Gerrit was the last maintainer so mark this entry as orphaned.
      
      Subsystem DCCP PROTOCOL
        Changes 38 / 166 (22%)
        (No activity)
        Top reviewers:
          [6]: kstewart@linuxfoundation.org
          [6]: allison@lohutok.net
          [5]: edumazet@google.com
        INACTIVE MAINTAINER Gerrit Renker <gerrit@erg.abdn.ac.uk>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      054c4610
    • Jakub Kicinski's avatar
      MAINTAINERS: ipvs: move Wensong Zhang to CREDITS · 4f3786e0
      Jakub Kicinski authored
      Move Wensong Zhang to credits, we haven't heard from
      him in years.
      
      Subsystem IPVS
        Changes 83 / 226 (36%)
        Last activity: 2020-11-27
        Wensong Zhang <wensong@linux-vs.org>:
        Simon Horman <horms@verge.net.au>:
          Committer c24b75e0 2019-10-24 00:00:00 33
          Tags 7980d2ea 2020-10-12 00:00:00 76
        Julian Anastasov <ja@ssi.bg>:
          Author 7980d2ea 2020-10-12 00:00:00 26
          Tags 4bc3c8dc 2020-11-27 00:00:00 78
        Top reviewers:
          [6]: horms+renesas@verge.net.au
        INACTIVE MAINTAINER Wensong Zhang <wensong@linux-vs.org>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      4f3786e0
    • Jakub Kicinski's avatar
      MAINTAINERS: tls: move Aviad to CREDITS · 0e4ed0b6
      Jakub Kicinski authored
      Aviad wrote parts of the initial TLS implementation
      but hasn't been contributing to TLS since.
      
      Subsystem NETWORKING [TLS]
        Changes 123 / 308 (39%)
        Last activity: 2020-12-01
        Boris Pismenny <borisp@nvidia.com>:
          Tags 138559b9 2020-11-17 00:00:00 1
        Aviad Yehezkel <aviadye@nvidia.com>:
        John Fastabend <john.fastabend@gmail.com>:
          Author e91de6af 2020-06-01 00:00:00 22
          Tags e91de6af 2020-06-01 00:00:00 29
        Daniel Borkmann <daniel@iogearbox.net>:
          Author c16ee04c 2018-10-20 00:00:00 7
          Committer b8e202d1 2020-02-21 00:00:00 19
          Tags b8e202d1 2020-02-21 00:00:00 28
        Jakub Kicinski <kuba@kernel.org>:
          Author 5c39f26e 2020-11-27 00:00:00 89
          Committer d31c0800 2020-12-01 00:00:00 15
          Tags d31c0800 2020-12-01 00:00:00 117
        Top reviewers:
          [50]: dirk.vandermerwe@netronome.com
          [26]: simon.horman@netronome.com
          [14]: john.hurley@netronome.com
        INACTIVE MAINTAINER Aviad Yehezkel <aviadye@nvidia.com>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      0e4ed0b6
    • Jakub Kicinski's avatar
      MAINTAINERS: ena: remove Zorik Machulsky from reviewers · c41efbf2
      Jakub Kicinski authored
      While ENA has 3 reviewers and 2 maintainers, we mostly see review
      tags and comments from the maintainers. While we very much appreciate
      Zorik's invovment in the community let's trim the reviewer list
      down to folks we've seen tags from.
      
      Subsystem AMAZON ETHERNET DRIVERS
        Changes 13 / 269 (4%)
        Last activity: 2020-11-24
        Netanel Belgazal <netanel@amazon.com>:
          Author 24dee0c7 2019-12-10 00:00:00 43
          Tags 0e3a3f6d 2020-07-21 00:00:00 47
        Arthur Kiyanovski <akiyano@amazon.com>:
          Author 0e3a3f6d 2020-07-21 00:00:00 79
          Tags 09323b3b 2020-11-24 00:00:00 104
        Guy Tzalik <gtzalik@amazon.com>:
          Tags 713865da 2020-09-10 00:00:00 3
        Saeed Bishara <saeedb@amazon.com>:
          Tags 470793a7 2020-02-11 00:00:00 2
        Zorik Machulsky <zorik@amazon.com>:
        Top reviewers:
          [4]: sameehj@amazon.com
          [3]: snelson@pensando.io
          [3]: shayagr@amazon.com
        INACTIVE MAINTAINER Zorik Machulsky <zorik@amazon.com>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      c41efbf2
    • Jakub Kicinski's avatar
      MAINTAINERS: vrf: move Shrijeet to CREDITS · 5e62d124
      Jakub Kicinski authored
      Shrijeet has moved on from VRF-related work.
      
      Subsystem VRF
        Changes 30 / 120 (25%)
        Last activity: 2020-12-09
        David Ahern <dsahern@kernel.org>:
          Author 1b6687e3 2020-07-23 00:00:00 1
          Tags 9125abe7 2020-12-09 00:00:00 4
        Shrijeet Mukherjee <shrijeet@gmail.com>:
        Top reviewers:
          [13]: dsahern@gmail.com
          [4]: dsa@cumulusnetworks.com
        INACTIVE MAINTAINER Shrijeet Mukherjee <shrijeet@gmail.com>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      5e62d124
    • Jakub Kicinski's avatar
      MAINTAINERS: net: move Alexey Kuznetsov to CREDITS · 09cd3f46
      Jakub Kicinski authored
      Move Alexey to CREDITS.
      
      I am probably not giving him enough justice with
      the description line..
      
      Subsystem NETWORKING [IPv4/IPv6]
        Changes 1535 / 5111 (30%)
        Last activity: 2020-12-10
        "David S. Miller" <davem@davemloft.net>:
          Author b7e4ba9a 2020-12-09 00:00:00 407
          Committer e0fecb28 2020-12-10 00:00:00 3992
          Tags e0fecb28 2020-12-10 00:00:00 3978
        Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>:
        Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>:
          Tags d5d8760b 2016-06-16 00:00:00 8
        Top reviewers:
          [225]: edumazet@google.com
          [222]: dsahern@gmail.com
          [176]: ncardwell@google.com
        INACTIVE MAINTAINER Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      09cd3f46
    • Jakub Kicinski's avatar
      MAINTAINERS: altx: move Jay Cliburn to CREDITS · 93089de9
      Jakub Kicinski authored
      Jay was not active in recent years and does not have plans
      to return to work on ATLX drivers.
      
      Subsystem ATLX ETHERNET DRIVERS
        Changes 20 / 116 (17%)
        Last activity: 2020-02-24
        Jay Cliburn <jcliburn@gmail.com>:
        Chris Snook <chris.snook@gmail.com>:
          Tags ea973742 2020-02-24 00:00:00 1
        Top reviewers:
          [4]: andrew@lunn.ch
          [2]: kuba@kernel.org
          [2]: o.rempel@pengutronix.de
        INACTIVE MAINTAINER Jay Cliburn <jcliburn@gmail.com>
      Acked-by: default avatarChris Snook <chris.snook@gmail.com>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      93089de9
    • Eric Dumazet's avatar
      net: avoid 32 x truesize under-estimation for tiny skbs · 3226b158
      Eric Dumazet authored
      Both virtio net and napi_get_frags() allocate skbs
      with a very small skb->head
      
      While using page fragments instead of a kmalloc backed skb->head might give
      a small performance improvement in some cases, there is a huge risk of
      under estimating memory usage.
      
      For both GOOD_COPY_LEN and GRO_MAX_HEAD, we can fit at least 32 allocations
      per page (order-3 page in x86), or even 64 on PowerPC
      
      We have been tracking OOM issues on GKE hosts hitting tcp_mem limits
      but consuming far more memory for TCP buffers than instructed in tcp_mem[2]
      
      Even if we force napi_alloc_skb() to only use order-0 pages, the issue
      would still be there on arches with PAGE_SIZE >= 32768
      
      This patch makes sure that small skb head are kmalloc backed, so that
      other objects in the slab page can be reused instead of being held as long
      as skbs are sitting in socket queues.
      
      Note that we might in the future use the sk_buff napi cache,
      instead of going through a more expensive __alloc_skb()
      
      Another idea would be to use separate page sizes depending
      on the allocated length (to never have more than 4 frags per page)
      
      I would like to thank Greg Thelen for his precious help on this matter,
      analysing crash dumps is always a time consuming task.
      
      Fixes: fd11a83d ("net: Pull out core bits of __netdev_alloc_skb and add __napi_alloc_skb")
      Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
      Cc: Paolo Abeni <pabeni@redhat.com>
      Cc: Greg Thelen <gthelen@google.com>
      Reviewed-by: default avatarAlexander Duyck <alexanderduyck@fb.com>
      Acked-by: default avatarMichael S. Tsirkin <mst@redhat.com>
      Link: https://lore.kernel.org/r/20210113161819.1155526-1-eric.dumazet@gmail.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      3226b158
    • Geert Uytterhoeven's avatar
      nt: usb: USB_RTL8153_ECM should not default to y · 7da17624
      Geert Uytterhoeven authored
      In general, device drivers should not be enabled by default.
      
      Fixes: 657bc1d1 ("r8153_ecm: avoid to be prior to r8152 driver")
      Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
      Reviewed-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      Link: https://lore.kernel.org/r/20210113144309.1384615-1-geert+renesas@glider.beSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      7da17624
    • Yannick Vignon's avatar
      net: stmmac: fix taprio configuration when base_time is in the past · fe28c53e
      Yannick Vignon authored
      The Synopsys TSN MAC supports Qbv base times in the past, but only up to a
      certain limit. As a result, a taprio qdisc configuration with a small
      base time (for example when treating the base time as a simple phase
      offset) is not applied by the hardware and silently ignored.
      
      This was observed on an NXP i.MX8MPlus device, but likely affects all
      TSN-variants of the MAC.
      
      Fix the issue by making sure the base time is in the future, pushing it by
      an integer amount of cycle times if needed. (a similar check is already
      done in several other taprio implementations, see for example
      drivers/net/ethernet/intel/igc/igc_tsn.c#L116 or
      drivers/net/dsa/sja1105/sja1105_ptp.h#L39).
      
      Fixes: b60189e0 ("net: stmmac: Integrate EST with TAPRIO scheduler API")
      Signed-off-by: default avatarYannick Vignon <yannick.vignon@nxp.com>
      Link: https://lore.kernel.org/r/20210113131557.24651-2-yannick.vignon@oss.nxp.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      fe28c53e
    • Yannick Vignon's avatar
      net: stmmac: fix taprio schedule configuration · b76889ff
      Yannick Vignon authored
      When configuring a 802.1Qbv schedule through the tc taprio qdisc on an NXP
      i.MX8MPlus device, the effective cycle time differed from the requested one
      by N*96ns, with N number of entries in the Qbv Gate Control List. This is
      because the driver was adding a 96ns margin to each interval of the GCL,
      apparently to account for the IPG. The problem was observed on NXP
      i.MX8MPlus devices but likely affected all devices relying on the same
      configuration callback (dwmac 4.00, 4.10, 5.10 variants).
      
      Fix the issue by removing the margins, and simply setup the MAC with the
      provided cycle time value. This is the behavior expected by the user-space
      API, as altering the Qbv schedule timings would break standards conformance.
      This is also the behavior of several other Ethernet MAC implementations
      supporting taprio, including the dwxgmac variant of stmmac.
      
      Fixes: 504723af ("net: stmmac: Add basic EST support for GMAC5+")
      Signed-off-by: default avatarYannick Vignon <yannick.vignon@nxp.com>
      Link: https://lore.kernel.org/r/20210113131557.24651-1-yannick.vignon@oss.nxp.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      b76889ff
    • Mauro Carvalho Chehab's avatar
      net: tip: fix a couple kernel-doc markups · 25764779
      Mauro Carvalho Chehab authored
      A function has a different name between their prototype
      and its kernel-doc markup:
      
      	../net/tipc/link.c:2551: warning: expecting prototype for link_reset_stats(). Prototype was for tipc_link_reset_stats() instead
      	../net/tipc/node.c:1678: warning: expecting prototype for is the general link level function for message sending(). Prototype was for tipc_node_xmit() instead
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
      Acked-by: default avatarJon Maloy <jmaloy@redhat.com>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      25764779
    • Jakub Kicinski's avatar
      net: sit: unregister_netdevice on newlink's error path · 47e4bb14
      Jakub Kicinski authored
      We need to unregister the netdevice if config failed.
      .ndo_uninit takes care of most of the heavy lifting.
      
      This was uncovered by recent commit c269a24c ("net: make
      free_netdev() more lenient with unregistering devices").
      Previously the partially-initialized device would be left
      in the system.
      
      Reported-and-tested-by: syzbot+2393580080a2da190f04@syzkaller.appspotmail.com
      Fixes: e2f1f072 ("sit: allow to configure 6rd tunnels via netlink")
      Acked-by: default avatarNicolas Dichtel <nicolas.dichtel@6wind.com>
      Link: https://lore.kernel.org/r/20210114012947.2515313-1-kuba@kernel.orgSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      47e4bb14
    • Nicholas Miell's avatar
      HID: logitech-hidpp: Add product ID for MX Ergo in Bluetooth mode · 7de843db
      Nicholas Miell authored
      The Logitech MX Ergo trackball supports HID++ 4.5 over Bluetooth. Add its
      product ID to the table so we can get battery monitoring support.
      (The hid-logitech-hidpp driver already recognizes it when connected via
      a Unifying Receiver.)
      
      [jkosina@suse.cz: fix whitespace damage]
      Signed-off-by: default avatarNicholas Miell <nmiell@gmail.com>
      Reviewed-by: default avatarHans de Goede <hdegoede@redhat.com>
      Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
      7de843db
    • David Wu's avatar
      net: stmmac: Fixed mtu channged by cache aligned · 5b55299e
      David Wu authored
      Since the original mtu is not used when the mtu is updated,
      the mtu is aligned with cache, this will get an incorrect.
      For example, if you want to configure the mtu to be 1500,
      but mtu 1536 is configured in fact.
      
      Fixed: eaf4fac4 ("net: stmmac: Do not accept invalid MTU values")
      Signed-off-by: default avatarDavid Wu <david.wu@rock-chips.com>
      Link: https://lore.kernel.org/r/20210113034109.27865-1-david.wu@rock-chips.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      5b55299e
    • Ayush Sawal's avatar
      cxgb4/chtls: Fix tid stuck due to wrong update of qid · 8ad2a970
      Ayush Sawal authored
      TID stuck is seen when there is a race in
      CPL_PASS_ACCEPT_RPL/CPL_ABORT_REQ and abort is arriving
      before the accept reply, which sets the queue number.
      In this case HW ends up sending CPL_ABORT_RPL_RSS to an
      incorrect ingress queue.
      
      V1->V2:
      - Removed the unused variable len in chtls_set_quiesce_ctrl().
      
      V2->V3:
      - As kfree_skb() has a check for null skb, so removed this
      check before calling kfree_skb() in func chtls_send_reset().
      
      Fixes: cc35c88a ("crypto : chtls - CPL handler definition")
      Signed-off-by: default avatarRohit Maheshwari <rohitm@chelsio.com>
      Signed-off-by: default avatarAyush Sawal <ayush.sawal@chelsio.com>
      Link: https://lore.kernel.org/r/20210112053600.24590-1-ayush.sawal@chelsio.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      8ad2a970
    • Cristian Dumitrescu's avatar
      i40e: fix potential NULL pointer dereferencing · 7128c834
      Cristian Dumitrescu authored
      Currently, the function i40e_construct_skb_zc only frees the input xdp
      buffer when the output skb is successfully built. On error, the
      function i40e_clean_rx_irq_zc does not commit anything for the current
      packet descriptor and simply exits the packet descriptor processing
      loop, with the plan to restart the processing of this descriptor on
      the next invocation. Therefore, on error the ring next-to-clean
      pointer should not advance, the xdp i.e. *bi buffer should not be
      freed and the current buffer info should not be invalidated by setting
      *bi to NULL. Therefore, the *bi should only be set to NULL when the
      function i40e_construct_skb_zc is successful, otherwise a NULL *bi
      will be dereferenced when the work for the current descriptor is
      eventually restarted.
      
      Fixes: 3b4f0b66 ("i40e, xsk: Migrate to new MEM_TYPE_XSK_BUFF_POOL")
      Signed-off-by: default avatarCristian Dumitrescu <cristian.dumitrescu@intel.com>
      Acked-by: default avatarBjörn Töpel <bjorn.topel@intel.com>
      Link: https://lore.kernel.org/r/20210111181138.49757-1-cristian.dumitrescu@intel.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      7128c834
    • Jakub Kicinski's avatar
      Merge tag 'linux-can-fixes-for-5.11-20210113' of... · 7b25339f
      Jakub Kicinski authored
      Merge tag 'linux-can-fixes-for-5.11-20210113' of git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can
      
      Marc Kleine-Budde says:
      
      ====================
      pull-request: can 2021-01-13
      
      The first patch is by Oliver Hartkopp for the CAn ISO-TP protocol and fixes a
      kernel information leak to userspace.
      
      The last patch is by Qinglang Miao for the mcp251xfd driver and fixes a NULL
      pointer check to work on the correct variable.
      
      * tag 'linux-can-fixes-for-5.11-20210113' of git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can:
        can: mcp251xfd: mcp251xfd_handle_rxif_one(): fix wrong NULL pointer check
        can: isotp: isotp_getname(): fix kernel information leak
      ====================
      
      Link: https://lore.kernel.org/r/20210113212158.925513-1-mkl@pengutronix.deSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      7b25339f
  2. 13 Jan, 2021 17 commits