1. 13 Mar, 2024 31 commits
    • Heiko Carstens's avatar
      s390/zfcp: use new address translation helpers · a8b576d1
      Heiko Carstens authored
      Use virt_to_dma64() and friends to properly convert virtual to physical and
      physical to virtual addresses so that "make C=1" does not generate any
      warnings anymore.
      Reviewed-by: default avatarSteffen Maier <maier@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      a8b576d1
    • Heiko Carstens's avatar
      s390/tape: fix virtual vs physical address confusion · e8be8201
      Heiko Carstens authored
      Fix virtual vs physical address confusion and use new dma types and helper
      functions to allow for type checking. This does not fix a bug since virtual
      and physical address spaces are currently the same.
      Tested-by: default avatarJan Höppner <hoeppner@linux.ibm.com>
      Reviewed-by: default avatarJan Höppner <hoeppner@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      e8be8201
    • Heiko Carstens's avatar
      s390/3270: use new address translation helpers · 1b2ac5a6
      Heiko Carstens authored
      Use virt_to_dma32() and friends to properly convert virtual to physical and
      physical to virtual addresses so that "make C=1" does not generate any
      warnings anymore.
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      1b2ac5a6
    • Heiko Carstens's avatar
      s390/3215: use new address translation helpers · e6ccda51
      Heiko Carstens authored
      Use virt_to_dma32() and friends to properly convert virtual to physical and
      physical to virtual addresses so that "make C=1" does not generate any
      warnings anymore.
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      e6ccda51
    • Heiko Carstens's avatar
      s390/vmur: use new address translation helpers · f8697636
      Heiko Carstens authored
      Use virt_to_dma32() and friends to properly convert virtual to physical and
      physical to virtual addresses so that "make C=1" does not generate any
      warnings anymore.
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      f8697636
    • Heiko Carstens's avatar
      s390/scm: use new address translation helpers · 850ae345
      Heiko Carstens authored
      Use virt_to_dma64() and friends to properly convert virtual to physical and
      physical to virtual addresses so that "make C=1" does not generate any
      warnings anymore.
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      850ae345
    • Heiko Carstens's avatar
      s390/cio: use new address translation helpers · 9ff91a33
      Heiko Carstens authored
      Use virt_to_dma32() and friends to properly convert virtual to physical and
      physical to virtual addresses so that "make C=1" does not generate any
      warnings anymore.
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      9ff91a33
    • Heiko Carstens's avatar
      s390/cio,idal: fix virtual vs physical address confusion · e1f51be6
      Heiko Carstens authored
      Fix virtual vs physical address confusion. This does not fix a bug since
      virtual and physical address spaces are currently the same.
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      e1f51be6
    • Heiko Carstens's avatar
      s390/cio,idal: remove superfluous virt_to_phys() conversion · 0c9580ce
      Heiko Carstens authored
      Only the last 12 bits of virtual / physical addresses are used when masking
      with IDA_BLOCK_SIZE - 1. Given that the bits are the same regardless of
      virtual or physical address, remove the virtual to physical address
      conversion.
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      0c9580ce
    • Heiko Carstens's avatar
      s390/cio,idal: code cleanup · 57bc3c22
      Heiko Carstens authored
      Adjust coding style, partially refactor code, and use kcalloc()
      instead of kmalloc() to allocate an idaw array.
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      57bc3c22
    • Heiko Carstens's avatar
      s390/dasd: use new address translation helpers · c0bd3960
      Heiko Carstens authored
      Use virt_to_dma32() and friends to properly convert virtual to physical and
      physical to virtual addresses so that "make C=1" does not generate any
      warnings anymore.
      Reviewed-by: default avatarStefan Haberland <sth@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      c0bd3960
    • Heiko Carstens's avatar
      s390/dasd: remove superfluous virt_to_phys() conversion · bdd0ab97
      Heiko Carstens authored
      Only the last 12 bits of virtual / physical addresses are used when masking
      with IDA_BLOCK_SIZE - 1. Given that the bits are the same regardless of
      virtual or physical address, remove the virtual to physical address
      conversion.
      Reviewed-by: default avatarStefan Haberland <sth@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      bdd0ab97
    • Halil Pasic's avatar
      s390/virtio_ccw: avoid converting dma addresses / handles · 8adc56b0
      Halil Pasic authored
      Instead of converting virtual to physical addresses with the virt_to_dma*()
      functions, use dma addresses as provided by DMA API and only add offsets to
      these addresses. This makes sure that address conversion is only done by
      the DMA API.
      Signed-off-by: default avatarHalil Pasic <pasic@linux.ibm.com>
      Reviewed-by: default avatarEric Farman <farman@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      8adc56b0
    • Halil Pasic's avatar
      s390/virtio_ccw: use DMA handle from DMA API · e3e9bda3
      Halil Pasic authored
      Change and use ccw_device_dma_zalloc() so it returns a virtual address like
      before, which can be used to access data. However also pass a new dma32_t
      pointer type handle, which correlates to the returned virtual address.
      This pointer is used to directly pass/set the DMA handle as returned by the
      DMA API.
      Signed-off-by: default avatarHalil Pasic <pasic@linux.ibm.com>
      Reviewed-by: default avatarEric Farman <farman@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      e3e9bda3
    • Halil Pasic's avatar
      s390/virtio_ccw: fix virtual vs physical address confusion · d5cc4168
      Halil Pasic authored
      Fix virtual vs physical address confusion and use new dma types and helper
      functions to allow for type checking. This does not fix a bug since virtual
      and physical address spaces are currently the same.
      Signed-off-by: default avatarHalil Pasic <pasic@linux.ibm.com>
      Reviewed-by: default avatarEric Farman <farman@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      d5cc4168
    • Heiko Carstens's avatar
      s390/cio: use bitwise types to allow for type checking · 1bcf7f48
      Heiko Carstens authored
      Change types of I/O structure members which contain physical addresses to
      dma32_t and dma64_t bitwise types.
      
      This allows to make use of sparse (aka "make C=1") to find incorrect usage
      of physical addresses.
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      1bcf7f48
    • Halil Pasic's avatar
      s390/cio: introduce bitwise dma types and helper functions · 8b19e145
      Halil Pasic authored
      Introduce dma32_t and dma64_t bitwise types, which are supposed to be used
      for 31 and 64 bit DMA capable addresses. This allows to use sparse (make
      C=1) for type checking, so that incorrect usages can be easily found.
      
      Also add a couple of helper functions which
      - convert virtual to DMA addresses and vice versa
      - allow for simple logical and arithmetic operations on DMA addresses
      - convert DMA addresses to plain u32 and u64 values
      
      All helper functions exist to avoid excessive casting in C code.
      Signed-off-by: default avatarHalil Pasic <pasic@linux.ibm.com>
      Co-developed-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      Reviewed-by: default avatarSteffen Maier <maier@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      8b19e145
    • Heiko Carstens's avatar
      s390/vfio_ccw: fix virtual vs physical address confusion · 1c2be70e
      Heiko Carstens authored
      Fix virtual vs physical address confusion. This does not fix a bug
      since virtual and physical address spaces are currently the same.
      Reviewed-by: default avatarEric Farman <farman@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      1c2be70e
    • Heiko Carstens's avatar
      s390/cio: fix virtual vs physical address confusion · 8c30b25b
      Heiko Carstens authored
      Fix virtual vs physical address confusion. This does not fix a bug
      since virtual and physical address spaces are currently the same.
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      8c30b25b
    • Heiko Carstens's avatar
      s390/dasd_eckd: fix virtual vs physical address confusion · 99aea41a
      Heiko Carstens authored
      Fix virtual vs physical address confusion. This does not fix a bug
      since virtual and physical address spaces are currently the same.
      Reviewed-by: default avatarStefan Haberland <sth@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      99aea41a
    • Gerald Schaefer's avatar
      s390/dcssblk: fix virtual vs physical address confusion · 9a349be3
      Gerald Schaefer authored
      Fix virtual vs physical address confusion. This does not fix a bug
      since virtual and physical address spaces are currently the same.
      
      dax_direct_access() should receive a virtual kernel address in kaddr.
      Reviewed-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      Acked-by: default avatarAlexander Gordeev <agordeev@linux.ibm.com>
      Signed-off-by: default avatarGerald Schaefer <gerald.schaefer@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      9a349be3
    • Alexander Gordeev's avatar
      s390/iucv: fix receive buffer virtual vs physical address confusion · 4e8477ae
      Alexander Gordeev authored
      Fix IUCV_IPBUFLST-type buffers virtual vs physical address confusion.
      This does not fix a bug since virtual and physical address spaces are
      currently the same.
      Signed-off-by: default avatarAlexander Gordeev <agordeev@linux.ibm.com>
      Reviewed-by: default avatarAlexandra Winter <wintera@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      4e8477ae
    • Harald Freudenberger's avatar
      s390/zcrypt: fix reference counting on zcrypt card objects · 50ed48c8
      Harald Freudenberger authored
      Tests with hot-plugging crytpo cards on KVM guests with debug
      kernel build revealed an use after free for the load field of
      the struct zcrypt_card. The reason was an incorrect reference
      handling of the zcrypt card object which could lead to a free
      of the zcrypt card object while it was still in use.
      
      This is an example of the slab message:
      
          kernel: 0x00000000885a7512-0x00000000885a7513 @offset=1298. First byte 0x68 instead of 0x6b
          kernel: Allocated in zcrypt_card_alloc+0x36/0x70 [zcrypt] age=18046 cpu=3 pid=43
          kernel:  kmalloc_trace+0x3f2/0x470
          kernel:  zcrypt_card_alloc+0x36/0x70 [zcrypt]
          kernel:  zcrypt_cex4_card_probe+0x26/0x380 [zcrypt_cex4]
          kernel:  ap_device_probe+0x15c/0x290
          kernel:  really_probe+0xd2/0x468
          kernel:  driver_probe_device+0x40/0xf0
          kernel:  __device_attach_driver+0xc0/0x140
          kernel:  bus_for_each_drv+0x8c/0xd0
          kernel:  __device_attach+0x114/0x198
          kernel:  bus_probe_device+0xb4/0xc8
          kernel:  device_add+0x4d2/0x6e0
          kernel:  ap_scan_adapter+0x3d0/0x7c0
          kernel:  ap_scan_bus+0x5a/0x3b0
          kernel:  ap_scan_bus_wq_callback+0x40/0x60
          kernel:  process_one_work+0x26e/0x620
          kernel:  worker_thread+0x21c/0x440
          kernel: Freed in zcrypt_card_put+0x54/0x80 [zcrypt] age=9024 cpu=3 pid=43
          kernel:  kfree+0x37e/0x418
          kernel:  zcrypt_card_put+0x54/0x80 [zcrypt]
          kernel:  ap_device_remove+0x4c/0xe0
          kernel:  device_release_driver_internal+0x1c4/0x270
          kernel:  bus_remove_device+0x100/0x188
          kernel:  device_del+0x164/0x3c0
          kernel:  device_unregister+0x30/0x90
          kernel:  ap_scan_adapter+0xc8/0x7c0
          kernel:  ap_scan_bus+0x5a/0x3b0
          kernel:  ap_scan_bus_wq_callback+0x40/0x60
          kernel:  process_one_work+0x26e/0x620
          kernel:  worker_thread+0x21c/0x440
          kernel:  kthread+0x150/0x168
          kernel:  __ret_from_fork+0x3c/0x58
          kernel:  ret_from_fork+0xa/0x30
          kernel: Slab 0x00000372022169c0 objects=20 used=18 fp=0x00000000885a7c88 flags=0x3ffff00000000a00(workingset|slab|node=0|zone=1|lastcpupid=0x1ffff)
          kernel: Object 0x00000000885a74b8 @offset=1208 fp=0x00000000885a7c88
          kernel: Redzone  00000000885a74b0: bb bb bb bb bb bb bb bb                          ........
          kernel: Object   00000000885a74b8: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b  kkkkkkkkkkkkkkkk
          kernel: Object   00000000885a74c8: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b  kkkkkkkkkkkkkkkk
          kernel: Object   00000000885a74d8: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b  kkkkkkkkkkkkkkkk
          kernel: Object   00000000885a74e8: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b  kkkkkkkkkkkkkkkk
          kernel: Object   00000000885a74f8: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b  kkkkkkkkkkkkkkkk
          kernel: Object   00000000885a7508: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 68 4b 6b 6b 6b a5  kkkkkkkkkkhKkkk.
          kernel: Redzone  00000000885a7518: bb bb bb bb bb bb bb bb                          ........
          kernel: Padding  00000000885a756c: 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a              ZZZZZZZZZZZZ
          kernel: CPU: 0 PID: 387 Comm: systemd-udevd Not tainted 6.8.0-HF #2
          kernel: Hardware name: IBM 3931 A01 704 (KVM/Linux)
          kernel: Call Trace:
          kernel:  [<00000000ca5ab5b8>] dump_stack_lvl+0x90/0x120
          kernel:  [<00000000c99d78bc>] check_bytes_and_report+0x114/0x140
          kernel:  [<00000000c99d53cc>] check_object+0x334/0x3f8
          kernel:  [<00000000c99d820c>] alloc_debug_processing+0xc4/0x1f8
          kernel:  [<00000000c99d852e>] get_partial_node.part.0+0x1ee/0x3e0
          kernel:  [<00000000c99d94ec>] ___slab_alloc+0xaf4/0x13c8
          kernel:  [<00000000c99d9e38>] __slab_alloc.constprop.0+0x78/0xb8
          kernel:  [<00000000c99dc8dc>] __kmalloc+0x434/0x590
          kernel:  [<00000000c9b4c0ce>] ext4_htree_store_dirent+0x4e/0x1c0
          kernel:  [<00000000c9b908a2>] htree_dirblock_to_tree+0x17a/0x3f0
          kernel:  [<00000000c9b919dc>] ext4_htree_fill_tree+0x134/0x400
          kernel:  [<00000000c9b4b3d0>] ext4_dx_readdir+0x160/0x2f0
          kernel:  [<00000000c9b4bedc>] ext4_readdir+0x5f4/0x760
          kernel:  [<00000000c9a7efc4>] iterate_dir+0xb4/0x280
          kernel:  [<00000000c9a7f1ea>] __do_sys_getdents64+0x5a/0x120
          kernel:  [<00000000ca5d6946>] __do_syscall+0x256/0x310
          kernel:  [<00000000ca5eea10>] system_call+0x70/0x98
          kernel: INFO: lockdep is turned off.
          kernel: FIX kmalloc-96: Restoring Poison 0x00000000885a7512-0x00000000885a7513=0x6b
          kernel: FIX kmalloc-96: Marking all objects used
      
      The fix is simple: Before use of the queue not only the queue object
      but also the card object needs to increase it's reference count
      with a call to zcrypt_card_get(). Similar after use of the queue
      not only the queue but also the card object's reference count is
      decreased with zcrypt_card_put().
      Signed-off-by: default avatarHarald Freudenberger <freude@linux.ibm.com>
      Reviewed-by: default avatarHolger Dengler <dengler@linux.ibm.com>
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      50ed48c8
    • Mete Durlu's avatar
      s390/vtime: fix average steal time calculation · 367c50f7
      Mete Durlu authored
      Current average steal timer calculation produces volatile and inflated
      values. The only user of this value is KVM so far and it uses that to
      decide whether or not to yield the vCPU which is seeing steal time.
      KVM compares average steal timer to a threshold and if the threshold
      is past then it does not allow CPU polling and yields it to host, else
      it keeps the CPU by polling.
      Since KVM's steal time threshold is very low by default (%10) it most
      likely is not effected much by the bloated average steal timer values
      because the operating region is pretty small. However there might be
      new users in the future who might rely on this number. Fix average
      steal timer calculation by changing the formula from:
      
      	avg_steal_timer = avg_steal_timer / 2 + steal_timer;
      
      to the following:
      
      	avg_steal_timer = (avg_steal_timer + steal_timer) / 2;
      
      This ensures that avg_steal_timer is actually a naive average of steal
      timer values. It now closely follows steal timer values but of course
      in a smoother manner.
      
      Fixes: 152e9b86 ("s390/vtime: steal time exponential moving average")
      Signed-off-by: default avatarMete Durlu <meted@linux.ibm.com>
      Acked-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      Acked-by: default avatarChristian Borntraeger <borntraeger@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      367c50f7
    • Alexander Gordeev's avatar
      s390/sysinfo: allow response buffer in normal memory · 4dc890df
      Alexander Gordeev authored
      As provided with commit cd4386a9 ("s390/cpcmd,vmcp: avoid GFP_DMA
      allocations") the Diagnose Code 8 response buffer does not have to be
      below 2GB.
      Reviewed-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      Signed-off-by: default avatarAlexander Gordeev <agordeev@linux.ibm.com>
      Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
      4dc890df
    • Linus Torvalds's avatar
      Merge tag 'printk-for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux · b0546776
      Linus Torvalds authored
      Pull printk updates from Petr Mladek:
       "Improve the behavior during panic. The issues were found when testing
        the ongoing changes introducing atomic consoles and printk kthreads:
      
         - pr_flush() has to wait for the last reserved record instead of the
           last finalized one. Note that records are finalized in random order
           when generated by more CPUs in parallel.
      
         - Ignore non-finalized records during panic(). Messages printed on
           panic-CPU are always finalized. Messages printed by other CPUs
           might never be finalized when the CPUs get stopped.
      
         - Block new printk() calls on non-panic CPUs completely. Backtraces
           are printed before entering the panic mode. Later messages would
           just mess information printed by the panic CPU.
      
         - Do not take console_lock in console_flush_on_panic() at all. The
           original code did try_lock()/console_unlock(). The unlock part
           might cause a deadlock when panic() happened in a scheduler code.
      
         - Fix conversion of 64-bit sequence number for 32-bit atomic
           operations"
      
      * tag 'printk-for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux:
        dump_stack: Do not get cpu_sync for panic CPU
        panic: Flush kernel log buffer at the end
        printk: Avoid non-panic CPUs writing to ringbuffer
        printk: Disable passing console lock owner completely during panic()
        printk: ringbuffer: Skip non-finalized records in panic
        printk: Wait for all reserved records with pr_flush()
        printk: ringbuffer: Cleanup reader terminology
        printk: Add this_cpu_in_panic()
        printk: For @suppress_panic_printk check for other CPU in panic
        printk: ringbuffer: Clarify special lpos values
        printk: ringbuffer: Do not skip non-finalized records with prb_next_seq()
        printk: Use prb_first_seq() as base for 32bit seq macros
        printk: Adjust mapping for 32bit seq macros
        printk: nbcon: Relocate 32bit seq macros
      b0546776
    • Linus Torvalds's avatar
      mm, slab: remove last vestiges of SLAB_MEM_SPREAD · f88c3fb8
      Linus Torvalds authored
      Yes, yes, I know the slab people were planning on going slow and letting
      every subsystem fight this thing on their own.  But let's just rip off
      the band-aid and get it over and done with.  I don't want to see a
      number of unnecessary pull requests just to get rid of a flag that no
      longer has any meaning.
      
      This was mainly done with a couple of 'sed' scripts and then some manual
      cleanup of the end result.
      
      Link: https://lore.kernel.org/all/CAHk-=wji0u+OOtmAOD-5JV3SXcRJF___k_+8XNKmak0yd5vW1Q@mail.gmail.com/Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      f88c3fb8
    • Linus Torvalds's avatar
      Merge tag 'slab-for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab · 0ea680ed
      Linus Torvalds authored
      Pull slab updates from Vlastimil Babka:
      
       - Freelist loading optimization (Chengming Zhou)
      
         When the per-cpu slab is depleted and a new one loaded from the cpu
         partial list, optimize the loading to avoid an irq enable/disable
         cycle. This results in a 3.5% performance improvement on the "perf
         bench sched messaging" test.
      
       - Kernel boot parameters cleanup after SLAB removal (Xiongwei Song)
      
         Due to two different main slab implementations we've had boot
         parameters prefixed either slab_ and slub_ with some later becoming
         an alias as both implementations gained the same functionality (i.e.
         slab_nomerge vs slub_nomerge). In order to eventually get rid of the
         implementation-specific names, the canonical and documented
         parameters are now all prefixed slab_ and the slub_ variants become
         deprecated but still working aliases.
      
       - SLAB_ kmem_cache creation flags cleanup (Vlastimil Babka)
      
         The flags had hardcoded #define values which became tedious and
         error-prone when adding new ones. Assign the values via an enum that
         takes care of providing unique bit numbers. Also deprecate
         SLAB_MEM_SPREAD which was only used by SLAB, so it's a no-op since
         SLAB removal. Assign it an explicit zero value. The removals of the
         flag usage are handled independently in the respective subsystems,
         with a final removal of any leftover usage planned for the next
         release.
      
       - Misc cleanups and fixes (Chengming Zhou, Xiaolei Wang, Zheng Yejian)
      
         Includes removal of unused code or function parameters and a fix of a
         memleak.
      
      * tag 'slab-for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab:
        slab: remove PARTIAL_NODE slab_state
        mm, slab: remove memcg_from_slab_obj()
        mm, slab: remove the corner case of inc_slabs_node()
        mm/slab: Fix a kmemleak in kmem_cache_destroy()
        mm, slab, kasan: replace kasan_never_merge() with SLAB_NO_MERGE
        mm, slab: use an enum to define SLAB_ cache creation flags
        mm, slab: deprecate SLAB_MEM_SPREAD flag
        mm, slab: fix the comment of cpu partial list
        mm, slab: remove unused object_size parameter in kmem_cache_flags()
        mm/slub: remove parameter 'flags' in create_kmalloc_caches()
        mm/slub: remove unused parameter in next_freelist_entry()
        mm/slub: remove full list manipulation for non-debug slab
        mm/slub: directly load freelist from cpu partial slab in the likely case
        mm/slub: make the description of slab_min_objects helpful in doc
        mm/slub: replace slub_$params with slab_$params in slub.rst
        mm/slub: unify all sl[au]b parameters with "slab_$param"
        Documentation: kernel-parameters: remove noaliencache
      0ea680ed
    • Linus Torvalds's avatar
      Merge tag 'lsm-pr-20240312' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm · cc4a875c
      Linus Torvalds authored
      Pull lsm updates from Paul Moore:
      
       - Promote IMA/EVM to a proper LSM
      
         This is the bulk of the diffstat, and the source of all the changes
         in the VFS code. Prior to the start of the LSM stacking work it was
         important that IMA/EVM were separate from the rest of the LSMs,
         complete with their own hooks, infrastructure, etc. as it was the
         only way to enable IMA/EVM at the same time as a LSM.
      
         However, now that the bulk of the LSM infrastructure supports
         multiple simultaneous LSMs, we can simplify things greatly by
         bringing IMA/EVM into the LSM infrastructure as proper LSMs. This is
         something I've wanted to see happen for quite some time and Roberto
         was kind enough to put in the work to make it happen.
      
       - Use the LSM hook default values to simplify the call_int_hook() macro
      
         Previously the call_int_hook() macro required callers to supply a
         default return value, despite a default value being specified when
         the LSM hook was defined.
      
         This simplifies the macro by using the defined default return value
         which makes life easier for callers and should also reduce the number
         of return value bugs in the future (we've had a few pop up recently,
         hence this work).
      
       - Use the KMEM_CACHE() macro instead of kmem_cache_create()
      
         The guidance appears to be to use the KMEM_CACHE() macro when
         possible and there is no reason why we can't use the macro, so let's
         use it.
      
       - Fix a number of comment typos in the LSM hook comment blocks
      
         Not much to say here, we fixed some questionable grammar decisions in
         the LSM hook comment blocks.
      
      * tag 'lsm-pr-20240312' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm: (28 commits)
        cred: Use KMEM_CACHE() instead of kmem_cache_create()
        lsm: use default hook return value in call_int_hook()
        lsm: fix typos in security/security.c comment headers
        integrity: Remove LSM
        ima: Make it independent from 'integrity' LSM
        evm: Make it independent from 'integrity' LSM
        evm: Move to LSM infrastructure
        ima: Move IMA-Appraisal to LSM infrastructure
        ima: Move to LSM infrastructure
        integrity: Move integrity_kernel_module_request() to IMA
        security: Introduce key_post_create_or_update hook
        security: Introduce inode_post_remove_acl hook
        security: Introduce inode_post_set_acl hook
        security: Introduce inode_post_create_tmpfile hook
        security: Introduce path_post_mknod hook
        security: Introduce file_release hook
        security: Introduce file_post_open hook
        security: Introduce inode_post_removexattr hook
        security: Introduce inode_post_setattr hook
        security: Align inode_setattr hook definition with EVM
        ...
      cc4a875c
    • Linus Torvalds's avatar
      Merge tag 'selinux-pr-20240312' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux · ca661c5e
      Linus Torvalds authored
      Pull selinux updates from Paul Moore:
       "Really only a few notable changes:
      
         - Continue the coding style/formatting fixup work
      
           This is the bulk of the diffstat in this pull request, with the
           focus this time around being the security/selinux/ss directory.
      
           We've only got a couple of files left to cleanup and once we're
           done with that we can start enabling some automatic style
           verfication and introduce tooling to help new folks format their
           code correctly.
      
         - Don't restrict xattr copy-up when SELinux policy is not loaded
      
           This helps systems that use overlayfs, or similar filesystems,
           preserve their SELinux labels during early boot when the SELinux
           policy has yet to be loaded.
      
         - Reduce the work we do during inode initialization time
      
           This isn't likely to show up in any benchmark results, but we
           removed an unnecessary SELinux object class lookup/calculation
           during inode initialization.
      
         - Correct the return values in selinux_socket_getpeersec_dgram()
      
           We had some inconsistencies with respect to our return values
           across selinux_socket_getpeersec_dgram() and
           selinux_socket_getpeersec_stream().
      
           This provides a more uniform set of error codes across the two
           functions and should help make it easier for users to identify
           the source of a failure"
      
      * tag 'selinux-pr-20240312' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux: (24 commits)
        selinux: fix style issues in security/selinux/ss/symtab.c
        selinux: fix style issues in security/selinux/ss/symtab.h
        selinux: fix style issues in security/selinux/ss/sidtab.c
        selinux: fix style issues in security/selinux/ss/sidtab.h
        selinux: fix style issues in security/selinux/ss/services.h
        selinux: fix style issues in security/selinux/ss/policydb.c
        selinux: fix style issues in security/selinux/ss/policydb.h
        selinux: fix style issues in security/selinux/ss/mls_types.h
        selinux: fix style issues in security/selinux/ss/mls.c
        selinux: fix style issues in security/selinux/ss/mls.h
        selinux: fix style issues in security/selinux/ss/hashtab.c
        selinux: fix style issues in security/selinux/ss/hashtab.h
        selinux: fix style issues in security/selinux/ss/ebitmap.c
        selinux: fix style issues in security/selinux/ss/ebitmap.h
        selinux: fix style issues in security/selinux/ss/context.h
        selinux: fix style issues in security/selinux/ss/context.h
        selinux: fix style issues in security/selinux/ss/constraint.h
        selinux: fix style issues in security/selinux/ss/conditional.c
        selinux: fix style issues in security/selinux/ss/conditional.h
        selinux: fix style issues in security/selinux/ss/avtab.c
        ...
      ca661c5e
    • Linus Torvalds's avatar
      Merge tag 'net-next-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next · 9187210e
      Linus Torvalds authored
      Pull networking updates from Jakub Kicinski:
       "Core & protocols:
      
         - Large effort by Eric to lower rtnl_lock pressure and remove locks:
      
            - Make commonly used parts of rtnetlink (address, route dumps
              etc) lockless, protected by RCU instead of rtnl_lock.
      
            - Add a netns exit callback which already holds rtnl_lock,
              allowing netns exit to take rtnl_lock once in the core instead
              of once for each driver / callback.
      
            - Remove locks / serialization in the socket diag interface.
      
            - Remove 6 calls to synchronize_rcu() while holding rtnl_lock.
      
            - Remove the dev_base_lock, depend on RCU where necessary.
      
         - Support busy polling on a per-epoll context basis. Poll length and
           budget parameters can be set independently of system defaults.
      
         - Introduce struct net_hotdata, to make sure read-mostly global
           config variables fit in as few cache lines as possible.
      
         - Add optional per-nexthop statistics to ease monitoring / debug of
           ECMP imbalance problems.
      
         - Support TCP_NOTSENT_LOWAT in MPTCP.
      
         - Ensure that IPv6 temporary addresses' preferred lifetimes are long
           enough, compared to other configured lifetimes, and at least 2 sec.
      
         - Support forwarding of ICMP Error messages in IPSec, per RFC 4301.
      
         - Add support for the independent control state machine for bonding
           per IEEE 802.1AX-2008 5.4.15 in addition to the existing coupled
           control state machine.
      
         - Add "network ID" to MCTP socket APIs to support hosts with multiple
           disjoint MCTP networks.
      
         - Re-use the mono_delivery_time skbuff bit for packets which user
           space wants to be sent at a specified time. Maintain the timing
           information while traversing veth links, bridge etc.
      
         - Take advantage of MSG_SPLICE_PAGES for RxRPC DATA and ACK packets.
      
         - Simplify many places iterating over netdevs by using an xarray
           instead of a hash table walk (hash table remains in place, for use
           on fastpaths).
      
         - Speed up scanning for expired routes by keeping a dedicated list.
      
         - Speed up "generic" XDP by trying harder to avoid large allocations.
      
         - Support attaching arbitrary metadata to netconsole messages.
      
        Things we sprinkled into general kernel code:
      
         - Enforce VM_IOREMAP flag and range in ioremap_page_range and
           introduce VM_SPARSE kind and vm_area_[un]map_pages (used by
           bpf_arena).
      
         - Rework selftest harness to enable the use of the full range of ksft
           exit code (pass, fail, skip, xfail, xpass).
      
        Netfilter:
      
         - Allow userspace to define a table that is exclusively owned by a
           daemon (via netlink socket aliveness) without auto-removing this
           table when the userspace program exits. Such table gets marked as
           orphaned and a restarting management daemon can re-attach/regain
           ownership.
      
         - Speed up element insertions to nftables' concatenated-ranges set
           type. Compact a few related data structures.
      
        BPF:
      
         - Add BPF token support for delegating a subset of BPF subsystem
           functionality from privileged system-wide daemons such as systemd
           through special mount options for userns-bound BPF fs to a trusted
           & unprivileged application.
      
         - Introduce bpf_arena which is sparse shared memory region between
           BPF program and user space where structures inside the arena can
           have pointers to other areas of the arena, and pointers work
           seamlessly for both user-space programs and BPF programs.
      
         - Introduce may_goto instruction that is a contract between the
           verifier and the program. The verifier allows the program to loop
           assuming it's behaving well, but reserves the right to terminate
           it.
      
         - Extend the BPF verifier to enable static subprog calls in spin lock
           critical sections.
      
         - Support registration of struct_ops types from modules which helps
           projects like fuse-bpf that seeks to implement a new struct_ops
           type.
      
         - Add support for retrieval of cookies for perf/kprobe multi links.
      
         - Support arbitrary TCP SYN cookie generation / validation in the TC
           layer with BPF to allow creating SYN flood handling in BPF
           firewalls.
      
         - Add code generation to inline the bpf_kptr_xchg() helper which
           improves performance when stashing/popping the allocated BPF
           objects.
      
        Wireless:
      
         - Add SPP (signaling and payload protected) AMSDU support.
      
         - Support wider bandwidth OFDMA, as required for EHT operation.
      
        Driver API:
      
         - Major overhaul of the Energy Efficient Ethernet internals to
           support new link modes (2.5GE, 5GE), share more code between
           drivers (especially those using phylib), and encourage more
           uniform behavior. Convert and clean up drivers.
      
         - Define an API for querying per netdev queue statistics from
           drivers.
      
         - IPSec: account in global stats for fully offloaded sessions.
      
         - Create a concept of Ethernet PHY Packages at the Device Tree level,
           to allow parameterizing the existing PHY package code.
      
         - Enable Rx hashing (RSS) on GTP protocol fields.
      
        Misc:
      
         - Improvements and refactoring all over networking selftests.
      
         - Create uniform module aliases for TC classifiers, actions, and
           packet schedulers to simplify creating modprobe policies.
      
         - Address all missing MODULE_DESCRIPTION() warnings in networking.
      
         - Extend the Netlink descriptions in YAML to cover message
           encapsulation or "Netlink polymorphism", where interpretation of
           nested attributes depends on link type, classifier type or some
           other "class type".
      
        Drivers:
      
         - Ethernet high-speed NICs:
            - Add a new driver for Marvell's Octeon PCI Endpoint NIC VF.
            - Intel (100G, ice, idpf):
               - support E825-C devices
            - nVidia/Mellanox:
               - support devices with one port and multiple PCIe links
            - Broadcom (bnxt):
               - support n-tuple filters
               - support configuring the RSS key
            - Wangxun (ngbe/txgbe):
               - implement irq_domain for TXGBE's sub-interrupts
            - Pensando/AMD:
               - support XDP
               - optimize queue submission and wakeup handling (+17% bps)
               - optimize struct layout, saving 28% of memory on queues
      
         - Ethernet NICs embedded and virtual:
            - Google cloud vNIC:
               - refactor driver to perform memory allocations for new queue
                 config before stopping and freeing the old queue memory
            - Synopsys (stmmac):
               - obey queueMaxSDU and implement counters required by 802.1Qbv
            - Renesas (ravb):
               - support packet checksum offload
               - suspend to RAM and runtime PM support
      
         - Ethernet switches:
            - nVidia/Mellanox:
               - support for nexthop group statistics
            - Microchip:
               - ksz8: implement PHY loopback
               - add support for KSZ8567, a 7-port 10/100Mbps switch
      
         - PTP:
            - New driver for RENESAS FemtoClock3 Wireless clock generator.
            - Support OCP PTP cards designed and built by Adva.
      
         - CAN:
            - Support recvmsg() flags for own, local and remote traffic on CAN
              BCM sockets.
            - Support for esd GmbH PCIe/402 CAN device family.
            - m_can:
               - Rx/Tx submission coalescing
               - wake on frame Rx
      
         - WiFi:
            - Intel (iwlwifi):
               - enable signaling and payload protected A-MSDUs
               - support wider-bandwidth OFDMA
               - support for new devices
               - bump FW API to 89 for AX devices; 90 for BZ/SC devices
            - MediaTek (mt76):
               - mt7915: newer ADIE version support
               - mt7925: radio temperature sensor support
            - Qualcomm (ath11k):
               - support 6 GHz station power modes: Low Power Indoor (LPI),
                 Standard Power) SP and Very Low Power (VLP)
               - QCA6390 & WCN6855: support 2 concurrent station interfaces
               - QCA2066 support
            - Qualcomm (ath12k):
               - refactoring in preparation for Multi-Link Operation (MLO)
                 support
               - 1024 Block Ack window size support
               - firmware-2.bin support
               - support having multiple identical PCI devices (firmware needs
                 to have ATH12K_FW_FEATURE_MULTI_QRTR_ID)
               - QCN9274: support split-PHY devices
               - WCN7850: enable Power Save Mode in station mode
               - WCN7850: P2P support
            - RealTek:
               - rtw88: support for more rtw8811cu and rtw8821cu devices
               - rtw89: support SCAN_RANDOM_SN and SET_SCAN_DWELL
               - rtlwifi: speed up USB firmware initialization
               - rtwl8xxxu:
                   - RTL8188F: concurrent interface support
                   - Channel Switch Announcement (CSA) support in AP mode
            - Broadcom (brcmfmac):
               - per-vendor feature support
               - per-vendor SAE password setup
               - DMI nvram filename quirk for ACEPC W5 Pro"
      
      * tag 'net-next-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: (2255 commits)
        nexthop: Fix splat with CONFIG_DEBUG_PREEMPT=y
        nexthop: Fix out-of-bounds access during attribute validation
        nexthop: Only parse NHA_OP_FLAGS for dump messages that require it
        nexthop: Only parse NHA_OP_FLAGS for get messages that require it
        bpf: move sleepable flag from bpf_prog_aux to bpf_prog
        bpf: hardcode BPF_PROG_PACK_SIZE to 2MB * num_possible_nodes()
        selftests/bpf: Add kprobe multi triggering benchmarks
        ptp: Move from simple ida to xarray
        vxlan: Remove generic .ndo_get_stats64
        vxlan: Do not alloc tstats manually
        devlink: Add comments to use netlink gen tool
        nfp: flower: handle acti_netdevs allocation failure
        net/packet: Add getsockopt support for PACKET_COPY_THRESH
        net/netlink: Add getsockopt support for NETLINK_LISTEN_ALL_NSID
        selftests/bpf: Add bpf_arena_htab test.
        selftests/bpf: Add bpf_arena_list test.
        selftests/bpf: Add unit tests for bpf_arena_alloc/free_pages
        bpf: Add helper macro bpf_addr_space_cast()
        libbpf: Recognize __arena global variables.
        bpftool: Recognize arena map type
        ...
      9187210e
  2. 12 Mar, 2024 9 commits
    • Linus Torvalds's avatar
      Merge tag 'docs-6.9' of git://git.lwn.net/linux · 1f440397
      Linus Torvalds authored
      Pull documentation updates from Jonathan Corbet:
       "A moderatly busy cycle for development this time around.
      
         - Some cleanup of the main index page for easier navigation
      
         - Rework some of the other top-level pages for better readability
           and, with luck, fewer merge conflicts in the future.
      
         - Submit-checklist improvements, hopefully the first of many.
      
         - New Italian translations
      
         - A fair number of kernel-doc fixes and improvements. We have also
           dropped the recommendation to use an old version of Sphinx.
      
         - A new document from Thorsten on bisection
      
        ... and lots of fixes and updates"
      
      * tag 'docs-6.9' of git://git.lwn.net/linux: (54 commits)
        docs: verify/bisect: fixes, finetuning, and support for Arch
        docs: Makefile: Add dependency to $(YNL_INDEX) for targets other than htmldocs
        docs: Move ja_JP/howto.rst to ja_JP/process/howto.rst
        docs: submit-checklist: use subheadings
        docs: submit-checklist: structure by category
        docs: new text on bisecting which also covers bug validation
        docs: drop the version constraints for sphinx and dependencies
        docs: kerneldoc-preamble.sty: Remove code for Sphinx <2.4
        docs: Restore "smart quotes" for quotes
        docs/zh_CN: accurate translation of "function"
        docs: Include simplified link titles in main index
        docs: Correct formatting of title in admin-guide/index.rst
        docs: kernel_feat.py: fix build error for missing files
        MAINTAINERS: Set the field name for subsystem profile section
        kasan: Add documentation for CONFIG_KASAN_EXTRA_INFO
        Fixed case issue with 'fault-injection' in documentation
        kernel-doc: handle #if in enums as well
        Documentation: update mailing list addresses
        doc: kerneldoc.py: fix indentation
        scripts/kernel-doc: simplify signature printing
        ...
      1f440397
    • Linus Torvalds's avatar
      Merge tag 'audit-pr-20240312' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit · 3749bda2
      Linus Torvalds authored
      Pull audit updates from Paul Moore:
       "Two small audit patches:
      
         - Use the KMEM_CACHE() macro instead of kmem_cache_create()
      
           The guidance appears to be to use the KMEM_CACHE() macro when
           possible and there is no reason why we can't use the macro, so
           let's use it.
      
         - Remove an unnecessary assignment in audit_dupe_lsm_field()
      
           A return value variable was assigned a value in its declaration,
           but the declaration value is overwritten before the return value
           variable is ever referenced; drop the assignment at declaration
           time"
      
      * tag 'audit-pr-20240312' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit:
        audit: use KMEM_CACHE() instead of kmem_cache_create()
        audit: remove unnecessary assignment in audit_dupe_lsm_field()
      3749bda2
    • Linus Torvalds's avatar
      Merge tag 'Smack-for-6.9' of https://github.com/cschaufler/smack-next · 681ba318
      Linus Torvalds authored
      Pull smack updates from Casey Schaufler:
      
       - Improvements to the initialization of in-memory inodes
      
       - A fix in ramfs to propery ensure the initialization of in-memory
         inodes
      
       - Removal of duplicated code in smack_cred_transfer()
      
      * tag 'Smack-for-6.9' of https://github.com/cschaufler/smack-next:
        Smack: use init_task_smack() in smack_cred_transfer()
        ramfs: Initialize security of in-memory inodes
        smack: Initialize the in-memory inode in smack_inode_init_security()
        smack: Always determine inode labels in smack_inode_init_security()
        smack: Handle SMACK64TRANSMUTE in smack_inode_setsecurity()
        smack: Set SMACK64TRANSMUTE only for dirs in smack_inode_setxattr()
      681ba318
    • Linus Torvalds's avatar
      Merge tag 'seccomp-v6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux · 7f1a2774
      Linus Torvalds authored
      Pull seccomp updates from Kees Cook:
       "There are no core kernel changes here; it's entirely selftests and
        samples:
      
         - Improve reliability of selftests (Terry Tritton, Kees Cook)
      
         - Fix strict-aliasing warning in samples (Arnd Bergmann)"
      
      * tag 'seccomp-v6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
        samples: user-trap: fix strict-aliasing warning
        selftests/seccomp: Pin benchmark to single CPU
        selftests/seccomp: user_notification_addfd check nextfd is available
        selftests/seccomp: Change the syscall used in KILL_THREAD test
        selftests/seccomp: Handle EINVAL on unshare(CLONE_NEWPID)
      7f1a2774
    • Linus Torvalds's avatar
      Merge tag 'hardening-v6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux · 216532e1
      Linus Torvalds authored
      Pull hardening updates from Kees Cook:
       "As is pretty normal for this tree, there are changes all over the
        place, especially for small fixes, selftest improvements, and improved
        macro usability.
      
        Some header changes ended up landing via this tree as they depended on
        the string header cleanups. Also, a notable set of changes is the work
        for the reintroduction of the UBSAN signed integer overflow sanitizer
        so that we can continue to make improvements on the compiler side to
        make this sanitizer a more viable future security hardening option.
      
        Summary:
      
         - string.h and related header cleanups (Tanzir Hasan, Andy
           Shevchenko)
      
         - VMCI memcpy() usage and struct_size() cleanups (Vasiliy Kovalev,
           Harshit Mogalapalli)
      
         - selftests/powerpc: Fix load_unaligned_zeropad build failure
           (Michael Ellerman)
      
         - hardened Kconfig fragment updates (Marco Elver, Lukas Bulwahn)
      
         - Handle tail call optimization better in LKDTM (Douglas Anderson)
      
         - Use long form types in overflow.h (Andy Shevchenko)
      
         - Add flags param to string_get_size() (Andy Shevchenko)
      
         - Add Coccinelle script for potential struct_size() use (Jacob
           Keller)
      
         - Fix objtool corner case under KCFI (Josh Poimboeuf)
      
         - Drop 13 year old backward compat CAP_SYS_ADMIN check (Jingzi Meng)
      
         - Add str_plural() helper (Michal Wajdeczko, Kees Cook)
      
         - Ignore relocations in .notes section
      
         - Add comments to explain how __is_constexpr() works
      
         - Fix m68k stack alignment expectations in stackinit Kunit test
      
         - Convert string selftests to KUnit
      
         - Add KUnit tests for fortified string functions
      
         - Improve reporting during fortified string warnings
      
         - Allow non-type arg to type_max() and type_min()
      
         - Allow strscpy() to be called with only 2 arguments
      
         - Add binary mode to leaking_addresses scanner
      
         - Various small cleanups to leaking_addresses scanner
      
         - Adding wrapping_*() arithmetic helper
      
         - Annotate initial signed integer wrap-around in refcount_t
      
         - Add explicit UBSAN section to MAINTAINERS
      
         - Fix UBSAN self-test warnings
      
         - Simplify UBSAN build via removal of CONFIG_UBSAN_SANITIZE_ALL
      
         - Reintroduce UBSAN's signed overflow sanitizer"
      
      * tag 'hardening-v6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux: (51 commits)
        selftests/powerpc: Fix load_unaligned_zeropad build failure
        string: Convert helpers selftest to KUnit
        string: Convert selftest to KUnit
        sh: Fix build with CONFIG_UBSAN=y
        compiler.h: Explain how __is_constexpr() works
        overflow: Allow non-type arg to type_max() and type_min()
        VMCI: Fix possible memcpy() run-time warning in vmci_datagram_invoke_guest_handler()
        lib/string_helpers: Add flags param to string_get_size()
        x86, relocs: Ignore relocations in .notes section
        objtool: Fix UNWIND_HINT_{SAVE,RESTORE} across basic blocks
        overflow: Use POD in check_shl_overflow()
        lib: stackinit: Adjust target string to 8 bytes for m68k
        sparc: vdso: Disable UBSAN instrumentation
        kernel.h: Move lib/cmdline.c prototypes to string.h
        leaking_addresses: Provide mechanism to scan binary files
        leaking_addresses: Ignore input device status lines
        leaking_addresses: Use File::Temp for /tmp files
        MAINTAINERS: Update LEAKING_ADDRESSES details
        fortify: Improve buffer overflow reporting
        fortify: Add KUnit tests for runtime overflows
        ...
      216532e1
    • Linus Torvalds's avatar
      Merge tag 'execve-v6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux · b32273ee
      Linus Torvalds authored
      Pull execve updates from Kees Cook:
      
       - Drop needless error path code in remove_arg_zero() (Li kunyu, Kees
         Cook)
      
       - binfmt_elf_efpic: Don't use missing interpreter's properties (Max
         Filippov)
      
       - Use /bin/bash for execveat selftests
      
      * tag 'execve-v6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
        exec: Simplify remove_arg_zero() error path
        selftests/exec: Perform script checks with /bin/bash
        exec: Delete unnecessary statements in remove_arg_zero()
        fs: binfmt_elf_efpic: don't use missing interpreter's properties
      b32273ee
    • Linus Torvalds's avatar
      Merge tag 'pstore-v6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux · 41cb8c33
      Linus Torvalds authored
      Pull pstore updates from Kees Cook:
      
       - Make PSTORE_RAM available by default on arm64 (Nícolas F R A Prado)
      
       - Allow for dynamic initialization in modular build (Guilherme G
         Piccoli)
      
       - Add missing allocation failure check (Kunwu Chan)
      
       - Avoid duplicate memory zeroing (Christophe JAILLET)
      
       - Avoid potential double-free during pstorefs umount
      
      * tag 'pstore-v6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
        pstore/zone: Don't clear memory twice
        pstore/zone: Add a null pointer check to the psz_kmsg_read
        efi: pstore: Allow dynamic initialization based on module parameter
        arm64: defconfig: Enable PSTORE_RAM
        pstore/ram: Register to module device table
        pstore: inode: Only d_invalidate() is needed
      41cb8c33
    • Linus Torvalds's avatar
      Merge tag 'nfsd-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux · a01c9fe3
      Linus Torvalds authored
      Pull nfsd updates from Chuck Lever:
       "The bulk of the patches for this release are optimizations, code
        clean-ups, and minor bug fixes.
      
        One new feature to mention is that NFSD administrators now have the
        ability to revoke NFSv4 open and lock state. NFSD's NFSv3 support has
        had this capability for some time.
      
        As always I am grateful to NFSD contributors, reviewers, and testers"
      
      * tag 'nfsd-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux: (75 commits)
        NFSD: Clean up nfsd4_encode_replay()
        NFSD: send OP_CB_RECALL_ANY to clients when number of delegations reaches its limit
        NFSD: Document nfsd_setattr() fill-attributes behavior
        nfsd: Fix NFSv3 atomicity bugs in nfsd_setattr()
        nfsd: Fix a regression in nfsd_setattr()
        NFSD: OP_CB_RECALL_ANY should recall both read and write delegations
        NFSD: handle GETATTR conflict with write delegation
        NFSD: add support for CB_GETATTR callback
        NFSD: Document the phases of CREATE_SESSION
        NFSD: Fix the NFSv4.1 CREATE_SESSION operation
        nfsd: clean up comments over nfs4_client definition
        svcrdma: Add Write chunk WRs to the RPC's Send WR chain
        svcrdma: Post WRs for Write chunks in svc_rdma_sendto()
        svcrdma: Post the Reply chunk and Send WR together
        svcrdma: Move write_info for Reply chunks into struct svc_rdma_send_ctxt
        svcrdma: Post Send WR chain
        svcrdma: Fix retry loop in svc_rdma_send()
        svcrdma: Prevent a UAF in svc_rdma_send()
        svcrdma: Fix SQ wake-ups
        svcrdma: Increase the per-transport rw_ctx count
        ...
      a01c9fe3
    • Linus Torvalds's avatar
      Merge tag 'erofs-for-6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs · f153fbe1
      Linus Torvalds authored
      Pull erofs updates from Gao Xiang:
       "In this cycle, we introduce compressed inode support over fscache
        since a lot of native EROFS images are explicitly compressed so that
        EROFS over fscache can be more widely used even without Dragonfly
        Nydus [1].
      
        Apart from that, there are some folio conversions for compressed
        inodes available as well as a lockdep false positive fix.
      
        Summary:
      
         - Some folio conversions for compressed inodes;
      
         - Add compressed inode support over fscache;
      
         - Fix lockdep false positives of erofs_pseudo_mnt"
      
      Link: https://nydus.dev [1]
      
      * tag 'erofs-for-6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs:
        erofs: support compressed inodes over fscache
        erofs: make iov_iter describe target buffers over fscache
        erofs: fix lockdep false positives on initializing erofs_pseudo_mnt
        erofs: refine managed cache operations to folios
        erofs: convert z_erofs_submissionqueue_endio() to folios
        erofs: convert z_erofs_fill_bio_vec() to folios
        erofs: get rid of `justfound` debugging tag
        erofs: convert z_erofs_do_read_page() to folios
        erofs: convert z_erofs_onlinepage_.* to folios
      f153fbe1