Skip to content
  1. Oct 01, 2023
  2. Sep 25, 2023
    • Arnd Bergmann's avatar
      Documentation: kbuild: explain handling optional dependencies · 28d49e17
      Arnd Bergmann authored
      
      
      This problem frequently comes up in randconfig testing, with
      drivers failing to link because of a dependency on an optional
      feature.
      
      The Kconfig language for this is very confusing, so try to
      document it in "Kconfig hints" section.
      
      Reviewed-by: default avatarJavier Martinez Canillas <javierm@redhat.com>
      Reviewed-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
      Reviewed-by: default avatarNicolas Schier <nicolas@fjasle.eu>
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
      28d49e17
    • Martin Nybo Andersen's avatar
      kbuild: Use CRC32 and a 1MiB dictionary for XZ compressed modules · fbf5892d
      Martin Nybo Andersen authored
      Kmod is now (since kmod commit 09c9f8c5df04 ("libkmod: Use kernel
      decompression when available")) using the kernel decompressor, when
      loading compressed modules.
      
      However, the kernel XZ decompressor is XZ Embedded, which doesn't
      handle CRC64 and dictionaries larger than 1MiB.
      
      Use CRC32 and 1MiB dictionary when XZ compressing and installing
      kernel modules.
      
      Link: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1050582
      
      
      Signed-off-by: default avatarMartin Nybo Andersen <tweek@tweek.dk>
      Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
      fbf5892d
    • Linus Torvalds's avatar
      Linux 6.6-rc3 · 6465e260
      Linus Torvalds authored
      6465e260
    • Linus Torvalds's avatar
      Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm · 8a511e7e
      Linus Torvalds authored
      Pull kvm fixes from Paolo Bonzini:
      "ARM:
      
         - Fix EL2 Stage-1 MMIO mappings where a random address was used
      
         - Fix SMCCC function number comparison when the SVE hint is set
      
        RISC-V:
      
         - Fix KVM_GET_REG_LIST API for ISA_EXT registers
      
         - Fix reading ISA_EXT register of a missing extension
      
         - Fix ISA_EXT register handling in get-reg-list test
      
         - Fix filtering of AIA registers in get-reg-list test
      
        x86:
      
         - Fixes for TSC_AUX virtualization
      
         - Stop zapping page tables asynchronously, since we don't zap them as
           often as before"
      
      * tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm:
        KVM: SVM: Do not use user return MSR support for virtualized TSC_AUX
        KVM: SVM: Fix TSC_AUX virtualization setup
        KVM: SVM: INTERCEPT_RDTSCP is never intercepted anyway
        KVM: x86/mmu: Stop zapping invalidated TDP MMU roots asynchronously
        KVM: x86/mmu: Do not filter address spaces in for_each_tdp_mmu_root_yield_safe()
        KVM: x86/mmu: Open code leaf invalidation from mmu_notifier
        KVM: riscv: selftests: Selectively filter-out AIA registers
        KVM: riscv: selftests: Fix ISA_EXT register handling in get-reg-list
        RISC-V: KVM: Fix riscv_vcpu_get_isa_ext_single() for missing extensions
        RISC-V: KVM: Fix KVM_GET_REG_LIST API for ISA_EXT registers
        KVM: selftests: Assert that vasprintf() is successful
        KVM: arm64: nvhe: Ignore SVE hint in SMCCC function ID
        KVM: arm64: Properly return allocated EL2 VA from hyp_alloc_private_va_range()
      8a511e7e
    • Linus Torvalds's avatar
      Merge tag 'trace-v6.6-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace · 5edc6bb3
      Linus Torvalds authored
      Pull tracing fixes from Steven Rostedt:
      
       - Fix the "bytes" output of the per_cpu stat file
      
         The tracefs/per_cpu/cpu*/stats "bytes" was giving bogus values as the
         accounting was not accurate. It is suppose to show how many used
         bytes are still in the ring buffer, but even when the ring buffer was
         empty it would still show there were bytes used.
      
       - Fix a bug in eventfs where reading a dynamic event directory (open)
         and then creating a dynamic event that goes into that diretory screws
         up the accounting.
      
         On close, the newly created event dentry will get a "dput" without
         ever having a "dget" done for it. The fix is to allocate an array on
         dir open to save what dentries were actually "dget" on, and what ones
         to "dput" on close.
      
      * tag 'trace-v6.6-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace:
        eventfs: Remember what dentries were created on dir open
        ring-buffer: Fix bytes info in per_cpu buffer stats
      5edc6bb3
    • Linus Torvalds's avatar
      Merge tag 'cxl-fixes-6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/cxl/cxl · 2ad78f8c
      Linus Torvalds authored
      Pull cxl fixes from Dan Williams:
       "A collection of regression fixes, bug fixes, and some small cleanups
        to the Compute Express Link code.
      
        The regressions arrived in the v6.5 dev cycle and missed the v6.6
        merge window due to my personal absences this cycle. The most
        important fixes are for scenarios where the CXL subsystem fails to
        parse valid region configurations established by platform firmware.
        This is important because agreement between OS and BIOS on the CXL
        configuration is fundamental to implementing "OS native" error
        handling, i.e. address translation and component failure
        identification.
      
        Other important fixes are a driver load error when the BIOS lets the
        Linux PCI core handle AER events, but not CXL memory errors.
      
        The other fixex might have end user impact, but for now are only known
        to trigger in our test/emulation environment.
      
        Summary:
      
         - Fix multiple scenarios where platform firmware defined regions fail
           to be assembled by the CXL core.
      
         - Fix a spurious driver-load failure on platforms that enable OS
           native AER, but not OS native CXL error handling.
      
         - Fix a regression detecting "poison" commands when "security"
           commands are also defined.
      
         - Fix a cxl_test regression with the move to centralize CXL port
           register enumeration in the CXL core.
      
         - Miscellaneous small fixes and cleanups"
      
      * tag 'cxl-fixes-6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/cxl/cxl:
        cxl/acpi: Annotate struct cxl_cxims_data with __counted_by
        cxl/port: Fix cxl_test register enumeration regression
        cxl/region: Refactor granularity select in cxl_port_setup_targets()
        cxl/region: Match auto-discovered region decoders by HPA range
        cxl/mbox: Fix CEL logic for poison and security commands
        cxl/pci: Replace host_bridge->native_aer with pcie_aer_is_native()
        PCI/AER: Export pcie_aer_is_native()
        cxl/pci: Fix appropriate checking for _OSC while handling CXL RAS registers
      2ad78f8c
  3. Sep 24, 2023
  4. Sep 23, 2023
    • Paolo Bonzini's avatar
      Merge tag 'kvm-riscv-fixes-6.6-1' of https://github.com/kvm-riscv/linux into HEAD · 5804c19b
      Paolo Bonzini authored
      KVM/riscv fixes for 6.6, take #1
      
      - Fix KVM_GET_REG_LIST API for ISA_EXT registers
      - Fix reading ISA_EXT register of a missing extension
      - Fix ISA_EXT register handling in get-reg-list test
      - Fix filtering of AIA registers in get-reg-list test
      5804c19b
    • Tom Lendacky's avatar
      KVM: SVM: Do not use user return MSR support for virtualized TSC_AUX · 916e3e5f
      Tom Lendacky authored
      
      
      When the TSC_AUX MSR is virtualized, the TSC_AUX value is swap type "B"
      within the VMSA. This means that the guest value is loaded on VMRUN and
      the host value is restored from the host save area on #VMEXIT.
      
      Since the value is restored on #VMEXIT, the KVM user return MSR support
      for TSC_AUX can be replaced by populating the host save area with the
      current host value of TSC_AUX. And, since TSC_AUX is not changed by Linux
      post-boot, the host save area can be set once in svm_hardware_enable().
      This eliminates the two WRMSR instructions associated with the user return
      MSR support.
      
      Signed-off-by: default avatarTom Lendacky <thomas.lendacky@amd.com>
      Message-Id: <d381de38eb0ab6c9c93dda8503b72b72546053d7.1694811272.git.thomas.lendacky@amd.com>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      916e3e5f
    • Tom Lendacky's avatar
      KVM: SVM: Fix TSC_AUX virtualization setup · e0096d01
      Tom Lendacky authored
      The checks for virtualizing TSC_AUX occur during the vCPU reset processing
      path. However, at the time of initial vCPU reset processing, when the vCPU
      is first created, not all of the guest CPUID information has been set. In
      this case the RDTSCP and RDPID feature support for the guest is not in
      place and so TSC_AUX virtualization is not established.
      
      This continues for each vCPU created for the guest. On the first boot of
      an AP, vCPU reset processing is executed as a result of an APIC INIT
      event, this time with all of the guest CPUID information set, resulting
      in TSC_AUX virtualization being enabled, but only for the APs. The BSP
      always sees a TSC_AUX value of 0 which probably went unnoticed because,
      at least for Linux, the BSP TSC_AUX value is 0.
      
      Move the TSC_AUX virtualization enablement out of the init_vmcb() path and
      into the vcpu_after_set_cpuid() path to allow for proper initialization of
      the support after the guest CPUID information has been set.
      
      With the TSC_AUX virtualization support now in the vcpu_set_after_cpuid()
      path, the intercepts must be either cleared or set based on the guest
      CPUID input.
      
      Fixes: 296d5a17
      
       ("KVM: SEV-ES: Use V_TSC_AUX if available instead of RDTSC/MSR_TSC_AUX intercepts")
      Signed-off-by: default avatarTom Lendacky <thomas.lendacky@amd.com>
      Message-Id: <4137fbcb9008951ab5f0befa74a0399d2cce809a.1694811272.git.thomas.lendacky@amd.com>
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      e0096d01
    • Paolo Bonzini's avatar
      KVM: SVM: INTERCEPT_RDTSCP is never intercepted anyway · e8d93d5d
      Paolo Bonzini authored
      svm_recalc_instruction_intercepts() is always called at least once
      before the vCPU is started, so the setting or clearing of the RDTSCP
      intercept can be dropped from the TSC_AUX virtualization support.
      
      Extracted from a patch by Tom Lendacky.
      
      Cc: stable@vger.kernel.org
      Fixes: 296d5a17
      
       ("KVM: SEV-ES: Use V_TSC_AUX if available instead of RDTSC/MSR_TSC_AUX intercepts")
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      e8d93d5d
    • Sean Christopherson's avatar
      KVM: x86/mmu: Stop zapping invalidated TDP MMU roots asynchronously · 0df9dab8
      Sean Christopherson authored
      
      
      Stop zapping invalidate TDP MMU roots via work queue now that KVM
      preserves TDP MMU roots until they are explicitly invalidated.  Zapping
      roots asynchronously was effectively a workaround to avoid stalling a vCPU
      for an extended during if a vCPU unloaded a root, which at the time
      happened whenever the guest toggled CR0.WP (a frequent operation for some
      guest kernels).
      
      While a clever hack, zapping roots via an unbound worker had subtle,
      unintended consequences on host scheduling, especially when zapping
      multiple roots, e.g. as part of a memslot.  Because the work of zapping a
      root is no longer bound to the task that initiated the zap, things like
      the CPU affinity and priority of the original task get lost.  Losing the
      affinity and priority can be especially problematic if unbound workqueues
      aren't affined to a small number of CPUs, as zapping multiple roots can
      cause KVM to heavily utilize the majority of CPUs in the system, *beyond*
      the CPUs KVM is already using to run vCPUs.
      
      When deleting a memslot via KVM_SET_USER_MEMORY_REGION, the async root
      zap can result in KVM occupying all logical CPUs for ~8ms, and result in
      high priority tasks not being scheduled in in a timely manner.  In v5.15,
      which doesn't preserve unloaded roots, the issues were even more noticeable
      as KVM would zap roots more frequently and could occupy all CPUs for 50ms+.
      
      Consuming all CPUs for an extended duration can lead to significant jitter
      throughout the system, e.g. on ChromeOS with virtio-gpu, deleting memslots
      is a semi-frequent operation as memslots are deleted and recreated with
      different host virtual addresses to react to host GPU drivers allocating
      and freeing GPU blobs.  On ChromeOS, the jitter manifests as audio blips
      during games due to the audio server's tasks not getting scheduled in
      promptly, despite the tasks having a high realtime priority.
      
      Deleting memslots isn't exactly a fast path and should be avoided when
      possible, and ChromeOS is working towards utilizing MAP_FIXED to avoid the
      memslot shenanigans, but KVM is squarely in the wrong.  Not to mention
      that removing the async zapping eliminates a non-trivial amount of
      complexity.
      
      Note, one of the subtle behaviors hidden behind the async zapping is that
      KVM would zap invalidated roots only once (ignoring partial zaps from
      things like mmu_notifier events).  Preserve this behavior by adding a flag
      to identify roots that are scheduled to be zapped versus roots that have
      already been zapped but not yet freed.
      
      Add a comment calling out why kvm_tdp_mmu_invalidate_all_roots() can
      encounter invalid roots, as it's not at all obvious why zapping
      invalidated roots shouldn't simply zap all invalid roots.
      
      Reported-by: default avatarPattara Teerapong <pteerapong@google.com>
      Cc: David Stevens <stevensd@google.com>
      Cc: Yiwei Zhang<zzyiwei@google.com>
      Cc: Paul Hsia <paulhsia@google.com>
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarSean Christopherson <seanjc@google.com>
      Message-Id: <20230916003916.2545000-4-seanjc@google.com>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      0df9dab8
    • Paolo Bonzini's avatar
      KVM: x86/mmu: Do not filter address spaces in for_each_tdp_mmu_root_yield_safe() · 441a5dfc
      Paolo Bonzini authored
      
      
      All callers except the MMU notifier want to process all address spaces.
      Remove the address space ID argument of for_each_tdp_mmu_root_yield_safe()
      and switch the MMU notifier to use __for_each_tdp_mmu_root_yield_safe().
      
      Extracted out of a patch by Sean Christopherson <seanjc@google.com>
      
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      441a5dfc
    • Linus Torvalds's avatar
      Merge tag 'hardening-v6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux · d90b0276
      Linus Torvalds authored
      Pull hardening fixes from Kees Cook:
      
       - Fix UAPI stddef.h to avoid C++-ism (Alexey Dobriyan)
      
       - Fix harmless UAPI stddef.h header guard endif (Alexey Dobriyan)
      
      * tag 'hardening-v6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
        uapi: stddef.h: Fix __DECLARE_FLEX_ARRAY for C++
        uapi: stddef.h: Fix header guard location
      d90b0276
    • Linus Torvalds's avatar
      Merge tag 'xfs-6.6-fixes-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux · 3abc79dc
      Linus Torvalds authored
      Pull xfs fixes from Chandan Babu:
      
       - Fix an integer overflow bug when processing an fsmap call
      
       - Fix crash due to CPU hot remove event racing with filesystem mount
         operation
      
       - During read-only mount, XFS does not allow the contents of the log to
         be recovered when there are one or more unrecognized rcompat features
         in the primary superblock, since the log might have intent items
         which the kernel does not know how to process
      
       - During recovery of log intent items, XFS now reserves log space
         sufficient for one cycle of a permanent transaction to execute.
         Otherwise, this could lead to livelocks due to non-availability of
         log space
      
       - On an fs which has an ondisk unlinked inode list, trying to delete a
         file or allocating an O_TMPFILE file can cause the fs to the shutdown
         if the first inode in the ondisk inode list is not present in the
         inode cache. The bug is solved by explicitly loading the first inode
         in the ondisk unlinked inode list into the inode cache if it is not
         already cached
      
         A similar problem arises when the uncached inode is present in the
         middle of the ondisk unlinked inode list. This second bug is
         triggered when executing operations like quotacheck and bulkstat. In
         this case, XFS now reads in the entire ondisk unlinked inode list
      
       - Enable LARP mode only on recent v5 filesystems
      
       - Fix a out of bounds memory access in scrub
      
       - Fix a performance bug when locating the tail of the log during
         mounting a filesystem
      
      * tag 'xfs-6.6-fixes-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux:
        xfs: use roundup_pow_of_two instead of ffs during xlog_find_tail
        xfs: only call xchk_stats_merge after validating scrub inputs
        xfs: require a relatively recent V5 filesystem for LARP mode
        xfs: make inode unlinked bucket recovery work with quotacheck
        xfs: load uncached unlinked inodes into memory on demand
        xfs: reserve less log space when recovering log intent items
        xfs: fix log recovery when unknown rocompat bits are set
        xfs: reload entire unlinked bucket lists
        xfs: allow inode inactivation during a ro mount log recovery
        xfs: use i_prev_unlinked to distinguish inodes that are not on the unlinked list
        xfs: remove CPU hotplug infrastructure
        xfs: remove the all-mounts list
        xfs: use per-mount cpumask to track nonempty percpu inodegc lists
        xfs: fix an agbno overflow in __xfs_getfsmap_datadev
        xfs: fix per-cpu CIL structure aggregation racing with dying cpus
        xfs: fix select in config XFS_ONLINE_SCRUB_STATS
      3abc79dc
    • Kees Cook's avatar
      cxl/acpi: Annotate struct cxl_cxims_data with __counted_by · c66650d2
      Kees Cook authored
      Prepare for the coming implementation by GCC and Clang of the __counted_by
      attribute. Flexible array members annotated with __counted_by can have
      their accesses bounds-checked at run-time checking via CONFIG_UBSAN_BOUNDS
      (for array indexing) and CONFIG_FORTIFY_SOURCE (for strcpy/memcpy-family
      functions).
      
      As found with Coccinelle[1], add __counted_by for struct cxl_cxims_data.
      Additionally, since the element count member must be set before accessing
      the annotated flexible array member, move its initialization earlier.
      
      [1] https://github.com/kees/kernel-tools/blob/trunk/coccinelle/examples/counted_by.cocci
      
      
      
      Cc: Davidlohr Bueso <dave@stgolabs.net>
      Cc: Jonathan Cameron <jonathan.cameron@huawei.com>
      Cc: Dave Jiang <dave.jiang@intel.com>
      Cc: Alison Schofield <alison.schofield@intel.com>
      Cc: Vishal Verma <vishal.l.verma@intel.com>
      Cc: Ira Weiny <ira.weiny@intel.com>
      Cc: Dan Williams <dan.j.williams@intel.com>
      Cc: linux-cxl@vger.kernel.org
      Signed-off-by: default avatarKees Cook <keescook@chromium.org>
      Reviewed-by: default avatarVishal Verma <vishal.l.verma@intel.com>
      Reviewed-by: default avatarDave Jiang <dave.jiang@intel.com>
      Link: https://lore.kernel.org/r/20230922175319.work.096-kees@kernel.org
      
      
      Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
      c66650d2
    • Dan Williams's avatar
      cxl/port: Fix cxl_test register enumeration regression · a76b6251
      Dan Williams authored
      The cxl_test unit test environment models a CXL topology for
      sysfs/user-ABI regression testing. It uses interface mocking via the
      "--wrap=" linker option to redirect cxl_core routines that parse
      hardware registers with versions that just publish objects, like
      devm_cxl_enumerate_decoders().
      
      Starting with:
      
      Commit 19ab69a6 ("cxl/port: Store the port's Component Register mappings in struct cxl_port")
      
      ...port register enumeration is moved into devm_cxl_add_port(). This
      conflicts with the "cxl_test avoids emulating registers stance" so
      either the port code needs to be refactored (too violent), or modified
      so that register enumeration is skipped on "fake" cxl_test ports
      (annoying, but straightforward).
      
      This conflict has happened previously and the "check for platform
      device" workaround to avoid instrusive refactoring was deployed in those
      scenarios. In general, refactoring should only benefit production code,
      test code needs to remain minimally instrusive to the greatest extent
      possible.
      
      This was missed previously because it may sometimes just cause warning
      messages to be emitted, but it can also cause test failures. The
      backport to -stable is only nice to have for clean cxl_test runs.
      
      Fixes: 19ab69a6
      
       ("cxl/port: Store the port's Component Register mappings in struct cxl_port")
      Cc: stable@vger.kernel.org
      Reported-by: default avatarAlison Schofield <alison.schofield@intel.com>
      Reviewed-by: default avatarDave Jiang <dave.jiang@intel.com>
      Tested-by: default avatarDave Jiang <dave.jiang@intel.com>
      Link: https://lore.kernel.org/r/169476525052.1013896.6235102957693675187.stgit@dwillia2-xfh.jf.intel.com
      
      
      Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
      a76b6251
    • Steven Rostedt (Google)'s avatar
      eventfs: Remember what dentries were created on dir open · ef36b4f9
      Steven Rostedt (Google) authored
      Using the following code with libtracefs:
      
      	int dfd;
      
      	// create the directory events/kprobes/kp1
      	tracefs_kprobe_raw(NULL, "kp1", "schedule_timeout", "time=$arg1");
      
      	// Open the kprobes directory
      	dfd = tracefs_instance_file_open(NULL, "events/kprobes", O_RDONLY);
      
      	// Do a lookup of the kprobes/kp1 directory (by looking at enable)
      	tracefs_file_exists(NULL, "events/kprobes/kp1/enable");
      
      	// Now create a new entry in the kprobes directory
      	tracefs_kprobe_raw(NULL, "kp2", "schedule_hrtimeout", "expires=$arg1");
      
      	// Do another lookup to create the dentries
      	tracefs_file_exists(NULL, "events/kprobes/kp2/enable"))
      
      	// Close the directory
      	close(dfd);
      
      What happened above, the first open (dfd) will call
      dcache_dir_open_wrapper() that will create the dentries and up their ref
      counts.
      
      Now the creation of "kp2" will add another dentry within the kprobes
      directory.
      
      Upon the close of dfd, eventfs_release() will now do a dput for all the
      entries in kprobes. But this is where the problem lies. The open only
      upped the dentry of kp1 and not kp2. Now the close is decrementing both
      kp1 and kp2, which causes kp2 to get a negative count.
      
      Doing a "trace-cmd reset" which deletes all the kprobes cause the kernel
      to crash! (due to the messed up accounting of the ref counts).
      
      To solve this, save all the dentries that are opened in the
      dcache_dir_open_wrapper() into an array, and use this array to know what
      dentries to do a dput on in eventfs_release().
      
      Since the dcache_dir_open_wrapper() calls dcache_dir_open() which uses the
      file->private_data, we need to also add a wrapper around dcache_readdir()
      that uses the cursor assigned to the file->private_data. This is because
      the dentries need to also be saved in the file->private_data. To do this
      create the structure:
      
        struct dentry_list {
      	void		*cursor;
      	struct dentry	**dentries;
        };
      
      Which will hold both the cursor and the dentries. Some shuffling around is
      needed to make sure that dcache_dir_open() and dcache_readdir() only see
      the cursor.
      
      Link: https://lore.kernel.org/linux-trace-kernel/20230919211804.230edf1e@gandalf.local.home/
      Link: https://lore.kernel.org/linux-trace-kernel/20230922163446.1431d4fa@gandalf.local.home
      
      Cc: Mark Rutland <mark.rutland@arm.com>
      Cc: Ajay Kaher <akaher@vmware.com>
      Fixes: 63940449
      
       ("eventfs: Implement eventfs lookup, read, open functions")
      Reported-by: default avatar"Masami Hiramatsu (Google)" <mhiramat@kernel.org>
      Signed-off-by: default avatarSteven Rostedt (Google) <rostedt@goodmis.org>
      ef36b4f9
    • Zheng Yejian's avatar
      ring-buffer: Fix bytes info in per_cpu buffer stats · 45d99ea4
      Zheng Yejian authored
      The 'bytes' info in file 'per_cpu/cpu<X>/stats' means the number of
      bytes in cpu buffer that have not been consumed. However, currently
      after consuming data by reading file 'trace_pipe', the 'bytes' info
      was not changed as expected.
      
        # cat per_cpu/cpu0/stats
        entries: 0
        overrun: 0
        commit overrun: 0
        bytes: 568             <--- 'bytes' is problematical !!!
        oldest event ts:  8651.371479
        now ts:  8653.912224
        dropped events: 0
        read events: 8
      
      The root cause is incorrect stat on cpu_buffer->read_bytes. To fix it:
        1. When stat 'read_bytes', account consumed event in rb_advance_reader();
        2. When stat 'entries_bytes', exclude the discarded padding event which
           is smaller than minimum size because it is invisible to reader. Then
           use rb_page_commit() instead of BUF_PAGE_SIZE at where accounting for
           page-based read/remove/overrun.
      
      Also correct the comments of ring_buffer_bytes_cpu() in this patch.
      
      Link: https://lore.kernel.org/linux-trace-kernel/20230921125425.1708423-1-zhengyejian1@huawei.com
      
      Cc: stable@vger.kernel.org
      Fixes: c64e148a
      
       ("trace: Add ring buffer stats to measure rate of events")
      Signed-off-by: default avatarZheng Yejian <zhengyejian1@huawei.com>
      Signed-off-by: default avatarSteven Rostedt (Google) <rostedt@goodmis.org>
      45d99ea4
    • Linus Torvalds's avatar
      Merge tag 'thermal-6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm · 8018e02a
      Linus Torvalds authored
      Pull thermal control fix from Rafael Wysocki:
       "Unbreak the trip point update sysfs interface that has been broken
        since the 6.3 cycle (Rafael Wysocki)"
      
      * tag 'thermal-6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
        thermal: sysfs: Fix trip_point_hyst_store()
      8018e02a
    • Linus Torvalds's avatar
      Merge tag 'acpi-6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm · b184c040
      Linus Torvalds authored
      Pull ACPI fixes from Rafael Wysocki:
       "These fix a general ACPI processor driver regression and an ia64 build
        issue, both introduced recently.
      
        Specifics:
      
         - Fix recently introduced uninitialized memory access issue in the
           ACPI processor driver (Michal Wilczynski)
      
         - Fix ia64 build inadvertently broken by recent ACPI processor driver
           changes, which is prudent to do for 6.6 even though ia64 support is
           slated for removal in 6.7 (Ard Biesheuvel)"
      
      * tag 'acpi-6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
        ACPI: processor: Fix uninitialized access of buf in acpi_set_pdc_bits()
        acpi: Provide ia64 dummy implementation of acpi_proc_quirk_mwait_check()
      b184c040
    • Linus Torvalds's avatar
      Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux · 36fcf381
      Linus Torvalds authored
      Pull arm64 fixes from Will Deacon:
       "Small crop of relatively boring arm64 fixes for -rc3.
      
        That's not to say we don't have any juicy bugs, however, it's just
        that fixes for those are likely to come via -mm and -tip for a hugetlb
        and an atomics issue respectively. I get left with the
        documentation...
      
         - Fix detection of "ClearBHB" and "Hinted Conditional Branch" features
      
         - Fix broken wildcarding for Arm PMU MAINTAINERS entry
      
         - Add missing documentation for userspace-visible ID register fields"
      
      * tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux:
        arm64: Document missing userspace visible fields in ID_AA64ISAR2_EL1
        arm64/hbc: Document HWCAP2_HBC
        arm64/sme: Include ID_AA64PFR1_EL1.SME in cpu-feature-registers.rst
        arm64: cpufeature: Fix CLRBHB and BC detection
        MAINTAINERS: Use wildcard pattern for ARM PMU headers
      36fcf381
    • Linus Torvalds's avatar
      Merge tag 'x86_urgent_for_v6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · b61ec8d0
      Linus Torvalds authored
      Pull x86 rethunk fixes from Borislav Petkov:
       "Fix the patching ordering between static calls and return thunks"
      
      * tag 'x86_urgent_for_v6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86,static_call: Fix static-call vs return-thunk
        x86/alternatives: Remove faulty optimization
      b61ec8d0
    • Linus Torvalds's avatar
      Merge tag 'x86-urgent-2023-09-22' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · e583bffe
      Linus Torvalds authored
      Pull misc x86 fixes from Ingo Molnar:
      
       - Fix a kexec bug
      
       - Fix an UML build bug
      
       - Fix a handful of SRSO related bugs
      
       - Fix a shadow stacks handling bug & robustify related code
      
      * tag 'x86-urgent-2023-09-22' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/shstk: Add warning for shadow stack double unmap
        x86/shstk: Remove useless clone error handling
        x86/shstk: Handle vfork clone failure correctly
        x86/srso: Fix SBPB enablement for spec_rstack_overflow=off
        x86/srso: Don't probe microcode in a guest
        x86/srso: Set CPUID feature bits independently of bug or mitigation status
        x86/srso: Fix srso_show_state() side effect
        x86/asm: Fix build of UML with KASAN
        x86/mm, kexec, ima: Use memblock_free_late() from ima_free_kexec_buffer()
      e583bffe
    • Linus Torvalds's avatar
      Merge tag 'sched-urgent-2023-09-22' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 5b47b576
      Linus Torvalds authored
      Pull scheduler fix from Ingo Molnar:
       "Fix a PF_IDLE initialization bug that generated warnings on tiny-RCU"
      
      * tag 'sched-urgent-2023-09-22' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        kernel/sched: Modify initial boot task idle setup
      5b47b576
    • Linus Torvalds's avatar
      Merge tag 'locking-urgent-2023-09-22' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 725e2d7e
      Linus Torvalds authored
      Pull locking fixes from Ingo Molnar:
       "Fix a include/linux/atomic/atomic-arch-fallback.h breakage that
        generated incorrect code, and fix a lockdep reporting race that may
        result in lockups"
      
      * tag 'locking-urgent-2023-09-22' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        locking/seqlock: Do the lockdep annotation before locking in do_write_seqcount_begin_nested()
        locking/atomic: scripts: fix fallback ifdeffery
      725e2d7e
    • Peter Zijlstra's avatar
      x86,static_call: Fix static-call vs return-thunk · aee9d30b
      Peter Zijlstra authored
      Commit
      
        7825451f ("static_call: Add call depth tracking support")
      
      failed to realize the problem fixed there is not specific to call depth
      tracking but applies to all return-thunk uses.
      
      Move the fix to the appropriate place and condition.
      
      Fixes: ee88d363
      
       ("x86,static_call: Use alternative RET encoding")
      Reported-by: default avatarDavid Kaplan <David.Kaplan@amd.com>
      Signed-off-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
      Signed-off-by: default avatarBorislav Petkov (AMD) <bp@alien8.de>
      Reviewed-by: default avatarIngo Molnar <mingo@kernel.org>
      Tested-by: default avatarBorislav Petkov (AMD) <bp@alien8.de>
      Cc: <stable@kernel.org>
      aee9d30b
    • Josh Poimboeuf's avatar
      x86/alternatives: Remove faulty optimization · 4ba89dd6
      Josh Poimboeuf authored
      The following commit
      
        095b8303 ("x86/alternative: Make custom return thunk unconditional")
      
      made '__x86_return_thunk' a placeholder value.  All code setting
      X86_FEATURE_RETHUNK also changes the value of 'x86_return_thunk'.  So
      the optimization at the beginning of apply_returns() is dead code.
      
      Also, before the above-mentioned commit, the optimization actually had a
      bug It bypassed __static_call_fixup(), causing some raw returns to
      remain unpatched in static call trampolines.  Thus the 'Fixes' tag.
      
      Fixes: d2408e04
      
       ("x86/alternative: Optimize returns patching")
      Signed-off-by: default avatarJosh Poimboeuf <jpoimboe@kernel.org>
      Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
      Signed-off-by: default avatarBorislav Petkov (AMD) <bp@alien8.de>
      Acked-by: default avatarBorislav Petkov (AMD) <bp@alien8.de>
      Link: https://lore.kernel.org/r/16d19d2249d4485d8380fb215ffaae81e6b8119e.1693889988.git.jpoimboe@kernel.org
      4ba89dd6
    • Rafael J. Wysocki's avatar
      Merge branch 'acpi-processor' · a1001c37
      Rafael J. Wysocki authored
      Merge a fix for recently introduced uninitialized memory access in the
      ACPI processor driver from Michal Wilczynski.
      
      * acpi-processor:
        ACPI: processor: Fix uninitialized access of buf in acpi_set_pdc_bits()
      a1001c37
    • Linus Torvalds's avatar
      Merge tag 'efi-fixes-for-v6.6-2' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi · dc912ba9
      Linus Torvalds authored
      Pull EFI fix from Ard Biesheuvel:
       "Follow-up fix for the unaccepted memory fix merged last week as part
        of the first EFI fixes batch.
      
        The unaccepted memory table needs to be accessible very early, even in
        cases (such as crashkernels) where the direct map does not cover all
        of DRAM, and so it is added to memblock explicitly, and subsequently
        memblock_reserve()'d as before"
      
      * tag 'efi-fixes-for-v6.6-2' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi:
        efi/unaccepted: Make sure unaccepted table is mapped
      dc912ba9