1. 09 Feb, 2021 4 commits
  2. 08 Feb, 2021 2 commits
  3. 06 Feb, 2021 11 commits
  4. 05 Feb, 2021 10 commits
  5. 04 Feb, 2021 4 commits
  6. 03 Feb, 2021 4 commits
  7. 02 Feb, 2021 5 commits
    • Linus Torvalds's avatar
      Merge tag 'clang-format-for-linux-v5.11-rc7' of git://github.com/ojeda/linux · 3aaf0a27
      Linus Torvalds authored
      Pull clang-format update from Miguel Ojeda:
       "Update with the latest for_each macro list"
      
      * tag 'clang-format-for-linux-v5.11-rc7' of git://github.com/ojeda/linux:
        clang-format: Update with the latest for_each macro list
      3aaf0a27
    • Linus Torvalds's avatar
      Merge tag 'dma-mapping-5.11-1' of git://git.infradead.org/users/hch/dma-mapping · 7d36ccd4
      Linus Torvalds authored
      Pull dma-mapping fix from Christoph Hellwig:
       "Fix a kernel crash in the new dma-mapping benchmark test (Barry Song)"
      
      * tag 'dma-mapping-5.11-1' of git://git.infradead.org/users/hch/dma-mapping:
        dma-mapping: benchmark: fix kernel crash when dma_map_single fails
      7d36ccd4
    • Linus Torvalds's avatar
      Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost · 2e02677e
      Linus Torvalds authored
      Pull vdpa fix from Michael Tsirkin:
       "A single mlx bugfix"
      
      * tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost:
        vdpa/mlx5: Fix memory key MTT population
      2e02677e
    • Linus Torvalds's avatar
      Merge tag 'net-5.11-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net · a9925628
      Linus Torvalds authored
      Pull networking fixes from Jakub Kicinski:
       "Networking fixes for 5.11-rc7, including fixes from bpf and mac80211
        trees.
      
        Current release - regressions:
      
         - ip_tunnel: fix mtu calculation
      
         - mlx5: fix function calculation for page trees
      
        Previous releases - regressions:
      
         - vsock: fix the race conditions in multi-transport support
      
         - neighbour: prevent a dead entry from updating gc_list
      
         - dsa: mv88e6xxx: override existent unicast portvec in port_fdb_add
      
        Previous releases - always broken:
      
         - bpf, cgroup: two copy_{from,to}_user() warn_on_once splats for BPF
           cgroup getsockopt infra when user space is trying to race against
           optlen, from Loris Reiff.
      
         - bpf: add missing fput() in BPF inode storage map update helper
      
         - udp: ipv4: manipulate network header of NATed UDP GRO fraglist
      
         - mac80211: fix station rate table updates on assoc
      
         - r8169: work around RTL8125 UDP HW bug
      
         - igc: report speed and duplex as unknown when device is runtime
           suspended
      
         - rxrpc: fix deadlock around release of dst cached on udp tunnel"
      
      * tag 'net-5.11-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net: (36 commits)
        net: hsr: align sup_multicast_addr in struct hsr_priv to u16 boundary
        net: ipa: fix two format specifier errors
        net: ipa: use the right accessor in ipa_endpoint_status_skip()
        net: ipa: be explicit about endianness
        net: ipa: add a missing __iomem attribute
        net: ipa: pass correct dma_handle to dma_free_coherent()
        r8169: fix WoL on shutdown if CONFIG_DEBUG_SHIRQ is set
        net/rds: restrict iovecs length for RDS_CMSG_RDMA_ARGS
        net: mvpp2: TCAM entry enable should be written after SRAM data
        net: lapb: Copy the skb before sending a packet
        net/mlx5e: Release skb in case of failure in tc update skb
        net/mlx5e: Update max_opened_tc also when channels are closed
        net/mlx5: Fix leak upon failure of rule creation
        net/mlx5: Fix function calculation for page trees
        docs: networking: swap words in icmp_errors_use_inbound_ifaddr doc
        udp: ipv4: manipulate network header of NATed UDP GRO fraglist
        net: ip_tunnel: fix mtu calculation
        vsock: fix the race conditions in multi-transport support
        net: sched: replaced invalid qdisc tree flush helper in qdisc_replace
        ibmvnic: device remove has higher precedence over reset
        ...
      a9925628
    • Andreas Oetken's avatar
      net: hsr: align sup_multicast_addr in struct hsr_priv to u16 boundary · 6c9f18f2
      Andreas Oetken authored
      sup_multicast_addr is passed to ether_addr_equal for address comparison
      which casts the address inputs to u16 leading to an unaligned access.
      Aligning the sup_multicast_addr to u16 boundary fixes the issue.
      Signed-off-by: default avatarAndreas Oetken <andreas.oetken@siemens.com>
      Link: https://lore.kernel.org/r/20210202090304.2740471-1-ennoerlangen@gmail.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      6c9f18f2