1. 06 Oct, 2020 2 commits
  2. 02 Sep, 2020 11 commits
    • Miklos Szeredi's avatar
      ovl: rearrange ovl_can_list() · 8f6ee74c
      Miklos Szeredi authored
      ovl_can_list() should return false for overlay private xattrs.  Since
      currently these use the "trusted.overlay." prefix, they will always match
      the "trusted." prefix as well, hence the test for being non-trusted will
      not trigger.
      
      Prepare for using the "user.overlay." namespace by moving the test for
      private xattr before the test for non-trusted.
      
      This patch doesn't change behavior.
      Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
      8f6ee74c
    • Miklos Szeredi's avatar
      ovl: enumerate private xattrs · 43d193f8
      Miklos Szeredi authored
      Instead of passing the xattr name down to the ovl_do_*xattr() accessor
      functions, pass an enumerated value.  The enum can use the same names as
      the the previous #define for each xattr name.
      Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
      43d193f8
    • Miklos Szeredi's avatar
      ovl: pass ovl_fs down to functions accessing private xattrs · 610afc0b
      Miklos Szeredi authored
      This paves the way for optionally using the "user.overlay." xattr
      namespace.
      Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
      610afc0b
    • Miklos Szeredi's avatar
      ovl: drop flags argument from ovl_do_setxattr() · 26150ab5
      Miklos Szeredi authored
      All callers pass zero flags to ovl_do_setxattr().  So drop this argument.
      Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
      26150ab5
    • Miklos Szeredi's avatar
      ovl: adhere to the vfs_ vs. ovl_do_ conventions for xattrs · 71097047
      Miklos Szeredi authored
      Call ovl_do_*xattr() when accessing an overlay private xattr, vfs_*xattr()
      otherwise.
      
      This has an effect on debug output, which is made more consistent by this
      patch.
      Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
      71097047
    • Miklos Szeredi's avatar
      ovl: use ovl_do_getxattr() for private xattr · d5dc7486
      Miklos Szeredi authored
      Use the convention of calling ovl_do_foo() for operations which are overlay
      specific.
      
      This patch is a no-op, and will have significance for supporting
      "user.overlay." xattr namespace.
      Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
      d5dc7486
    • Miklos Szeredi's avatar
      ovl: fold ovl_getxattr() into ovl_get_redirect_xattr() · 92f0d6c9
      Miklos Szeredi authored
      This is a partial revert (with some cleanups) of commit 993a0b2a ("ovl:
      Do not lose security.capability xattr over metadata file copy-up"), which
      introduced ovl_getxattr() in the first place.
      Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
      92f0d6c9
    • Miklos Szeredi's avatar
      ovl: clean up ovl_getxattr() in copy_up.c · de7a52c9
      Miklos Szeredi authored
      Lose the padding and the failure message (in line with other parts of the
      copy up process).  Return zero for both nonexistent or empty xattr.
      Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
      de7a52c9
    • Miklos Szeredi's avatar
      duplicate ovl_getxattr() · fee0f298
      Miklos Szeredi authored
      ovl_getattr() returns the value of an xattr in a kmalloced buffer.  There
      are two callers:
      
       ovl_copy_up_meta_inode_data()	(copy_up.c)
       ovl_get_redirect_xattr()	(util.c)
      
      This patch just copies ovl_getxattr() to copy_up.c, the following patches
      will deal with the differences in idividual callers.
      Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
      fee0f298
    • Vivek Goyal's avatar
      ovl: provide a mount option "volatile" · c86243b0
      Vivek Goyal authored
      Container folks are complaining that dnf/yum issues too many sync while
      installing packages and this slows down the image build. Build requirement
      is such that they don't care if a node goes down while build was still
      going on. In that case, they will simply throw away unfinished layer and
      start new build. So they don't care about syncing intermediate state to the
      disk and hence don't want to pay the price associated with sync.
      
      So they are asking for mount options where they can disable sync on overlay
      mount point.
      
      They primarily seem to have two use cases.
      
      - For building images, they will mount overlay with nosync and then sync
        upper layer after unmounting overlay and reuse upper as lower for next
        layer.
      
      - For running containers, they don't seem to care about syncing upper layer
        because if node goes down, they will simply throw away upper layer and
        create a fresh one.
      
      So this patch provides a mount option "volatile" which disables all forms
      of sync. Now it is caller's responsibility to throw away upper if system
      crashes or shuts down and start fresh.
      
      With "volatile", I am seeing roughly 20% speed up in my VM where I am just
      installing emacs in an image. Installation time drops from 31 seconds to 25
      seconds when nosync option is used. This is for the case of building on top
      of an image where all packages are already cached. That way I take out the
      network operations latency out of the measurement.
      
      Giuseppe is also looking to cut down on number of iops done on the disk. He
      is complaining that often in cloud their VMs are throttled if they cross
      the limit. This option can help them where they reduce number of iops (by
      cutting down on frequent sync and writebacks).
      Signed-off-by: default avatarGiuseppe Scrivano <gscrivan@redhat.com>
      Signed-off-by: default avatarVivek Goyal <vgoyal@redhat.com>
      Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
      c86243b0
    • Amir Goldstein's avatar
      ovl: check for incompatible features in work dir · 235ce9ed
      Amir Goldstein authored
      An incompatible feature is marked by a non-empty directory nested
      2 levels deep under "work" dir, e.g.:
      workdir/work/incompat/volatile.
      
      This commit checks for marked incompat features, warns about them
      and fails to mount the overlay, for example:
        overlayfs: overlay with incompat feature 'volatile' cannot be mounted
      
      Very old kernels (i.e. v3.18) will fail to remove a non-empty "work"
      dir and fail the mount.  Newer kernels will fail to remove a "work"
      dir with entries nested 3 levels and fall back to read-only mount.
      
      User mounting with old kernel will see a warning like these in dmesg:
        overlayfs: cleanup of 'incompat/...' failed (-39)
        overlayfs: cleanup of 'work/incompat' failed (-39)
        overlayfs: cleanup of 'ovl-work/work' failed (-39)
        overlayfs: failed to create directory /vdf/ovl-work/work (errno: 17);
                   mounting read-only
      
      These warnings should give the hint to the user that:
      1. mount failure is caused by backward incompatible features
      2. mount failure can be resolved by manually removing the "work" directory
      
      There is nothing preventing users on old kernels from manually removing
      workdir entirely or mounting overlay with a new workdir, so this is in
      no way a full proof backward compatibility enforcement, but only a best
      effort.
      Signed-off-by: default avatarAmir Goldstein <amir73il@gmail.com>
      Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
      235ce9ed
  3. 30 Aug, 2020 12 commits
    • Linus Torvalds's avatar
      Linux 5.9-rc3 · f75aef39
      Linus Torvalds authored
      f75aef39
    • Linus Torvalds's avatar
      Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6 · e43327c7
      Linus Torvalds authored
      Pull crypto fixes from Herbert Xu:
      
       - fix regression in af_alg that affects iwd
      
       - restore polling delay in qat
      
       - fix double free in ingenic on error path
      
       - fix potential build failure in sa2ul due to missing Kconfig dependency
      
      * 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
        crypto: af_alg - Work around empty control messages without MSG_MORE
        crypto: sa2ul - add Kconfig selects to fix build error
        crypto: ingenic - Drop kfree for memory allocated with devm_kzalloc
        crypto: qat - add delay before polling mailbox
      e43327c7
    • Linus Torvalds's avatar
      Merge tag 'x86-urgent-2020-08-30' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · dcc5c6f0
      Linus Torvalds authored
      Pull x86 fixes from Thomas Gleixner:
       "Three interrupt related fixes for X86:
      
         - Move disabling of the local APIC after invoking fixup_irqs() to
           ensure that interrupts which are incoming are noted in the IRR and
           not ignored.
      
         - Unbreak affinity setting.
      
           The rework of the entry code reused the regular exception entry
           code for device interrupts. The vector number is pushed into the
           errorcode slot on the stack which is then lifted into an argument
           and set to -1 because that's regs->orig_ax which is used in quite
           some places to check whether the entry came from a syscall.
      
           But it was overlooked that orig_ax is used in the affinity cleanup
           code to validate whether the interrupt has arrived on the new
           target. It turned out that this vector check is pointless because
           interrupts are never moved from one vector to another on the same
           CPU. That check is a historical leftover from the time where x86
           supported multi-CPU affinities, but not longer needed with the now
           strict single CPU affinity. Famous last words ...
      
         - Add a missing check for an empty cpumask into the matrix allocator.
      
           The affinity change added a warning to catch the case where an
           interrupt is moved on the same CPU to a different vector. This
           triggers because a condition with an empty cpumask returns an
           assignment from the allocator as the allocator uses for_each_cpu()
           without checking the cpumask for being empty. The historical
           inconsistent for_each_cpu() behaviour of ignoring the cpumask and
           unconditionally claiming that CPU0 is in the mask struck again.
           Sigh.
      
        plus a new entry into the MAINTAINER file for the HPE/UV platform"
      
      * tag 'x86-urgent-2020-08-30' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        genirq/matrix: Deal with the sillyness of for_each_cpu() on UP
        x86/irq: Unbreak interrupt affinity setting
        x86/hotplug: Silence APIC only after all interrupts are migrated
        MAINTAINERS: Add entry for HPE Superdome Flex (UV) maintainers
      dcc5c6f0
    • Linus Torvalds's avatar
      Merge tag 'irq-urgent-2020-08-30' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · d2283cdc
      Linus Torvalds authored
      Pull irq fixes from Thomas Gleixner:
       "A set of fixes for interrupt chip drivers:
      
         - Revert the platform driver conversion of interrupt chip drivers as
           it turned out to create more problems than it solves.
      
         - Fix a trivial typo in the new module helpers which made probing
           reliably fail.
      
         - Small fixes in the STM32 and MIPS Ingenic drivers
      
         - The TI firmware rework which had badly managed dependencies and had
           to wait post rc1"
      
      * tag 'irq-urgent-2020-08-30' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        irqchip/ingenic: Leave parent IRQ unmasked on suspend
        irqchip/stm32-exti: Avoid losing interrupts due to clearing pending bits by mistake
        irqchip: Revert modular support for drivers using IRQCHIP_PLATFORM_DRIVER helperse
        irqchip: Fix probing deferal when using IRQCHIP_PLATFORM_DRIVER helpers
        arm64: dts: k3-am65: Update the RM resource types
        arm64: dts: k3-am65: ti-sci-inta/intr: Update to latest bindings
        arm64: dts: k3-j721e: ti-sci-inta/intr: Update to latest bindings
        irqchip/ti-sci-inta: Add support for INTA directly connecting to GIC
        irqchip/ti-sci-inta: Do not store TISCI device id in platform device id field
        dt-bindings: irqchip: Convert ti, sci-inta bindings to yaml
        dt-bindings: irqchip: ti, sci-inta: Update docs to support different parent.
        irqchip/ti-sci-intr: Add support for INTR being a parent to INTR
        dt-bindings: irqchip: Convert ti, sci-intr bindings to yaml
        dt-bindings: irqchip: ti, sci-intr: Update bindings to drop the usage of gic as parent
        firmware: ti_sci: Add support for getting resource with subtype
        firmware: ti_sci: Drop unused structure ti_sci_rm_type_map
        firmware: ti_sci: Drop the device id to resource type translation
      d2283cdc
    • Linus Torvalds's avatar
      Merge tag 'sched-urgent-2020-08-30' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 0063a82d
      Linus Torvalds authored
      Pull scheduler fix from Thomas Gleixner:
       "A single fix for the scheduler:
      
         - Make is_idle_task() __always_inline to prevent the compiler from
           putting it out of line into the wrong section because it's used
           inside noinstr sections"
      
      * tag 'sched-urgent-2020-08-30' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        sched: Use __always_inline on is_idle_task()
      0063a82d
    • Linus Torvalds's avatar
      Merge tag 'locking-urgent-2020-08-30' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · b69bea8a
      Linus Torvalds authored
      Pull locking fixes from Thomas Gleixner:
       "A set of fixes for lockdep, tracing and RCU:
      
         - Prevent recursion by using raw_cpu_* operations
      
         - Fixup the interrupt state in the cpu idle code to be consistent
      
         - Push rcu_idle_enter/exit() invocations deeper into the idle path so
           that the lock operations are inside the RCU watching sections
      
         - Move trace_cpu_idle() into generic code so it's called before RCU
           goes idle.
      
         - Handle raw_local_irq* vs. local_irq* operations correctly
      
         - Move the tracepoints out from under the lockdep recursion handling
           which turned out to be fragile and inconsistent"
      
      * tag 'locking-urgent-2020-08-30' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        lockdep,trace: Expose tracepoints
        lockdep: Only trace IRQ edges
        mips: Implement arch_irqs_disabled()
        arm64: Implement arch_irqs_disabled()
        nds32: Implement arch_irqs_disabled()
        locking/lockdep: Cleanup
        x86/entry: Remove unused THUNKs
        cpuidle: Move trace_cpu_idle() into generic code
        cpuidle: Make CPUIDLE_FLAG_TLB_FLUSHED generic
        sched,idle,rcu: Push rcu_idle deeper into the idle path
        cpuidle: Fixup IRQ state
        lockdep: Use raw_cpu_*() for per-cpu variables
      b69bea8a
    • Linus Torvalds's avatar
      Merge tag '5.9-rc2-smb-fix' of git://git.samba.org/sfrench/cifs-2.6 · 3edd8db2
      Linus Torvalds authored
      Pull cfis fix from Steve French:
       "DFS fix for referral problem when using SMB1"
      
      * tag '5.9-rc2-smb-fix' of git://git.samba.org/sfrench/cifs-2.6:
        cifs: fix check of tcon dfs in smb1
      3edd8db2
    • Linus Torvalds's avatar
      Merge tag 'powerpc-5.9-4' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux · 8bb5021c
      Linus Torvalds authored
      Pull powerpc fixes from Michael Ellerman:
      
       - Revert our removal of PROT_SAO, at least one user expressed an
         interest in using it on Power9. Instead don't allow it to be used in
         guests unless enabled explicitly at compile time.
      
       - A fix for a crash introduced by a recent change to FP handling.
      
       - Revert a change to our idle code that left Power10 with no idle
         support.
      
       - One minor fix for the new scv system call path to set PPR.
      
       - Fix a crash in our "generic" PMU if branch stack events were enabled.
      
       - A fix for the IMC PMU, to correctly identify host kernel samples.
      
       - The ADB_PMU powermac code was found to be incompatible with
         VMAP_STACK, so make them incompatible in Kconfig until the code can
         be fixed.
      
       - A build fix in drivers/video/fbdev/controlfb.c, and a documentation
         fix.
      
      Thanks to Alexey Kardashevskiy, Athira Rajeev, Christophe Leroy,
      Giuseppe Sacco, Madhavan Srinivasan, Milton Miller, Nicholas Piggin,
      Pratik Rajesh Sampat, Randy Dunlap, Shawn Anastasio, Vaidyanathan
      Srinivasan.
      
      * tag 'powerpc-5.9-4' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux:
        powerpc/32s: Disable VMAP stack which CONFIG_ADB_PMU
        Revert "powerpc/powernv/idle: Replace CPU feature check with PVR check"
        powerpc/perf: Fix reading of MSR[HV/PR] bits in trace-imc
        powerpc/perf: Fix crashes with generic_compat_pmu & BHRB
        powerpc/64s: Fix crash in load_fp_state() due to fpexc_mode
        powerpc/64s: scv entry should set PPR
        Documentation/powerpc: fix malformed table in syscall64-abi
        video: fbdev: controlfb: Fix build for COMPILE_TEST=y && PPC_PMAC=n
        selftests/powerpc: Update PROT_SAO test to skip ISA 3.1
        powerpc/64s: Disallow PROT_SAO in LPARs by default
        Revert "powerpc/64s: Remove PROT_SAO support"
      8bb5021c
    • Linus Torvalds's avatar
      Merge tag 'usb-5.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb · 6f0306d1
      Linus Torvalds authored
      Pull USB fixes from Greg KH:
       "Let's try this again...  Here are some USB fixes for 5.9-rc3.
      
        This differs from the previous pull request for this release in that
        the usb gadget patch now does not break some systems, and actually
        does what it was intended to do. Many thanks to Marek Szyprowski for
        quickly noticing and testing the patch from Andy Shevchenko to resolve
        this issue.
      
        Additionally, some more new USB quirks have been added to get some new
        devices to work properly based on user reports.
      
        Other than that, the patches are all here, and they contain:
      
         - usb gadget driver fixes
      
         - xhci driver fixes
      
         - typec fixes
      
         - new quirks and ids
      
         - fixes for USB patches that went into 5.9-rc1.
      
        All of these have been tested in linux-next with no reported issues"
      
      * tag 'usb-5.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (33 commits)
        usb: storage: Add unusual_uas entry for Sony PSZ drives
        USB: Ignore UAS for JMicron JMS567 ATA/ATAPI Bridge
        usb: host: ohci-exynos: Fix error handling in exynos_ohci_probe()
        USB: gadget: u_f: Unbreak offset calculation in VLAs
        USB: quirks: Ignore duplicate endpoint on Sound Devices MixPre-D
        usb: typec: tcpm: Fix Fix source hard reset response for TDA 2.3.1.1 and TDA 2.3.1.2 failures
        USB: PHY: JZ4770: Fix static checker warning.
        USB: gadget: f_ncm: add bounds checks to ncm_unwrap_ntb()
        USB: gadget: u_f: add overflow checks to VLA macros
        xhci: Always restore EP_SOFT_CLEAR_TOGGLE even if ep reset failed
        xhci: Do warm-reset when both CAS and XDEV_RESUME are set
        usb: host: xhci: fix ep context print mismatch in debugfs
        usb: uas: Add quirk for PNY Pro Elite
        tools: usb: move to tools buildsystem
        USB: Fix device driver race
        USB: Also match device drivers using the ->match vfunc
        usb: host: xhci-tegra: fix tegra_xusb_get_phy()
        usb: host: xhci-tegra: otg usb2/usb3 port init
        usb: hcd: Fix use after free in usb_hcd_pci_remove()
        usb: typec: ucsi: Hold con->lock for the entire duration of ucsi_register_port()
        ...
      6f0306d1
    • Linus Torvalds's avatar
      Merge tag 'edac_urgent_for_v5.9_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras · 42df60fc
      Linus Torvalds authored
      Pull EDAC fix from Borislav Petkov:
       "A fix to properly clear ghes_edac driver state on driver remove so
        that a subsequent load can probe the system properly (Shiju Jose)"
      
      * tag 'edac_urgent_for_v5.9_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras:
        EDAC/ghes: Fix NULL pointer dereference in ghes_edac_register()
      42df60fc
    • Linus Torvalds's avatar
      Merge tag 'dma-mapping-5.9-2' of git://git.infradead.org/users/hch/dma-mapping · c4011283
      Linus Torvalds authored
      Pull dma-mapping fix from Christoph Hellwig:
       "Fix a possibly uninitialized variable (Dan Carpenter)"
      
      * tag 'dma-mapping-5.9-2' of git://git.infradead.org/users/hch/dma-mapping:
        dma-pool: Fix an uninitialized variable bug in atomic_pool_expand()
      c4011283
    • Thomas Gleixner's avatar
      genirq/matrix: Deal with the sillyness of for_each_cpu() on UP · 784a0830
      Thomas Gleixner authored
      Most of the CPU mask operations behave the same way, but for_each_cpu() and
      it's variants ignore the cpumask argument and claim that CPU0 is always in
      the mask. This is historical, inconsistent and annoying behaviour.
      
      The matrix allocator uses for_each_cpu() and can be called on UP with an
      empty cpumask. The calling code does not expect that this succeeds but
      until commit e027ffff ("x86/irq: Unbreak interrupt affinity setting")
      this went unnoticed. That commit added a WARN_ON() to catch cases which
      move an interrupt from one vector to another on the same CPU. The warning
      triggers on UP.
      
      Add a check for the cpumask being empty to prevent this.
      
      Fixes: 2f75d9e1 ("genirq: Implement bitmap matrix allocator")
      Reported-by: default avatarkernel test robot <rong.a.chen@intel.com>
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      Cc: stable@vger.kernel.org
      784a0830
  4. 29 Aug, 2020 6 commits
  5. 28 Aug, 2020 9 commits
    • Linus Torvalds's avatar
      Merge tag 'block-5.9-2020-08-28' of git://git.kernel.dk/linux-block · 4d41ead6
      Linus Torvalds authored
      Pull block fixes from Jens Axboe:
      
       - nbd timeout fix (Hou)
      
       - device size fix for loop LOOP_CONFIGURE (Martijn)
      
       - MD pull from Song with raid5 stripe size fix (Yufen)
      
      * tag 'block-5.9-2020-08-28' of git://git.kernel.dk/linux-block:
        md/raid5: make sure stripe_size as power of two
        loop: Set correct device size when using LOOP_CONFIGURE
        nbd: restore default timeout when setting it to zero
      4d41ead6
    • Linus Torvalds's avatar
      Merge tag 'io_uring-5.9-2020-08-28' of git://git.kernel.dk/linux-block · 24148d86
      Linus Torvalds authored
      Pull io_uring fixes from Jens Axboe:
       "A few fixes in here, all based on reports and test cases from folks
        using it. Most of it is stable material as well:
      
         - Hashed work cancelation fix (Pavel)
      
         - poll wakeup signalfd fix
      
         - memlock accounting fix
      
         - nonblocking poll retry fix
      
         - ensure we never return -ERESTARTSYS for reads
      
         - ensure offset == -1 is consistent with preadv2() as documented
      
         - IOPOLL -EAGAIN handling fixes
      
         - remove useless task_work bounce for block based -EAGAIN retry"
      
      * tag 'io_uring-5.9-2020-08-28' of git://git.kernel.dk/linux-block:
        io_uring: don't bounce block based -EAGAIN retry off task_work
        io_uring: fix IOPOLL -EAGAIN retries
        io_uring: clear req->result on IOPOLL re-issue
        io_uring: make offset == -1 consistent with preadv2/pwritev2
        io_uring: ensure read requests go through -ERESTART* transformation
        io_uring: don't use poll handler if file can't be nonblocking read/written
        io_uring: fix imbalanced sqo_mm accounting
        io_uring: revert consumed iov_iter bytes on error
        io-wq: fix hang after cancelling pending hashed work
        io_uring: don't recurse on tsk->sighand->siglock with signalfd
      24148d86
    • Linus Torvalds's avatar
      Merge tag 'devprop-5.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm · 005c5344
      Linus Torvalds authored
      Pull device properties framework fix from Rafael Wysocki:
       "Prevent the promotion of the secondary firmware node of a device to
        the primary one from leaking a pointer (Heikki Krogerus)"
      
      * tag 'devprop-5.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
        device property: Fix the secondary firmware node handling in set_primary_fwnode()
      005c5344
    • Linus Torvalds's avatar
      Merge tag 'acpi-5.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm · 0b2f18e7
      Linus Torvalds authored
      Pull ACPI fixes from Rafael Wysocki:
       "These fix two recent issues in the ACPI memory mappings management
        code and tighten up error handling in the ACPI driver for AMD SoCs
        (APD).
      
        Specifics:
      
         - Avoid redundant rounding to the page size in acpi_os_map_iomem() to
           address a recently introduced issue with the EFI memory map
           permission check on ARM64 (Ard Biesheuvel).
      
         - Fix acpi_release_memory() to wait until the memory mappings
           released by it have been really unmapped (Rafael Wysocki).
      
         - Make the ACPI driver for AMD SoCs (APD) check the return value of
           acpi_dev_get_property() to avoid failures in the cases when the
           device property under inspection is missing (Furquan Shaikh)"
      
      * tag 'acpi-5.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
        ACPI: OSL: Prevent acpi_release_memory() from returning too early
        ACPI: ioremap: avoid redundant rounding to OS page size
        ACPI: SoC: APD: Check return value of acpi_dev_get_property()
      0b2f18e7
    • Linus Torvalds's avatar
      Merge tag 'pm-5.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm · 326e311b
      Linus Torvalds authored
      Pull power management fixes from Rafael Wysocki:
       "These fix the recently added Tegra194 cpufreq driver and the handling
        of devices using runtime PM during system-wide suspend, improve the
        intel_pstate driver documentation and clean up the cpufreq core.
      
        Specifics:
      
         - Make the recently added Tegra194 cpufreq driver use
           read_cpuid_mpir() instead of cpu_logical_map() to avoid exporting
           logical_cpu_map (Sumit Gupta).
      
         - Drop the automatic system wakeup event reporting for devices with
           pending runtime-resume requests during system-wide suspend to avoid
           spurious aborts of the suspend flow (Rafael Wysocki).
      
         - Fix build warning in the intel_pstate driver documentation and
           improve the wording in there (Randy Dunlap).
      
         - Clean up two pieces of code in the cpufreq core (Viresh Kumar)"
      
      * tag 'pm-5.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
        cpufreq: Use WARN_ON_ONCE() for invalid relation
        cpufreq: No need to verify cpufreq_driver in show_scaling_cur_freq()
        PM: sleep: core: Fix the handling of pending runtime resume requests
        Documentation: fix pm/intel_pstate build warning and wording
        cpufreq: replace cpu_logical_map() with read_cpuid_mpir()
      326e311b
    • Rafael J. Wysocki's avatar
      Merge branch 'acpi-mm' · 4f31d53c
      Rafael J. Wysocki authored
      * acpi-mm:
        ACPI: OSL: Prevent acpi_release_memory() from returning too early
        ACPI: ioremap: avoid redundant rounding to OS page size
      4f31d53c
    • Rafael J. Wysocki's avatar
      Merge branch 'pm-cpufreq' · ef7d9604
      Rafael J. Wysocki authored
      * pm-cpufreq:
        cpufreq: Use WARN_ON_ONCE() for invalid relation
        cpufreq: No need to verify cpufreq_driver in show_scaling_cur_freq()
        Documentation: fix pm/intel_pstate build warning and wording
        cpufreq: replace cpu_logical_map() with read_cpuid_mpir()
      ef7d9604
    • Linus Torvalds's avatar
      Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux · 96d454cd
      Linus Torvalds authored
      Pull arm64 fixes from Catalin Marinas:
      
       - Fix kernel build with the integrated LLVM assembler which doesn't see
         the -Wa,-march option.
      
       - Fix "make vdso_install" when COMPAT_VDSO is disabled.
      
       - Make KVM more robust if the AT S1E1R instruction triggers an
         exception (architecture corner cases).
      
      * tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux:
        KVM: arm64: Set HCR_EL2.PTW to prevent AT taking synchronous exception
        KVM: arm64: Survive synchronous exceptions caused by AT instructions
        KVM: arm64: Add kvm_extable for vaxorcism code
        arm64: vdso32: make vdso32 install conditional
        arm64: use a common .arch preamble for inline assembly
      96d454cd
    • Herbert Xu's avatar
      kernel.h: Silence sparse warning in lower_32_bits · ef91bb19
      Herbert Xu authored
      I keep getting sparse warnings in crypto such as:
      
        CHECK   drivers/crypto/ccree/cc_hash.c
         drivers/crypto/ccree/cc_hash.c:49:9: warning: cast truncates bits from constant value (47b5481dbefa4fa4 becomes befa4fa4)
         drivers/crypto/ccree/cc_hash.c:49:26: warning: cast truncates bits from constant value (db0c2e0d64f98fa7 becomes 64f98fa7)
         [.. many more ..]
      
      This patch removes the warning by adding a mask to keep sparse
      happy.
      Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      ef91bb19