1. 13 Jan, 2024 2 commits
  2. 12 Jan, 2024 30 commits
  3. 11 Jan, 2024 8 commits
    • Linus Torvalds's avatar
      Merge tag 'net-next-6.8' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next · 3e7aeb78
      Linus Torvalds authored
      Pull networking updates from Paolo Abeni:
       "The most interesting thing is probably the networking structs
        reorganization and a significant amount of changes is around
        self-tests.
      
        Core & protocols:
      
         - Analyze and reorganize core networking structs (socks, netdev,
           netns, mibs) to optimize cacheline consumption and set up build
           time warnings to safeguard against future header changes
      
           This improves TCP performances with many concurrent connections up
           to 40%
      
         - Add page-pool netlink-based introspection, exposing the memory
           usage and recycling stats. This helps indentify bad PP users and
           possible leaks
      
         - Refine TCP/DCCP source port selection to no longer favor even
           source port at connect() time when IP_LOCAL_PORT_RANGE is set. This
           lowers the time taken by connect() for hosts having many active
           connections to the same destination
      
         - Refactor the TCP bind conflict code, shrinking related socket
           structs
      
         - Refactor TCP SYN-Cookie handling, as a preparation step to allow
           arbitrary SYN-Cookie processing via eBPF
      
         - Tune optmem_max for 0-copy usage, increasing the default value to
           128KB and namespecifying it
      
         - Allow coalescing for cloned skbs coming from page pools, improving
           RX performances with some common configurations
      
         - Reduce extension header parsing overhead at GRO time
      
         - Add bridge MDB bulk deletion support, allowing user-space to
           request the deletion of matching entries
      
         - Reorder nftables struct members, to keep data accessed by the
           datapath first
      
         - Introduce TC block ports tracking and use. This allows supporting
           multicast-like behavior at the TC layer
      
         - Remove UAPI support for retired TC qdiscs (dsmark, CBQ and ATM) and
           classifiers (RSVP and tcindex)
      
         - More data-race annotations
      
         - Extend the diag interface to dump TCP bound-only sockets
      
         - Conditional notification of events for TC qdisc class and actions
      
         - Support for WPAN dynamic associations with nearby devices, to form
           a sub-network using a specific PAN ID
      
         - Implement SMCv2.1 virtual ISM device support
      
         - Add support for Batman-avd mulicast packet type
      
        BPF:
      
         - Tons of verifier improvements:
             - BPF register bounds logic and range support along with a large
               test suite
             - log improvements
             - complete precision tracking support for register spills
             - track aligned STACK_ZERO cases as imprecise spilled registers.
               This improves the verifier "instructions processed" metric from
               single digit to 50-60% for some programs
             - support for user's global BPF subprogram arguments with few
               commonly requested annotations for a better developer
               experience
             - support tracking of BPF_JNE which helps cases when the compiler
               transforms (unsigned) "a > 0" into "if a == 0 goto xxx" and the
               like
             - several fixes
      
         - Add initial TX metadata implementation for AF_XDP with support in
           mlx5 and stmmac drivers. Two types of offloads are supported right
           now, that is, TX timestamp and TX checksum offload
      
         - Fix kCFI bugs in BPF all forms of indirect calls from BPF into
           kernel and from kernel into BPF work with CFI enabled. This allows
           BPF to work with CONFIG_FINEIBT=y
      
         - Change BPF verifier logic to validate global subprograms lazily
           instead of unconditionally before the main program, so they can be
           guarded using BPF CO-RE techniques
      
         - Support uid/gid options when mounting bpffs
      
         - Add a new kfunc which acquires the associated cgroup of a task
           within a specific cgroup v1 hierarchy where the latter is
           identified by its id
      
         - Extend verifier to allow bpf_refcount_acquire() of a map value
           field obtained via direct load which is a use-case needed in
           sched_ext
      
         - Add BPF link_info support for uprobe multi link along with bpftool
           integration for the latter
      
         - Support for VLAN tag in XDP hints
      
         - Remove deprecated bpfilter kernel leftovers given the project is
           developed in user-space (https://github.com/facebook/bpfilter)
      
        Misc:
      
         - Support for parellel TC self-tests execution
      
         - Increase MPTCP self-tests coverage
      
         - Updated the bridge documentation, including several so-far
           undocumented features
      
         - Convert all the net self-tests to run in unique netns, to avoid
           random failures due to conflict and allow concurrent runs
      
         - Add TCP-AO self-tests
      
         - Add kunit tests for both cfg80211 and mac80211
      
         - Autogenerate Netlink families documentation from YAML spec
      
         - Add yml-gen support for fixed headers and recursive nests, the tool
           can now generate user-space code for all genetlink families for
           which we have specs
      
         - A bunch of additional module descriptions fixes
      
         - Catch incorrect freeing of pages belonging to a page pool
      
        Driver API:
      
         - Rust abstractions for network PHY drivers; do not cover yet the
           full C API, but already allow implementing functional PHY drivers
           in rust
      
         - Introduce queue and NAPI support in the netdev Netlink interface,
           allowing complete access to the device <> NAPIs <> queues
           relationship
      
         - Introduce notifications filtering for devlink to allow control
           application scale to thousands of instances
      
         - Improve PHY validation, requesting rate matching information for
           each ethtool link mode supported by both the PHY and host
      
         - Add support for ethtool symmetric-xor RSS hash
      
         - ACPI based Wifi band RFI (WBRF) mitigation feature for the AMD
           platform
      
         - Expose pin fractional frequency offset value over new DPLL generic
           netlink attribute
      
         - Convert older drivers to platform remove callback returning void
      
         - Add support for PHY package MMD read/write
      
        New hardware / drivers:
      
         - Ethernet:
             - Octeon CN10K devices
             - Broadcom 5760X P7
             - Qualcomm SM8550 SoC
             - Texas Instrument DP83TG720S PHY
      
         - Bluetooth:
             - IMC Networks Bluetooth radio
      
        Removed:
      
         - WiFi:
             - libertas 16-bit PCMCIA support
             - Atmel at76c50x drivers
             - HostAP ISA/PCMCIA style 802.11b driver
             - zd1201 802.11b USB dongles
             - Orinoco ISA/PCMCIA 802.11b driver
             - Aviator/Raytheon driver
             - Planet WL3501 driver
             - RNDIS USB 802.11b driver
      
        Driver updates:
      
         - Ethernet high-speed NICs:
             - Intel (100G, ice, idpf):
                - allow one by one port representors creation and removal
                - add temperature and clock information reporting
                - add get/set for ethtool's header split ringparam
                - add again FW logging
                - adds support switchdev hardware packet mirroring
                - iavf: implement symmetric-xor RSS hash
                - igc: add support for concurrent physical and free-running
                  timers
                - i40e: increase the allowable descriptors
             - nVidia/Mellanox:
                - Preparation for Socket-Direct multi-dev netdev. That will
                  allow in future releases combining multiple PFs devices
                  attached to different NUMA nodes under the same netdev
             - Broadcom (bnxt):
                - TX completion handling improvements
                - add basic ntuple filter support
                - reduce MSIX vectors usage for MQPRIO offload
                - add VXLAN support, USO offload and TX coalesce completion
                  for P7
             - Marvell Octeon EP:
                - xmit-more support
                - add PF-VF mailbox support and use it for FW notifications
                  for VFs
             - Wangxun (ngbe/txgbe):
                - implement ethtool functions to operate pause param, ring
                  param, coalesce channel number and msglevel
             - Netronome/Corigine (nfp):
                - add flow-steering support
                - support UDP segmentation offload
      
         - Ethernet NICs embedded, slower, virtual:
             - Xilinx AXI: remove duplicate DMA code adopting the dma engine
               driver
             - stmmac: add support for HW-accelerated VLAN stripping
             - TI AM654x sw: add mqprio, frame preemption & coalescing
             - gve: add support for non-4k page sizes.
             - virtio-net: support dynamic coalescing moderation
      
         - nVidia/Mellanox Ethernet datacenter switches:
             - allow firmware upgrade without a reboot
             - more flexible support for bridge flooding via the compressed
               FID flooding mode
      
         - Ethernet embedded switches:
             - Microchip:
                - fine-tune flow control and speed configurations in KSZ8xxx
                - KSZ88X3: enable setting rmii reference
             - Renesas:
                - add jumbo frames support
             - Marvell:
                - 88E6xxx: add "eth-mac" and "rmon" stats support
      
         - Ethernet PHYs:
             - aquantia: add firmware load support
             - at803x: refactor the driver to simplify adding support for more
               chip variants
             - NXP C45 TJA11xx: Add MACsec offload support
      
         - Wifi:
             - MediaTek (mt76):
                - NVMEM EEPROM improvements
                - mt7996 Extremely High Throughput (EHT) improvements
                - mt7996 Wireless Ethernet Dispatcher (WED) support
                - mt7996 36-bit DMA support
             - Qualcomm (ath12k):
                - support for a single MSI vector
                - WCN7850: support AP mode
             - Intel (iwlwifi):
                - new debugfs file fw_dbg_clear
                - allow concurrent P2P operation on DFS channels
      
         - Bluetooth:
             - QCA2066: support HFP offload
             - ISO: more broadcast-related improvements
             - NXP: better recovery in case receiver/transmitter get out of sync"
      
      * tag 'net-next-6.8' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: (1714 commits)
        lan78xx: remove redundant statement in lan78xx_get_eee
        lan743x: remove redundant statement in lan743x_ethtool_get_eee
        bnxt_en: Fix RCU locking for ntuple filters in bnxt_rx_flow_steer()
        bnxt_en: Fix RCU locking for ntuple filters in bnxt_srxclsrldel()
        bnxt_en: Remove unneeded variable in bnxt_hwrm_clear_vnic_filter()
        tcp: Revert no longer abort SYN_SENT when receiving some ICMP
        Revert "mlx5 updates 2023-12-20"
        Revert "net: stmmac: Enable Per DMA Channel interrupt"
        ipvlan: Remove usage of the deprecated ida_simple_xx() API
        ipvlan: Fix a typo in a comment
        net/sched: Remove ipt action tests
        net: stmmac: Use interrupt mode INTM=1 for per channel irq
        net: stmmac: Add support for TX/RX channel interrupt
        net: stmmac: Make MSI interrupt routine generic
        dt-bindings: net: snps,dwmac: per channel irq
        net: phy: at803x: make read_status more generic
        net: phy: at803x: add support for cdt cross short test for qca808x
        net: phy: at803x: refactor qca808x cable test get status function
        net: phy: at803x: generalize cdt fault length function
        net: ethernet: cortina: Drop TSO support
        ...
      3e7aeb78
    • Linus Torvalds's avatar
      Merge tag 's390-6.8-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux · de927f6c
      Linus Torvalds authored
      Pull s390 updates from Alexander Gordeev:
      
       - Add machine variable capacity information to /proc/sysinfo.
      
       - Limit the waste of page tables and always align vmalloc area size and
         base address on segment boundary.
      
       - Fix a memory leak when an attempt to register interruption sub class
         (ISC) for the adjunct-processor (AP) guest failed.
      
       - Reset response code AP_RESPONSE_INVALID_GISA to understandable by
         guest AP_RESPONSE_INVALID_ADDRESS in response to a failed
         interruption sub class (ISC) registration attempt.
      
       - Improve reaction to adjunct-processor (AP)
         AP_RESPONSE_OTHERWISE_CHANGED response code when enabling interrupts
         on behalf of a guest.
      
       - Fix incorrect sysfs 'status' attribute of adjunct-processor (AP)
         queue device bound to the vfio_ap device driver when the mediated
         device is attached to a guest, but the queue device is not passed
         through.
      
       - Rework struct ap_card to hold the whole adjunct-processor (AP) card
         hardware information. As result, all the ugly bit checks are replaced
         by simple evaluations of the required bit fields.
      
       - Improve handling of some weird scenarios between service element (SE)
         host and SE guest with adjunct-processor (AP) pass-through support.
      
       - Change local_ctl_set_bit() and local_ctl_clear_bit() so they return
         the previous value of the to be changed control register. This is
         useful if a bit is only changed temporarily and the previous content
         needs to be restored.
      
       - The kernel starts with machine checks disabled and is expected to
         enable it once trap_init() is called. However the implementation
         allows machine checks early. Consistently enable it in trap_init()
         only.
      
       - local_mcck_disable() and local_mcck_enable() assume that machine
         checks are always enabled. Instead implement and use
         local_mcck_save() and local_mcck_restore() to disable machine checks
         and restore the previous state.
      
       - Modification of floating point control (FPC) register of a traced
         process using ptrace interface may lead to corruption of the FPC
         register of the tracing process. Fix this.
      
       - kvm_arch_vcpu_ioctl_set_fpu() allows to set the floating point
         control (FPC) register in vCPU, but may lead to corruption of the FPC
         register of the host process. Fix this.
      
       - Use READ_ONCE() to read a vCPU floating point register value from the
         memory mapped area. This avoids that, depending on code generation, a
         different value is tested for validity than the one that is used.
      
       - Get rid of test_fp_ctl(), since it is quite subtle to use it
         correctly. Instead copy a new floating point control register value
         into its save area and test the validity of the new value when
         loading it.
      
       - Remove superfluous save_fpu_regs() call.
      
       - Remove s390 support for ARCH_WANTS_DYNAMIC_TASK_STRUCT. All machines
         provide the vector facility since many years and the need to make the
         task structure size dependent on the vector facility does not exist.
      
       - Remove the "novx" kernel command line option, as the vector code runs
         without any problems since many years.
      
       - Add the vector facility to the z13 architecture level set (ALS). All
         hypervisors support the vector facility since many years. This allows
         compile time optimizations of the kernel.
      
       - Get rid of MACHINE_HAS_VX and replace it with cpu_has_vx(). As
         result, the compiled code will have less runtime checks and less
         code.
      
       - Convert pgste_get_lock() and pgste_set_unlock() ASM inlines to C.
      
       - Convert the struct subchannel spinlock from pointer to member.
      
      * tag 's390-6.8-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux: (24 commits)
        Revert "s390: update defconfigs"
        s390/cio: make sch->lock spinlock pointer a member
        s390: update defconfigs
        s390/mm: convert pgste locking functions to C
        s390/fpu: get rid of MACHINE_HAS_VX
        s390/als: add vector facility to z13 architecture level set
        s390/fpu: remove "novx" option
        s390/fpu: remove ARCH_WANTS_DYNAMIC_TASK_STRUCT support
        KVM: s390: remove superfluous save_fpu_regs() call
        s390/fpu: get rid of test_fp_ctl()
        KVM: s390: use READ_ONCE() to read fpc register value
        KVM: s390: fix setting of fpc register
        s390/ptrace: handle setting of fpc register correctly
        s390/nmi: implement and use local_mcck_save() / local_mcck_restore()
        s390/nmi: consistently enable machine checks in trap_init()
        s390/ctlreg: return old register contents when changing bits
        s390/ap: handle outband SE bind state change
        s390/ap: store TAPQ hwinfo in struct ap_card
        s390/vfio-ap: fix sysfs status attribute for AP queue devices
        s390/vfio-ap: improve reaction to response code 07 from PQAP(AQIC) command
        ...
      de927f6c
    • Linus Torvalds's avatar
      Merge tag 'asm-generic-6.8' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic · c2990100
      Linus Torvalds authored
      Pull asm-generic cleanups from Arnd Bergmann:
       "A series from Baoquan He cleans up the asm-generic/io.h to remove the
        ioremap_uc() definition from everything except x86, which still needs
        it for pre-PAT systems. This series notably contains a patch from
        Jiaxun Yang that converts MIPS to use asm-generic/io.h like every
        other architecture does, enabling future cleanups.
      
        Some of my own patches fix -Wmissing-prototype warnings in
        architecture specific code across several architectures. This is now
        needed as the warning is enabled by default. There are still some
        remaining warnings in minor platforms, but the series should catch
        most of the widely used ones make them more consistent with one
        another.
      
        David McKay fixes a bug in __generic_cmpxchg_local() when this is used
        on 64-bit architectures. This could currently only affect parisc64 and
        sparc64.
      
        Additional cleanups address from Linus Walleij, Uwe Kleine-König,
        Thomas Huth, and Kefeng Wang help reduce unnecessary inconsistencies
        between architectures"
      
      * tag 'asm-generic-6.8' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic:
        asm-generic: Fix 32 bit __generic_cmpxchg_local
        Hexagon: Make pfn accessors statics inlines
        ARC: mm: Make virt_to_pfn() a static inline
        mips: remove extraneous asm-generic/iomap.h include
        sparc: Use $(kecho) to announce kernel images being ready
        arm64: vdso32: Define BUILD_VDSO32_64 to correct prototypes
        csky: fix arch_jump_label_transform_static override
        arch: add do_page_fault prototypes
        arch: add missing prepare_ftrace_return() prototypes
        arch: vdso: consolidate gettime prototypes
        arch: include linux/cpu.h for trap_init() prototype
        arch: fix asm-offsets.c building with -Wmissing-prototypes
        arch: consolidate arch_irq_work_raise prototypes
        hexagon: Remove CONFIG_HEXAGON_ARCH_VERSION from uapi header
        asm/io: remove unnecessary xlate_dev_mem_ptr() and unxlate_dev_mem_ptr()
        mips: io: remove duplicated codes
        arch/*/io.h: remove ioremap_uc in some architectures
        mips: add <asm-generic/io.h> including
      c2990100
    • Linus Torvalds's avatar
      Merge tag 'modules-6.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux · 4cd083d5
      Linus Torvalds authored
      Pull module updates from Luis Chamberlain:
       "Just one cleanup and one documentation improvement change. No
        functional changes"
      
      * tag 'modules-6.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux:
        kernel/module: improve documentation for try_module_get()
        module: Remove redundant TASK_UNINTERRUPTIBLE
      4cd083d5
    • Linus Torvalds's avatar
      Merge tag 'sysctl-6.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux · a05aea98
      Linus Torvalds authored
      Pull sysctl updates from Luis Chamberlain:
       "To help make the move of sysctls out of kernel/sysctl.c not incur a
        size penalty sysctl has been changed to allow us to not require the
        sentinel, the final empty element on the sysctl array. Joel Granados
        has been doing all this work.
      
        In the v6.6 kernel we got the major infrastructure changes required to
        support this. For v6.7 we had all arch/ and drivers/ modified to
        remove the sentinel. For v6.8-rc1 we get a few more updates for fs/
        directory only.
      
        The kernel/ directory is left but we'll save that for v6.9-rc1 as
        those patches are still being reviewed. After that we then can expect
        also the removal of the no longer needed check for procname == NULL.
      
        Let us recap the purpose of this work:
      
         - this helps reduce the overall build time size of the kernel and run
           time memory consumed by the kernel by about ~64 bytes per array
      
         - the extra 64-byte penalty is no longer inncurred now when we move
           sysctls out from kernel/sysctl.c to their own files
      
        Thomas Weißschuh also sent a few cleanups, for v6.9-rc1 we expect to
        see further work by Thomas Weißschuh with the constificatin of the
        struct ctl_table.
      
        Due to Joel Granados's work, and to help bring in new blood, I have
        suggested for him to become a maintainer and he's accepted. So for
        v6.9-rc1 I look forward to seeing him sent you a pull request for
        further sysctl changes. This also removes Iurii Zaikin as a maintainer
        as he has moved on to other projects and has had no time to help at
        all"
      
      * tag 'sysctl-6.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux:
        sysctl: remove struct ctl_path
        sysctl: delete unused define SYSCTL_PERM_EMPTY_DIR
        coda: Remove the now superfluous sentinel elements from ctl_table array
        sysctl: Remove the now superfluous sentinel elements from ctl_table array
        fs: Remove the now superfluous sentinel elements from ctl_table array
        cachefiles: Remove the now superfluous sentinel element from ctl_table array
        sysclt: Clarify the results of selftest run
        sysctl: Add a selftest for handling empty dirs
        sysctl: Fix out of bounds access for empty sysctl registers
        MAINTAINERS: Add Joel Granados as co-maintainer for proc sysctl
        MAINTAINERS: remove Iurii Zaikin from proc sysctl
      a05aea98
    • Linus Torvalds's avatar
      Merge tag 'header_cleanup-2024-01-10' of https://evilpiepirate.org/git/bcachefs · 78273df7
      Linus Torvalds authored
      Pull header cleanups from Kent Overstreet:
       "The goal is to get sched.h down to a type only header, so the main
        thing happening in this patchset is splitting out various _types.h
        headers and dependency fixups, as well as moving some things out of
        sched.h to better locations.
      
        This is prep work for the memory allocation profiling patchset which
        adds new sched.h interdepencencies"
      
      * tag 'header_cleanup-2024-01-10' of https://evilpiepirate.org/git/bcachefs: (51 commits)
        Kill sched.h dependency on rcupdate.h
        kill unnecessary thread_info.h include
        Kill unnecessary kernel.h include
        preempt.h: Kill dependency on list.h
        rseq: Split out rseq.h from sched.h
        LoongArch: signal.c: add header file to fix build error
        restart_block: Trim includes
        lockdep: move held_lock to lockdep_types.h
        sem: Split out sem_types.h
        uidgid: Split out uidgid_types.h
        seccomp: Split out seccomp_types.h
        refcount: Split out refcount_types.h
        uapi/linux/resource.h: fix include
        x86/signal: kill dependency on time.h
        syscall_user_dispatch.h: split out *_types.h
        mm_types_task.h: Trim dependencies
        Split out irqflags_types.h
        ipc: Kill bogus dependency on spinlock.h
        shm: Slim down dependencies
        workqueue: Split out workqueue_types.h
        ...
      78273df7
    • Linus Torvalds's avatar
      Merge tag 'bcachefs-2024-01-10' of https://evilpiepirate.org/git/bcachefs · 999a36b5
      Linus Torvalds authored
      Pull bcachefs updates from Kent Overstreet:
      
       - btree write buffer rewrite: instead of adding keys to the btree write
         buffer at transaction commit time, we now journal them with a
         different journal entry type and copy them from the journal to the
         write buffer just prior to journal write.
      
         This reduces the number of atomic operations on shared cachelines in
         the transaction commit path and is a signicant performance
         improvement on some workloads: multithreaded 4k random writes went
         from ~650k iops to ~850k iops.
      
       - Bring back optimistic spinning for six locks: the new implementation
         doesn't use osq locks; instead we add to the lock waitlist as normal,
         and then spin on the lock_acquired bit in the waitlist entry, _not_
         the lock itself.
      
       - New ioctls:
      
          - BCH_IOCTL_DEV_USAGE_V2, which allows for new data types
      
          - BCH_IOCTL_OFFLINE_FSCK, which runs the kernel implementation of
            fsck but without mounting: useful for transparently using the
            kernel version of fsck from 'bcachefs fsck' when the kernel
            version is a better match for the on disk filesystem.
      
          - BCH_IOCTL_ONLINE_FSCK: online fsck. Not all passes are supported
            yet, but the passes that are supported are fully featured - errors
            may be corrected as normal.
      
         The new ioctls use the new 'thread_with_file' abstraction for kicking
         off a kthread that's tied to a file descriptor returned to userspace
         via the ioctl.
      
       - btree_paths within a btree_trans are now dynamically growable,
         instead of being limited to 64. This is important for the
         check_directory_structure phase of fsck, and also fixes some issues
         we were having with btree path overflow in the reflink btree.
      
       - Trigger refactoring; prep work for the upcoming disk space accounting
         rewrite
      
       - Numerous bugfixes :)
      
      * tag 'bcachefs-2024-01-10' of https://evilpiepirate.org/git/bcachefs: (226 commits)
        bcachefs: eytzinger0_find() search should be const
        bcachefs: move "ptrs not changing" optimization to bch2_trigger_extent()
        bcachefs: fix simulateously upgrading & downgrading
        bcachefs: Restart recovery passes more reliably
        bcachefs: bch2_dump_bset() doesn't choke on u64s == 0
        bcachefs: improve checksum error messages
        bcachefs: improve validate_bset_keys()
        bcachefs: print sb magic when relevant
        bcachefs: __bch2_sb_field_to_text()
        bcachefs: %pg is banished
        bcachefs: Improve would_deadlock trace event
        bcachefs: fsck_err()s don't need to manually check c->sb.version anymore
        bcachefs: Upgrades now specify errors to fix, like downgrades
        bcachefs: no thread_with_file in userspace
        bcachefs: Don't autofix errors we can't fix
        bcachefs: add missing bch2_latency_acct() call
        bcachefs: increase max_active on io_complete_wq
        bcachefs: add time_stats for btree_node_read_done()
        bcachefs: don't clear accessed bit in btree node fill
        bcachefs: Add an option to control btree node prefetching
        ...
      999a36b5
    • Linus Torvalds's avatar
      Merge tag 'v6.8-rc-part1-smb-client' of git://git.samba.org/sfrench/cifs-2.6 · 84e9a2d5
      Linus Torvalds authored
      Pull smb client fixes from Steve French:
       "Various smb client fixes, most related to better handling special file
        types:
      
         - Improve handling of special file types:
            - performance improvement (better compounding and better caching
              of readdir entries that are reparse points)
            - extend support for creating special files (sockets, fifos,
              block/char devices)
            - fix renaming and hardlinking of reparse points
            - extend support for creating symlinks with IO_REPARSE_TAG_SYMLINK
      
         - Multichannel logging improvement
      
         - Exception handling fix
      
         - Minor cleanups"
      
      * tag 'v6.8-rc-part1-smb-client' of git://git.samba.org/sfrench/cifs-2.6:
        cifs: update internal module version number for cifs.ko
        cifs: remove unneeded return statement
        cifs: make cifs_chan_update_iface() a void function
        cifs: delete unnecessary NULL checks in cifs_chan_update_iface()
        cifs: get rid of dup length check in parse_reparse_point()
        smb: client: stop revalidating reparse points unnecessarily
        cifs: Pass unbyteswapped eof value into SMB2_set_eof()
        smb3: Improve exception handling in allocate_mr_list()
        cifs: fix in logging in cifs_chan_update_iface
        smb: client: handle special files and symlinks in SMB3 POSIX
        smb: client: cleanup smb2_query_reparse_point()
        smb: client: allow creating symlinks via reparse points
        smb: client: fix hardlinking of reparse points
        smb: client: fix renaming of reparse points
        smb: client: optimise reparse point querying
        smb: client: allow creating special files via reparse points
        smb: client: extend smb2_compound_op() to accept more commands
        smb: client: Fix minor whitespace errors and warnings
      84e9a2d5