From: Sasha Levin <sashal@kernel.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Fabiano Rosas <farosas@linux.ibm.com>,
Satheesh Rajendran <sathnaga@linux.vnet.ibm.com>,
Greg Kurz <groug@kaod.org>,
David Gibson <david@gibson.dropbear.id.au>,
Paul Mackerras <paulus@ozlabs.org>,
Sasha Levin <sashal@kernel.org>,
kvm-ppc@vger.kernel.org, linuxppc-dev@lists.ozlabs.org
Subject: [PATCH AUTOSEL 5.8 112/132] KVM: PPC: Book3S HV: Do not allocate HPT for a nested guest
Date: Mon, 26 Oct 2020 19:51:44 -0400 [thread overview]
Message-ID: <20201026235205.1023962-112-sashal@kernel.org> (raw)
In-Reply-To: <20201026235205.1023962-1-sashal@kernel.org>
From: Fabiano Rosas <farosas@linux.ibm.com>
[ Upstream commit 05e6295dc7de859c9d56334805485c4d20bebf25 ]
The current nested KVM code does not support HPT guests. This is
informed/enforced in some ways:
- Hosts < P9 will not be able to enable the nested HV feature;
- The nested hypervisor MMU capabilities will not contain
KVM_CAP_PPC_MMU_HASH_V3;
- QEMU reflects the MMU capabilities in the
'ibm,arch-vec-5-platform-support' device-tree property;
- The nested guest, at 'prom_parse_mmu_model' ignores the
'disable_radix' kernel command line option if HPT is not supported;
- The KVM_PPC_CONFIGURE_V3_MMU ioctl will fail if trying to use HPT.
There is, however, still a way to start a HPT guest by using
max-compat-cpu=power8 at the QEMU machine options. This leads to the
guest being set to use hash after QEMU calls the KVM_PPC_ALLOCATE_HTAB
ioctl.
With the guest set to hash, the nested hypervisor goes through the
entry path that has no knowledge of nesting (kvmppc_run_vcpu) and
crashes when it tries to execute an hypervisor-privileged (mtspr
HDEC) instruction at __kvmppc_vcore_entry:
root@L1:~ $ qemu-system-ppc64 -machine pseries,max-cpu-compat=power8 ...
<snip>
[ 538.543303] CPU: 83 PID: 25185 Comm: CPU 0/KVM Not tainted 5.9.0-rc4 #1
[ 538.543355] NIP: c00800000753f388 LR: c00800000753f368 CTR: c0000000001e5ec0
[ 538.543417] REGS: c0000013e91e33b0 TRAP: 0700 Not tainted (5.9.0-rc4)
[ 538.543470] MSR: 8000000002843033 <SF,VEC,VSX,FP,ME,IR,DR,RI,LE> CR: 22422882 XER: 20040000
[ 538.543546] CFAR: c00800000753f4b0 IRQMASK: 3
GPR00: c0080000075397a0 c0000013e91e3640 c00800000755e600 0000000080000000
GPR04: 0000000000000000 c0000013eab19800 c000001394de0000 00000043a054db72
GPR08: 00000000003b1652 0000000000000000 0000000000000000 c0080000075502e0
GPR12: c0000000001e5ec0 c0000007ffa74200 c0000013eab19800 0000000000000008
GPR16: 0000000000000000 c00000139676c6c0 c000000001d23948 c0000013e91e38b8
GPR20: 0000000000000053 0000000000000000 0000000000000001 0000000000000000
GPR24: 0000000000000001 0000000000000001 0000000000000000 0000000000000001
GPR28: 0000000000000001 0000000000000053 c0000013eab19800 0000000000000001
[ 538.544067] NIP [c00800000753f388] __kvmppc_vcore_entry+0x90/0x104 [kvm_hv]
[ 538.544121] LR [c00800000753f368] __kvmppc_vcore_entry+0x70/0x104 [kvm_hv]
[ 538.544173] Call Trace:
[ 538.544196] [c0000013e91e3640] [c0000013e91e3680] 0xc0000013e91e3680 (unreliable)
[ 538.544260] [c0000013e91e3820] [c0080000075397a0] kvmppc_run_core+0xbc8/0x19d0 [kvm_hv]
[ 538.544325] [c0000013e91e39e0] [c00800000753d99c] kvmppc_vcpu_run_hv+0x404/0xc00 [kvm_hv]
[ 538.544394] [c0000013e91e3ad0] [c0080000072da4fc] kvmppc_vcpu_run+0x34/0x48 [kvm]
[ 538.544472] [c0000013e91e3af0] [c0080000072d61b8] kvm_arch_vcpu_ioctl_run+0x310/0x420 [kvm]
[ 538.544539] [c0000013e91e3b80] [c0080000072c7450] kvm_vcpu_ioctl+0x298/0x778 [kvm]
[ 538.544605] [c0000013e91e3ce0] [c0000000004b8c2c] sys_ioctl+0x1dc/0xc90
[ 538.544662] [c0000013e91e3dc0] [c00000000002f9a4] system_call_exception+0xe4/0x1c0
[ 538.544726] [c0000013e91e3e20] [c00000000000d140] system_call_common+0xf0/0x27c
[ 538.544787] Instruction dump:
[ 538.544821] f86d1098 60000000 60000000 48000099 e8ad0fe8 e8c500a0 e9264140 75290002
[ 538.544886] 7d1602a6 7cec42a6 40820008 7d0807b4 <7d164ba6> 7d083a14 f90d10a0 480104fd
[ 538.544953] ---[ end trace 74423e2b948c2e0c ]---
This patch makes the KVM_PPC_ALLOCATE_HTAB ioctl fail when running in
the nested hypervisor, causing QEMU to abort.
Reported-by: Satheesh Rajendran <sathnaga@linux.vnet.ibm.com>
Signed-off-by: Fabiano Rosas <farosas@linux.ibm.com>
Reviewed-by: Greg Kurz <groug@kaod.org>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
arch/powerpc/kvm/book3s_hv.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/arch/powerpc/kvm/book3s_hv.c b/arch/powerpc/kvm/book3s_hv.c
index 1928b86d6e6b5..51e8353310c2e 100644
--- a/arch/powerpc/kvm/book3s_hv.c
+++ b/arch/powerpc/kvm/book3s_hv.c
@@ -5214,6 +5214,12 @@ static long kvm_arch_vm_ioctl_hv(struct file *filp,
case KVM_PPC_ALLOCATE_HTAB: {
u32 htab_order;
+ /* If we're a nested hypervisor, we currently only support radix */
+ if (kvmhv_on_pseries()) {
+ r = -EOPNOTSUPP;
+ break;
+ }
+
r = -EFAULT;
if (get_user(htab_order, (u32 __user *)argp))
break;
--
2.25.1
next prev parent reply other threads:[~2020-10-26 23:57 UTC|newest]
Thread overview: 133+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-26 23:49 [PATCH AUTOSEL 5.8 001/132] powerpc/powernv/smp: Fix spurious DBG() warning Sasha Levin
2020-10-26 23:49 ` [PATCH AUTOSEL 5.8 002/132] RDMA/core: Change how failing destroy is handled during uobj abort Sasha Levin
2020-10-26 23:49 ` [PATCH AUTOSEL 5.8 003/132] f2fs: allocate proper size memory for zstd decompress Sasha Levin
2020-10-26 23:49 ` [PATCH AUTOSEL 5.8 004/132] powerpc/watchpoint/ptrace: Fix SETHWDEBUG when CONFIG_HAVE_HW_BREAKPOINT=N Sasha Levin
2020-10-26 23:49 ` [PATCH AUTOSEL 5.8 005/132] mm: fix exec activate_mm vs TLB shootdown and lazy tlb switching race Sasha Levin
2020-10-26 23:49 ` [PATCH AUTOSEL 5.8 006/132] powerpc: select ARCH_WANT_IRQS_OFF_ACTIVATE_MM Sasha Levin
2020-10-26 23:49 ` [PATCH AUTOSEL 5.8 007/132] sparc64: remove mm_cpumask clearing to fix kthread_use_mm race Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 008/132] f2fs: add trace exit in exception path Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 009/132] f2fs: do sanity check on zoned block device path Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 010/132] f2fs: fix uninit-value in f2fs_lookup Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 011/132] f2fs: fix to check segment boundary during SIT page readahead Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 012/132] s390/startup: avoid save_area_sync overflow Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 013/132] f2fs: compress: fix to disallow enabling compress on non-empty file Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 014/132] um: change sigio_spinlock to a mutex Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 015/132] f2fs: handle errors of f2fs_get_meta_page_nofail Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 016/132] afs: Don't assert on unpurgeable server records Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 017/132] MIPS: ftrace: Remove redundant #ifdef CONFIG_DYNAMIC_FTRACE Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 018/132] powerpc/64s: handle ISA v3.1 local copy-paste context switches Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 019/132] ARM: 8997/2: hw_breakpoint: Handle inexact watchpoint addresses Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 020/132] NFS4: Fix oops when copy_file_range is attempted with NFS4.0 source Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 021/132] xfs: Set xfs_buf type flag when growing summary/bitmap files Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 022/132] xfs: Set xfs_buf's b_ops member when zeroing bitmap/summary files Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 023/132] xfs: log new intent items created as part of finishing recovered intent items Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 024/132] power: supply: bq27xxx: report "not charging" on all types Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 025/132] xfs: change the order in which child and parent defer ops are finished Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 026/132] xfs: fix realtime bitmap/summary file truncation when growing rt volume Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 027/132] ath10k: fix retry packets update in station dump Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 028/132] x86/kaslr: Initialize mem_limit to the real maximum address Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 029/132] drm/amdgpu: restore ras flags when user resets eeprom(v2) Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 030/132] video: fbdev: pvr2fb: initialize variables Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 031/132] ath10k: start recovery process when payload length exceeds max htc length for sdio Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 032/132] ath10k: fix VHT NSS calculation when STBC is enabled Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 033/132] drm/scheduler: Scheduler priority fixes (v2) Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 034/132] drm/brige/megachips: Add checking if ge_b850v3_lvds_init() is working correctly Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 035/132] ASoC: SOF: fix a runtime pm issue in SOF when HDMI codec doesn't work Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 036/132] selftests/x86/fsgsbase: Reap a forgotten child Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 037/132] drm/bridge_connector: Set default status connected for eDP connectors Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 038/132] media: videodev2.h: RGB BT2020 and HSV are always full range Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 039/132] misc: fastrpc: fix common struct sg_table related issues Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 040/132] media: platform: Improve queue set up flow for bug fixing Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 041/132] usb: typec: tcpm: During PR_SWAP, source caps should be sent only after tSwapSourceStart Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 042/132] media: tw5864: check status of tw5864_frameinterval_get Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 043/132] drm/vkms: avoid warning in vkms_get_vblank_timestamp Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 044/132] media: imx274: fix frame interval handling Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 045/132] mmc: via-sdmmc: Fix data race bug Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 046/132] drm/bridge/synopsys: dsi: add support for non-continuous HS clock Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 047/132] brcmfmac: increase F2 watermark for BCM4329 Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 048/132] arm64: topology: Stop using MPIDR for topology information Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 049/132] printk: reduce LOG_BUF_SHIFT range for H8300 Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 050/132] ia64: kprobes: Use generic kretprobe trampoline handler Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 051/132] kgdb: Make "kgdbcon" work properly with "kgdb_earlycon" Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 052/132] bpf: Permit map_ptr arithmetic with opcode add and offset 0 Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 053/132] drm: exynos: fix common struct sg_table related issues Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 054/132] xen: gntdev: " Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 055/132] drm: lima: " Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 056/132] drm: panfrost: " Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 057/132] media: uvcvideo: Fix dereference of out-of-bound list iterator Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 058/132] nfc: s3fwrn5: Add missing CRYPTO_HASH dependency Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 059/132] selftests/bpf: Define string const as global for test_sysctl_prog.c Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 060/132] selinux: access policycaps with READ_ONCE/WRITE_ONCE Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 061/132] samples/bpf: Fix possible deadlock in xdpsock Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 062/132] drm/amd/display: Check clock table return Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 063/132] riscv: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 064/132] cpufreq: sti-cpufreq: add stih418 support Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 065/132] USB: adutux: fix debugging Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 066/132] uio: free uio id after uio file node is freed Sasha Levin
2020-10-26 23:50 ` [PATCH AUTOSEL 5.8 067/132] coresight: Make sysfs functional on topologies with per core sink Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 068/132] drm/amdgpu: No sysfs, not an error condition Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 069/132] mac80211: add missing queue/hash initialization to 802.3 xmit Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 070/132] usb: xhci: omit duplicate actions when suspending a runtime suspended host Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 071/132] SUNRPC: Mitigate cond_resched() in xprt_transmit() Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 072/132] cpuidle: tegra: Correctly handle result of arm_cpuidle_simple_enter() Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 073/132] arm64/mm: return cpu_all_mask when node is NUMA_NO_NODE Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 074/132] can: flexcan: disable clocks during stop mode Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 075/132] habanalabs: remove security from ARB_MST_QUIET register Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 076/132] xfs: don't free rt blocks when we're doing a REMAP bunmapi call Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 077/132] xfs: avoid LR buffer overrun due to crafted h_len Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 078/132] ACPI: Add out of bounds and numa_off protections to pxm_to_node() Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 079/132] genirq: Add stub for set_handle_irq() when !GENERIC_IRQ_MULTI_HANDLER Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 080/132] octeontx2-af: fix LD CUSTOM LTYPE aliasing Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 081/132] dm: change max_io_len() to use blk_max_size_offset() Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 082/132] brcmfmac: Fix warning message after dongle setup failed Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 083/132] ath11k: Use GFP_ATOMIC instead of GFP_KERNEL in ath11k_dp_htt_get_ppdu_desc Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 084/132] ath11k: fix warning caused by lockdep_assert_held Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 085/132] ath11k: change to disable softirqs for ath11k_regd_update to solve deadlock Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 086/132] drivers/net/wan/hdlc_fr: Correctly handle special skb->protocol values Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 087/132] usb: dwc3: core: do not queue work if dr_mode is not USB_DR_MODE_OTG Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 088/132] bus: mhi: core: Abort suspends due to outgoing pending packets Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 089/132] bus/fsl_mc: Do not rely on caller to provide non NULL mc_io Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 090/132] ACPI: HMAT: Fix handling of changes from ACPI 6.2 to ACPI 6.3 Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 091/132] power: supply: test_power: add missing newlines when printing parameters by sysfs Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 092/132] drm/amd/display: HDMI remote sink need mode validation for Linux Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 093/132] drm/amd/display: Avoid set zero in the requested clk Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 094/132] ARC: [dts] fix the errors detected by dtbs_check Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 095/132] block: Consider only dispatched requests for inflight statistic Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 096/132] btrfs: fix replace of seed device Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 097/132] md/bitmap: md_bitmap_get_counter returns wrong blocks Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 098/132] f2fs: fix to set SBI_NEED_FSCK flag for inconsistent inode Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 099/132] bnxt_en: Log unknown link speed appropriately Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 100/132] binfmt_elf: take the mmap lock around find_extend_vma() Sasha Levin
2020-10-27 11:40 ` Jann Horn
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 101/132] rpmsg: glink: Use complete_all for open states Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 102/132] PCI/ACPI: Add Ampere Altra SOC MCFG quirk Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 103/132] clk: ti: clockdomain: fix static checker warning Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 104/132] nfsd: rename delegation related tracepoints to make them less confusing Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 105/132] phy: marvell: comphy: Convert internal SMCC firmware return codes to errno Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 106/132] asm-generic/io.h: Fix !CONFIG_GENERIC_IOMAP pci_iounmap() implementation Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 107/132] net: 9p: initialize sun_server.sun_path to have addr's value only when addr is valid Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 108/132] ceph: encode inodes' parent/d_name in cap reconnect message Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 109/132] drivers: watchdog: rdc321x_wdt: Fix race condition bugs Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 110/132] ext4: Detect already used quota file early Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 111/132] PCI: dwc: Add link up check in dw_child_pcie_ops.map_bus() Sasha Levin
2020-10-26 23:51 ` Sasha Levin [this message]
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 113/132] scsi: core: Clean up allocation and freeing of sgtables Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 114/132] gfs2: call truncate_inode_pages_final for address space glocks Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 115/132] gfs2: Fix NULL pointer dereference in gfs2_rgrp_dump Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 116/132] gfs2: use-after-free in sysfs deregistration Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 117/132] gfs2: add validation checks for size of superblock Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 118/132] Handle STATUS_IO_TIMEOUT gracefully Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 119/132] cifs: handle -EINTR in cifs_setattr Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 120/132] arm64: dts: renesas: ulcb: add full-pwr-cycle-in-suspend into eMMC nodes Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 121/132] ARM: dts: omap4: Fix sgx clock rate for 4430 Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 122/132] memory: emif: Remove bogus debugfs error handling Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 123/132] ARM: dts: s5pv210: remove DMA controller bus node name to fix dtschema warnings Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 124/132] ARM: dts: s5pv210: move fixed clocks under root node Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 125/132] ARM: dts: s5pv210: move PMU node out of clock controller Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 126/132] ARM: dts: s5pv210: remove dedicated 'audio-subsystem' node Sasha Levin
2020-10-26 23:51 ` [PATCH AUTOSEL 5.8 127/132] ARM: dts: s5pv210: align SPI GPIO node name with dtschema in Aries Sasha Levin
2020-10-26 23:52 ` [PATCH AUTOSEL 5.8 128/132] soc: qcom: rpmh-rsc: Sleep waiting for tcs slots to be free Sasha Levin
2020-10-26 23:52 ` [PATCH AUTOSEL 5.8 129/132] firmware: arm_scmi: Move scmi bus init and exit calls into the driver Sasha Levin
2020-10-26 23:52 ` [PATCH AUTOSEL 5.8 130/132] nbd: make the config put is called before the notifying the waiter Sasha Levin
2020-10-26 23:52 ` [PATCH AUTOSEL 5.8 131/132] sgl_alloc_order: fix memory leak Sasha Levin
2020-10-26 23:52 ` [PATCH AUTOSEL 5.8 132/132] nvme-rdma: fix crash when connect rejected Sasha Levin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201026235205.1023962-112-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=david@gibson.dropbear.id.au \
--cc=farosas@linux.ibm.com \
--cc=groug@kaod.org \
--cc=kvm-ppc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=paulus@ozlabs.org \
--cc=sathnaga@linux.vnet.ibm.com \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox