1. 09 May, 2024 21 commits
  2. 08 May, 2024 7 commits
    • Linus Torvalds's avatar
      Merge tag '6.9-rc7-ksmbd-fixes' of git://git.samba.org/ksmbd · 45db3ab7
      Linus Torvalds authored
      Pull smb server fixes from Steve French:
       "Five ksmbd server fixes, all also for stable
      
         - Three fixes related to SMB3 leases (fixes two xfstests, and a
           locking issue)
      
         - Unitialized variable fix
      
         - Socket creation fix when bindv6only is set"
      
      * tag '6.9-rc7-ksmbd-fixes' of git://git.samba.org/ksmbd:
        ksmbd: do not grant v2 lease if parent lease key and epoch are not set
        ksmbd: use rwsem instead of rwlock for lease break
        ksmbd: avoid to send duplicate lease break notifications
        ksmbd: off ipv6only for both ipv4/ipv6 binding
        ksmbd: fix uninitialized symbol 'share' in smb2_tree_connect()
      45db3ab7
    • Linus Torvalds's avatar
      Merge tag 'fuse-fixes-6.9-final' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse · 065a057a
      Linus Torvalds authored
      Pull fuse fixes from Miklos Szeredi:
       "Two one-liner fixes for issues introduced in -rc1"
      
      * tag 'fuse-fixes-6.9-final' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse:
        virtiofs: include a newline in sysfs tag
        fuse: verify zero padding in fuse_backing_map
      065a057a
    • Linus Torvalds's avatar
      Merge tag 'exfat-for-6.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat · fe35bf27
      Linus Torvalds authored
      Pull exfat fixes from Namjae Jeon:
      
       - Fix xfstests generic/013 test failure with dirsync mount option
      
       - Initialize the reserved fields of deleted file and stream extension
         dentries to zero
      
      * tag 'exfat-for-6.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat:
        exfat: zero the reserved fields of file and stream extension dentries
        exfat: fix timing of synchronizing bitmap and inode
      fe35bf27
    • Linus Torvalds's avatar
      Merge tag 'bcachefs-2024-05-07.2' of https://evilpiepirate.org/git/bcachefs · f5fcbc8b
      Linus Torvalds authored
      Pull bcachefs fixes from Kent Overstreet:
      
       - Various syzbot fixes; mainly small gaps in validation
      
       - Fix an integer overflow in fiemap() which was preventing filefrag
         from returning the full list of extents
      
       - Fix a refcounting bug on the device refcount, turned up by new
         assertions in the development branch
      
       - Fix a device removal/readd bug; write_super() was repeatedly dropping
         and retaking bch_dev->io_ref references
      
      * tag 'bcachefs-2024-05-07.2' of https://evilpiepirate.org/git/bcachefs:
        bcachefs: Add missing sched_annotate_sleep() in bch2_journal_flush_seq_async()
        bcachefs: Fix race in bch2_write_super()
        bcachefs: BCH_SB_LAYOUT_SIZE_BITS_MAX
        bcachefs: Add missing skcipher_request_set_callback() call
        bcachefs: Fix snapshot_t() usage in bch2_fs_quota_read_inode()
        bcachefs: Fix shift-by-64 in bformat_needs_redo()
        bcachefs: Guard against unknown k.k->type in __bkey_invalid()
        bcachefs: Add missing validation for superblock section clean
        bcachefs: Fix assert in bch2_alloc_v4_invalid()
        bcachefs: fix overflow in fiemap
        bcachefs: Add a better limit for maximum number of buckets
        bcachefs: Fix lifetime issue in device iterator helpers
        bcachefs: Fix bch2_dev_lookup() refcounting
        bcachefs: Initialize bch_write_op->failed in inline data path
        bcachefs: Fix refcount put in sb_field_resize error path
        bcachefs: Inodes need extra padding for varint_decode_fast()
        bcachefs: Fix early error path in bch2_fs_btree_key_cache_exit()
        bcachefs: bucket_pos_to_bp_noerror()
        bcachefs: don't free error pointers
        bcachefs: Fix a scheduler splat in __bch2_next_write_buffer_flush_journal_buf()
      f5fcbc8b
    • Linus Torvalds's avatar
      Merge tag 'soc-fixes-6.9-3' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc · 6d7ddd80
      Linus Torvalds authored
      Pull ARM SoC fixes from Arnd Bergmann:
       "These are a couple of last minute fixes that came in over the previous
        week, addressing:
      
         - A pin configuration bug on a qualcomm board that caused issues with
           ethernet and mmc
      
         - Two minor code fixes for misleading console output in the microchip
           firmware driver
      
         - A build warning in the sifive cache driver"
      
      * tag 'soc-fixes-6.9-3' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc:
        firmware: microchip: clarify that sizes and addresses are in hex
        firmware: microchip: don't unconditionally print validation success
        arm64: dts: qcom: sa8155p-adp: fix SDHC2 CD pin configuration
        cache: sifive_ccache: Silence unused variable warning
      6d7ddd80
    • Linus Torvalds's avatar
      Merge tag 'pci-v6.9-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci · 1ab1a19d
      Linus Torvalds authored
      Pull pci fixes from Bjorn Helgaas:
      
       - Update kernel-parameters doc to describe "pcie_aspm=off" more
         accurately (Bjorn Helgaas)
      
       - Restore the parent's (not the child's) ASPM state to the parent
         during resume, which fixes a reboot during resume (Kai-Heng Feng)
      
      * tag 'pci-v6.9-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci:
        PCI/ASPM: Restore parent state to parent, child state to child
        PCI/ASPM: Clarify that pcie_aspm=off means leave ASPM untouched
      1ab1a19d
    • Brian Foster's avatar
      virtiofs: include a newline in sysfs tag · 96d88f65
      Brian Foster authored
      The internal tag string doesn't contain a newline. Append one when
      emitting the tag via sysfs.
      
      [Stefan] Orthogonal to the newline issue, sysfs_emit(buf, "%s", fs->tag) is
      needed to prevent format string injection.
      Signed-off-by: default avatarBrian Foster <bfoster@redhat.com>
      Fixes: a8f62f50 ("virtiofs: export filesystem tags through sysfs")
      Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
      96d88f65
  3. 07 May, 2024 3 commits
  4. 06 May, 2024 9 commits