linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: gregkh@linuxfoundation.org
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Shawn Guo <shawn.guo@linaro.org>,
	Ard Biesheuvel <ardb@kernel.org>
Subject: [PATCH 5.11 279/306] efi: stub: omit SetVirtualAddressMap() if marked unsupported in RT_PROP table
Date: Mon, 15 Mar 2021 14:55:42 +0100	[thread overview]
Message-ID: <20210315135517.098808085@linuxfoundation.org> (raw)
In-Reply-To: <20210315135507.611436477@linuxfoundation.org>

From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

From: Ard Biesheuvel <ardb@kernel.org>

commit 9e9888a0fe97b9501a40f717225d2bef7100a2c1 upstream.

The EFI_RT_PROPERTIES_TABLE contains a mask of runtime services that are
available after ExitBootServices(). This mostly does not concern the EFI
stub at all, given that it runs before that. However, there is one call
that is made at runtime, which is the call to SetVirtualAddressMap()
(which is not even callable at boot time to begin with)

So add the missing handling of the RT_PROP table to ensure that we only
call SetVirtualAddressMap() if it is not being advertised as unsupported
by the firmware.

Cc: <stable@vger.kernel.org> # v5.10+
Tested-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/firmware/efi/libstub/efi-stub.c |   16 ++++++++++++++++
 1 file changed, 16 insertions(+)

--- a/drivers/firmware/efi/libstub/efi-stub.c
+++ b/drivers/firmware/efi/libstub/efi-stub.c
@@ -96,6 +96,18 @@ static void install_memreserve_table(voi
 		efi_err("Failed to install memreserve config table!\n");
 }
 
+static u32 get_supported_rt_services(void)
+{
+	const efi_rt_properties_table_t *rt_prop_table;
+	u32 supported = EFI_RT_SUPPORTED_ALL;
+
+	rt_prop_table = get_efi_config_table(EFI_RT_PROPERTIES_TABLE_GUID);
+	if (rt_prop_table)
+		supported &= rt_prop_table->runtime_services_supported;
+
+	return supported;
+}
+
 /*
  * EFI entry point for the arm/arm64 EFI stubs.  This is the entrypoint
  * that is described in the PE/COFF header.  Most of the code is the same
@@ -250,6 +262,10 @@ efi_status_t __efiapi efi_pe_entry(efi_h
 			  (prop_tbl->memory_protection_attribute &
 			   EFI_PROPERTIES_RUNTIME_MEMORY_PROTECTION_NON_EXECUTABLE_PE_DATA);
 
+	/* force efi_novamap if SetVirtualAddressMap() is unsupported */
+	efi_novamap |= !(get_supported_rt_services() &
+			 EFI_RT_SUPPORTED_SET_VIRTUAL_ADDRESS_MAP);
+
 	/* hibernation expects the runtime regions to stay in the same place */
 	if (!IS_ENABLED(CONFIG_HIBERNATION) && !efi_nokaslr && !flat_va_mapping) {
 		/*



  parent reply	other threads:[~2021-03-15 14:46 UTC|newest]

Thread overview: 314+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-15 13:51 [PATCH 5.11 000/306] 5.11.7-rc1 review gregkh
2021-03-15 13:51 ` [PATCH 5.11 001/306] uapi: nfnetlink_cthelper.h: fix userspace compilation error gregkh
2021-03-15 13:51 ` [PATCH 5.11 002/306] powerpc/603: Fix protection of user pages mapped with PROT_NONE gregkh
2021-03-15 13:51 ` [PATCH 5.11 003/306] powerpc/perf: Fix handling of privilege level checks in perf interrupt context gregkh
2021-03-15 13:51 ` [PATCH 5.11 004/306] powerpc/pseries: Dont enforce MSI affinity with kdump gregkh
2021-03-15 13:51 ` [PATCH 5.11 005/306] ethernet: alx: fix order of calls on resume gregkh
2021-03-15 13:51 ` [PATCH 5.11 006/306] crypto: mips/poly1305 - enable for all MIPS processors gregkh
2021-03-15 13:51 ` [PATCH 5.11 007/306] mptcp: fix length of ADD_ADDR with port sub-option gregkh
2021-03-15 13:51 ` [PATCH 5.11 008/306] ath9k: fix transmitting to stations in dynamic SMPS mode gregkh
2021-03-15 13:51 ` [PATCH 5.11 009/306] net: Fix gro aggregation for udp encaps with zero csum gregkh
2021-03-15 13:51 ` [PATCH 5.11 010/306] net: check if protocol extracted by virtio_net_hdr_set_proto is correct gregkh
2021-03-15 13:51 ` [PATCH 5.11 011/306] net: avoid infinite loop in mpls_gso_segment when mpls_hlen == 0 gregkh
2021-03-15 13:51 ` [PATCH 5.11 012/306] ath11k: fix AP mode for QCA6390 gregkh
2021-03-15 13:51 ` [PATCH 5.11 013/306] net: l2tp: reduce log level of messages in receive path, add counter instead gregkh
2021-03-15 13:51 ` [PATCH 5.11 014/306] gpiolib: acpi: Add ACPI_GPIO_QUIRK_ABSOLUTE_NUMBER quirk gregkh
2021-03-15 13:51 ` [PATCH 5.11 015/306] gpiolib: acpi: Allow to find GpioInt() resource by name and index gregkh
2021-03-15 13:51 ` [PATCH 5.11 016/306] gpiolib: Read "gpio-line-names" from a firmware node gregkh
2021-03-15 13:51 ` [PATCH 5.11 017/306] can: skb: can_skb_set_owner(): fix ref counting if socket was closed before setting skb ownership gregkh
2021-03-15 13:51 ` [PATCH 5.11 018/306] gpio: pca953x: Set IRQ type when handle Intel Galileo Gen 2 gregkh
2021-03-15 13:51 ` [PATCH 5.11 019/306] can: flexcan: assert FRZ bit in flexcan_chip_freeze() gregkh
2021-03-15 13:51 ` [PATCH 5.11 020/306] can: flexcan: enable RX FIFO after FRZ/HALT valid gregkh
2021-03-15 13:51 ` [PATCH 5.11 021/306] can: flexcan: invoke flexcan_chip_freeze() to enter freeze mode gregkh
2021-03-15 13:51 ` [PATCH 5.11 022/306] can: tcan4x5x: tcan4x5x_init(): fix initialization - clear MRAM before entering Normal Mode gregkh
2021-03-15 13:51 ` [PATCH 5.11 023/306] tcp: Fix sign comparison bug in getsockopt(TCP_ZEROCOPY_RECEIVE) gregkh
2021-03-15 13:51 ` [PATCH 5.11 024/306] tcp: add sanity tests to TCP_QUEUE_SEQ gregkh
2021-03-15 13:51 ` [PATCH 5.11 025/306] netfilter: nf_nat: undo erroneous tcp edemux lookup gregkh
2021-03-15 13:51 ` [PATCH 5.11 026/306] netfilter: x_tables: gpf inside xt_find_revision() gregkh
2021-03-15 13:51 ` [PATCH 5.11 027/306] net: always use icmp{,v6}_ndo_send from ndo_start_xmit gregkh
2021-03-15 13:51 ` [PATCH 5.11 028/306] net: phy: fix save wrong speed and duplex problem if autoneg is on gregkh
2021-03-15 13:51 ` [PATCH 5.11 029/306] selftests/bpf: Use the last page in test_snprintf_btf on s390 gregkh
2021-03-15 13:51 ` [PATCH 5.11 030/306] selftests/bpf: No need to drop the packet when there is no geneve opt gregkh
2021-03-15 13:51 ` [PATCH 5.11 031/306] selftests/bpf: Mask bpf_csum_diff() return value to 16 bits in test_verifier gregkh
2021-03-15 13:51 ` [PATCH 5.11 032/306] samples, bpf: Add missing munmap in xdpsock gregkh
2021-03-15 13:51 ` [PATCH 5.11 033/306] libbpf: Clear map_info before each bpf_obj_get_info_by_fd gregkh
2021-03-15 13:51 ` [PATCH 5.11 034/306] ibmvnic: Fix possibly uninitialized old_num_tx_queues variable warning gregkh
2021-03-15 13:51 ` [PATCH 5.11 035/306] ibmvnic: always store valid MAC address gregkh
2021-03-15 13:51 ` [PATCH 5.11 036/306] ibmvnic: remove excessive irqsave gregkh
2021-03-15 13:51 ` [PATCH 5.11 037/306] mt76: dma: do not report truncated frames to mac80211 gregkh
2021-03-15 13:51 ` [PATCH 5.11 038/306] gpio: fix gpio-device list corruption gregkh
2021-03-15 13:51 ` [PATCH 5.11 039/306] mount: fix mounting of detached mounts onto targets that reside on shared mounts gregkh
2021-03-15 13:51 ` [PATCH 5.11 040/306] cifs: fix credit accounting for extra channel gregkh
2021-03-15 13:51 ` [PATCH 5.11 041/306] cifs: return proper error code in statfs(2) gregkh
2021-03-15 13:51 ` [PATCH 5.11 042/306] Revert "mm, slub: consider rest of partial list if acquire_slab() fails" gregkh
2021-03-15 13:51 ` [PATCH 5.11 043/306] docs: networking: drop special stable handling gregkh
2021-03-15 13:51 ` [PATCH 5.11 044/306] net: dsa: tag_rtl4_a: fix egress tags gregkh
2021-03-15 13:51 ` [PATCH 5.11 045/306] sh_eth: fix TRSCER mask for SH771x gregkh
2021-03-15 13:51 ` [PATCH 5.11 046/306] net: enetc: dont overwrite the RSS indirection table when initializing gregkh
2021-03-15 13:51 ` [PATCH 5.11 047/306] net: enetc: initialize RFS/RSS memories for unused ports too gregkh
2021-03-15 13:51 ` [PATCH 5.11 048/306] net: enetc: take the MDIO lock only once per NAPI poll cycle gregkh
2021-03-15 13:51 ` [PATCH 5.11 049/306] net: enetc: fix incorrect TPID when receiving 802.1ad tagged packets gregkh
2021-03-15 13:51 ` [PATCH 5.11 050/306] net: enetc: dont disable VLAN filtering in IFF_PROMISC mode gregkh
2021-03-15 13:51 ` [PATCH 5.11 051/306] net: enetc: force the RGMII speed and duplex instead of operating in inband mode gregkh
2021-03-15 13:51 ` [PATCH 5.11 052/306] net: enetc: remove bogus write to SIRXIDR from enetc_setup_rxbdr gregkh
2021-03-15 13:51 ` [PATCH 5.11 053/306] net: enetc: keep RX ring consumer index in sync with hardware gregkh
2021-03-15 13:51 ` [PATCH 5.11 054/306] net: dsa: tag_mtk: fix 802.1ad VLAN egress gregkh
2021-03-15 13:51 ` [PATCH 5.11 055/306] net: ethernet: mtk-star-emac: fix wrong unmap in RX handling gregkh
2021-03-15 13:51 ` [PATCH 5.11 056/306] net/mlx4_en: update moderation when config reset gregkh
2021-03-15 13:52 ` [PATCH 5.11 057/306] net: stmmac: fix incorrect DMA channel intr enable setting of EQoS v4.10 gregkh
2021-03-15 13:52 ` [PATCH 5.11 058/306] nexthop: Do not flush blackhole nexthops when loopback goes down gregkh
2021-03-15 13:52 ` [PATCH 5.11 059/306] net: sched: avoid duplicates in classes dump gregkh
2021-03-15 13:52 ` [PATCH 5.11 060/306] net: mscc: ocelot: properly reject destination IP keys in VCAP IS1 gregkh
2021-03-15 13:52 ` [PATCH 5.11 061/306] net: dsa: sja1105: fix SGMII PCS being forced to SPEED_UNKNOWN instead of SPEED_10 gregkh
2021-03-15 13:52 ` [PATCH 5.11 062/306] net: usb: qmi_wwan: allow qmimux add/del with master up gregkh
2021-03-15 13:52 ` [PATCH 5.11 063/306] netdevsim: init u64 stats for 32bit hardware gregkh
2021-03-15 13:52 ` [PATCH 5.11 064/306] cipso,calipso: resolve a number of problems with the DOI refcounts gregkh
2021-03-15 13:52 ` [PATCH 5.11 065/306] net: stmmac: Fix VLAN filter delete timeout issue in Intel mGBE SGMII gregkh
2021-03-15 13:52 ` [PATCH 5.11 066/306] stmmac: intel: Fixes clock registration error seen for multiple interfaces gregkh
2021-03-15 13:52 ` [PATCH 5.11 067/306] net: lapbether: Remove netif_start_queue / netif_stop_queue gregkh
2021-03-15 13:52 ` [PATCH 5.11 068/306] net: davicom: Fix regulator not turned off on failed probe gregkh
2021-03-15 13:52 ` [PATCH 5.11 069/306] net: davicom: Fix regulator not turned off on driver removal gregkh
2021-03-15 13:52 ` [PATCH 5.11 070/306] net: enetc: allow hardware timestamping on TX queues with tc-etf enabled gregkh
2021-03-15 13:52 ` [PATCH 5.11 071/306] net: qrtr: fix error return code of qrtr_sendmsg() gregkh
2021-03-15 13:52 ` [PATCH 5.11 072/306] s390/qeth: fix memory leak after failed TX Buffer allocation gregkh
2021-03-15 13:52 ` [PATCH 5.11 073/306] s390/qeth: improve completion of pending TX buffers gregkh
2021-03-15 13:52 ` [PATCH 5.11 074/306] s390/qeth: schedule TX NAPI on QAOB completion gregkh
2021-03-15 13:52 ` [PATCH 5.11 075/306] s390/qeth: fix notification for pending buffers during teardown gregkh
2021-03-15 13:52 ` [PATCH 5.11 076/306] r8169: fix r8168fp_adjust_ocp_cmd function gregkh
2021-03-15 13:52 ` [PATCH 5.11 077/306] ixgbe: fail to create xfrm offload of IPsec tunnel mode SA gregkh
2021-03-15 13:52 ` [PATCH 5.11 078/306] tools/resolve_btfids: Fix build error with older host toolchains gregkh
2021-03-15 13:52 ` [PATCH 5.11 079/306] perf build: Fix ccache usage in $(CC) when generating arch errno table gregkh
2021-03-15 13:52 ` [PATCH 5.11 080/306] net: stmmac: stop each tx channel independently gregkh
2021-03-15 13:52 ` [PATCH 5.11 081/306] net: stmmac: fix watchdog timeout during suspend/resume stress test gregkh
2021-03-15 13:52 ` [PATCH 5.11 082/306] net: stmmac: fix wrongly set buffer2 valid when sph unsupport gregkh
2021-03-15 13:52 ` [PATCH 5.11 083/306] ethtool: fix the check logic of at least one channel for RX/TX gregkh
2021-03-15 13:52 ` [PATCH 5.11 084/306] net: phy: make mdio_bus_phy_suspend/resume as __maybe_unused gregkh
2021-03-15 13:52 ` [PATCH 5.11 085/306] selftests: forwarding: Fix race condition in mirror installation gregkh
2021-03-15 13:52 ` [PATCH 5.11 086/306] mlxsw: spectrum_ethtool: Add an external speed to PTYS register gregkh
2021-03-15 13:52 ` [PATCH 5.11 087/306] perf traceevent: Ensure read cmdlines are null terminated gregkh
2021-03-15 13:52 ` [PATCH 5.11 088/306] perf report: Fix -F for branch & mem modes gregkh
2021-03-15 13:52 ` [PATCH 5.11 089/306] net: hns3: fix error mask definition of flow director gregkh
2021-03-15 13:52 ` [PATCH 5.11 090/306] net: hns3: fix query vlan mask value error for " gregkh
2021-03-15 13:52 ` [PATCH 5.11 091/306] net: hns3: fix bug when calculating the TCAM table info gregkh
2021-03-15 13:52 ` [PATCH 5.11 092/306] s390/cio: return -EFAULT if copy_to_user() fails again gregkh
2021-03-15 13:52 ` [PATCH 5.11 093/306] bnxt_en: reliably allocate IRQ table on reset to avoid crash gregkh
2021-03-15 13:52 ` [PATCH 5.11 094/306] drm/fb-helper: only unmap if buffer not null gregkh
2021-03-15 13:52 ` [PATCH 5.11 095/306] drm/compat: Clear bounce structures gregkh
2021-03-15 13:52 ` [PATCH 5.11 096/306] drm/radeon: also init GEM funcs in radeon_gem_prime_import_sg_table gregkh
2021-03-15 13:52 ` [PATCH 5.11 097/306] drm/amd/display: Add a backlight module option gregkh
2021-03-15 13:52 ` [PATCH 5.11 098/306] drm/amdgpu/display: use GFP_ATOMIC in dcn21_validate_bandwidth_fp() gregkh
2021-03-15 13:52 ` [PATCH 5.11 099/306] drm/amd/display: Fix nested FPU context in dcn21_validate_bandwidth() gregkh
2021-03-15 13:52 ` [PATCH 5.11 100/306] drm/amd/pm: correct the watermark settings for Polaris gregkh
2021-03-15 13:52 ` [PATCH 5.11 101/306] drm/amd/pm: bug fix for pcie dpm gregkh
2021-03-15 13:52 ` [PATCH 5.11 102/306] drm/amdgpu/display: simplify backlight setting gregkh
2021-03-15 13:52 ` [PATCH 5.11 103/306] drm/amdgpu/display: dont assert in set backlight function gregkh
2021-03-15 13:52 ` [PATCH 5.11 104/306] drm/amdgpu/display: handle aux backlight in backlight_get_brightness gregkh
2021-03-15 13:52 ` [PATCH 5.11 105/306] drm/shmem-helper: Check for purged buffers in fault handler gregkh
2021-03-15 13:52 ` [PATCH 5.11 106/306] drm/shmem-helper: Dont remove the offset in vm_area_struct pgoff gregkh
2021-03-15 13:52 ` [PATCH 5.11 107/306] drm: Use USB controllers DMA mask when importing dmabufs gregkh
2021-03-15 13:52 ` [PATCH 5.11 108/306] drm/amdgpu: fix S0ix handling when the CONFIG_AMD_PMC=m gregkh
2021-03-15 13:52 ` [PATCH 5.11 109/306] drm: meson_drv add shutdown function gregkh
2021-03-15 13:52 ` [PATCH 5.11 110/306] drm/shmem-helpers: vunmap: Dont put pages for dma-buf gregkh
2021-03-15 13:52 ` [PATCH 5.11 111/306] drm/i915: Wedge the GPU if command parser setup fails gregkh
2021-03-15 13:52 ` [PATCH 5.11 112/306] s390/cio: return -EFAULT if copy_to_user() fails gregkh
2021-03-15 13:52 ` [PATCH 5.11 113/306] s390/crypto: " gregkh
2021-03-15 13:52 ` [PATCH 5.11 114/306] qxl: Fix uninitialised struct field head.surface_id gregkh
2021-03-15 13:52 ` [PATCH 5.11 115/306] sh_eth: fix TRSCER mask for R7S9210 gregkh
2021-03-15 13:52 ` [PATCH 5.11 116/306] media: usbtv: Fix deadlock on suspend gregkh
2021-03-15 13:53 ` [PATCH 5.11 117/306] media: rkisp1: params: fix wrong bits settings gregkh
2021-03-15 13:53 ` [PATCH 5.11 118/306] media: v4l: vsp1: Fix uif null pointer access gregkh
2021-03-15 13:53 ` [PATCH 5.11 119/306] media: v4l: vsp1: Fix bru " gregkh
2021-03-15 13:53 ` [PATCH 5.11 120/306] media: rc: compile rc-cec.c into rc-core gregkh
2021-03-15 13:53 ` [PATCH 5.11 121/306] MIPS: kernel: Reserve exception base early to prevent corruption gregkh
2021-03-15 13:53 ` [PATCH 5.11 122/306] mptcp: always graft subflow socket to parent gregkh
2021-03-15 13:53 ` [PATCH 5.11 123/306] mptcp: reset last_snd on subflow close gregkh
2021-03-15 13:53 ` [PATCH 5.11 124/306] i2c: rcar: faster irq code to minimize HW race condition gregkh
2021-03-15 13:53 ` [PATCH 5.11 125/306] i2c: rcar: optimize cacheline " gregkh
2021-03-15 13:53 ` [PATCH 5.11 126/306] scsi: pm80xx: Fix missing tag_free in NVMD DATA req gregkh
2021-03-15 13:53 ` [PATCH 5.11 127/306] scsi: ufs: WB is only available on LUN #0 to #7 gregkh
2021-03-15 13:53 ` [PATCH 5.11 128/306] scsi: ufs: Protect some contexts from unexpected clock scaling gregkh
2021-03-15 13:53 ` [PATCH 5.11 129/306] udf: fix silent AED tagLocation corruption gregkh
2021-03-15 13:53 ` [PATCH 5.11 130/306] iommu/vt-d: Clear PRQ overflow only when PRQ is empty gregkh
2021-03-15 13:53 ` [PATCH 5.11 131/306] mmc: mxs-mmc: Fix a resource leak in an error handling path in mxs_mmc_probe() gregkh
2021-03-15 13:53 ` [PATCH 5.11 132/306] mmc: mediatek: fix race condition between msdc_request_timeout and irq gregkh
2021-03-15 13:53 ` [PATCH 5.11 133/306] mmc: sdhci-iproc: Add ACPI bindings for the RPi gregkh
2021-03-15 13:53 ` [PATCH 5.11 134/306] platform/x86: amd-pmc: put device on error paths gregkh
2021-03-15 13:53 ` [PATCH 5.11 135/306] Platform: OLPC: Fix probe error handling gregkh
2021-03-15 13:53 ` [PATCH 5.11 136/306] powerpc/pci: Add ppc_md.discover_phbs() gregkh
2021-03-15 13:53 ` [PATCH 5.11 137/306] spi: stm32: make spurious and overrun interrupts visible gregkh
2021-03-15 13:53 ` [PATCH 5.11 138/306] powerpc: improve handling of unrecoverable system reset gregkh
2021-03-15 13:53 ` [PATCH 5.11 139/306] powerpc/perf: Record counter overflow always if SAMPLE_IP is unset gregkh
2021-03-15 13:53 ` [PATCH 5.11 140/306] HID: logitech-dj: add support for the new lightspeed connection iteration gregkh
2021-03-15 13:53 ` [PATCH 5.11 141/306] powerpc/64: Fix stack trace not displaying final frame gregkh
2021-03-15 13:53 ` [PATCH 5.11 142/306] iommu/amd: Fix performance counter initialization gregkh
2021-03-15 13:53 ` [PATCH 5.11 143/306] clk: qcom: gdsc: Implement NO_RET_PERIPH flag gregkh
2021-03-15 13:53 ` [PATCH 5.11 144/306] sparc32: Limit memblock allocation to low memory gregkh
2021-03-15 13:53 ` [PATCH 5.11 145/306] sparc64: Use arch_validate_flags() to validate ADI flag gregkh
2021-03-15 13:53 ` [PATCH 5.11 146/306] Input: applespi - dont wait for responses to commands indefinitely gregkh
2021-03-15 13:53 ` [PATCH 5.11 147/306] PCI: xgene-msi: Fix race in installing chained irq handler gregkh
2021-03-15 13:53 ` [PATCH 5.11 148/306] PCI: mediatek: Add missing of_node_put() to fix reference leak gregkh
2021-03-15 13:53 ` [PATCH 5.11 149/306] drivers/base: build kunit tests without structleak plugin gregkh
2021-03-15 13:53 ` [PATCH 5.11 150/306] PCI/LINK: Remove bandwidth notification gregkh
2021-03-15 13:53 ` [PATCH 5.11 151/306] ext4: dont try to processed freed blocks until mballoc is initialized gregkh
2021-03-15 13:53 ` [PATCH 5.11 152/306] kbuild: clamp SUBLEVEL to 255 gregkh
2021-03-15 13:53 ` [PATCH 5.11 153/306] PCI: Fix pci_register_io_range() memory leak gregkh
2021-03-15 13:53 ` [PATCH 5.11 154/306] i40e: Fix memory leak in i40e_probe gregkh
2021-03-15 13:53 ` [PATCH 5.11 155/306] PCI/ERR: Retain status from error notification gregkh
2021-03-15 13:53 ` [PATCH 5.11 156/306] kasan: fix memory corruption in kasan_bitops_tags test gregkh
2021-03-15 13:53 ` [PATCH 5.11 157/306] s390/smp: __smp_rescan_cpus() - move cpumask away from stack gregkh
2021-03-15 13:53 ` [PATCH 5.11 158/306] drivers/base/memory: dont store phys_device in memory blocks gregkh
2021-03-15 13:53 ` [PATCH 5.11 159/306] sysctl.c: fix underflow value setting risk in vm_table gregkh
2021-03-15 13:53 ` [PATCH 5.11 160/306] scsi: libiscsi: Fix iscsi_prep_scsi_cmd_pdu() error handling gregkh
2021-03-15 13:53 ` [PATCH 5.11 161/306] scsi: target: core: Add cmd length set before cmd complete gregkh
2021-03-15 13:53 ` [PATCH 5.11 162/306] scsi: target: core: Prevent underflow for service actions gregkh
2021-03-15 13:53 ` [PATCH 5.11 163/306] clk: qcom: gpucc-msm8998: Add resets, cxc, fix flags on gpu_gx_gdsc gregkh
2021-03-15 13:53 ` [PATCH 5.11 164/306] ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk gregkh
2021-03-15 13:53 ` [PATCH 5.11 165/306] ALSA: hda/hdmi: Cancel pending works before suspend gregkh
2021-03-15 13:53 ` [PATCH 5.11 166/306] ALSA: hda/conexant: Add quirk for mute LED control on HP ZBook G5 gregkh
2021-03-15 13:53 ` [PATCH 5.11 167/306] ALSA: hda/ca0132: Add Sound BlasterX AE-5 Plus support gregkh
2021-03-15 13:53 ` [PATCH 5.11 168/306] ALSA: hda: Drop the BATCH workaround for AMD controllers gregkh
2021-03-15 13:53 ` [PATCH 5.11 169/306] ALSA: hda: Flush pending unsolicited events before suspend gregkh
2021-03-15 13:53 ` [PATCH 5.11 170/306] ALSA: hda: Avoid spurious unsol event handling during S3/S4 gregkh
2021-03-15 13:53 ` [PATCH 5.11 171/306] ALSA: usb-audio: Fix "cannot get freq eq" errors on Dell AE515 sound bar gregkh
2021-03-15 13:53 ` [PATCH 5.11 172/306] ALSA: usb-audio: Apply the control quirk to Plantronics headsets gregkh
2021-03-15 13:53 ` [PATCH 5.11 173/306] ALSA: usb-audio: Disable USB autosuspend properly in setup_disable_autosuspend() gregkh
2021-03-15 13:53 ` [PATCH 5.11 174/306] ALSA: usb-audio: fix NULL ptr dereference in usb_audio_probe gregkh
2021-03-15 13:53 ` [PATCH 5.11 175/306] ALSA: usb-audio: fix use after free in usb_audio_disconnect gregkh
2021-03-15 13:53 ` [PATCH 5.11 176/306] opp: Dont drop extra references to OPPs accidentally gregkh
2021-03-15 13:54 ` [PATCH 5.11 177/306] Revert 95ebabde382c ("capabilities: Dont allow writing ambiguous v3 file capabilities") gregkh
2021-03-15 13:54 ` [PATCH 5.11 178/306] block: Discard page cache of zone reset target range gregkh
2021-03-15 13:54 ` [PATCH 5.11 179/306] block: Try to handle busy underlying device on discard gregkh
2021-03-15 13:54 ` [PATCH 5.11 180/306] arm64: kasan: fix page_alloc tagging with DEBUG_VIRTUAL gregkh
2021-03-15 13:54 ` [PATCH 5.11 181/306] arm64: mte: Map hotplugged memory as Normal Tagged gregkh
2021-03-15 13:54 ` [PATCH 5.11 182/306] arm64: perf: Fix 64-bit event counter read truncation gregkh
2021-03-15 13:54 ` [PATCH 5.11 183/306] s390/dasd: fix hanging DASD driver unbind gregkh
2021-03-15 13:54 ` [PATCH 5.11 184/306] s390/dasd: fix hanging IO request during " gregkh
2021-03-15 13:54 ` [PATCH 5.11 185/306] software node: Fix node registration gregkh
2021-03-15 13:54 ` [PATCH 5.11 186/306] xen/events: reset affinity of 2-level event when tearing it down gregkh
2021-03-15 13:54 ` [PATCH 5.11 187/306] xen/events: dont unmask an event channel when an eoi is pending gregkh
2021-03-15 13:54 ` [PATCH 5.11 188/306] xen/events: avoid handling the same event on two cpus at the same time gregkh
2021-03-15 13:54 ` [PATCH 5.11 189/306] mmc: mmci: Add MMC_CAP_NEED_RSP_BUSY for the stm32 variants gregkh
2021-03-15 13:54 ` [PATCH 5.11 190/306] mmc: core: Fix partition switch time for eMMC gregkh
2021-03-15 13:54 ` [PATCH 5.11 191/306] mmc: cqhci: Fix random crash when remove mmc module/card gregkh
2021-03-15 13:54 ` [PATCH 5.11 192/306] cifs: do not send close in compound create+close requests gregkh
2021-03-15 13:54 ` [PATCH 5.11 193/306] Goodix Fingerprint device is not a modem gregkh
2021-03-15 13:54 ` [PATCH 5.11 194/306] USB: gadget: udc: s3c2410_udc: fix return value check in s3c2410_udc_probe() gregkh
2021-03-15 13:54 ` [PATCH 5.11 195/306] USB: gadget: u_ether: Fix a configfs return code gregkh
2021-03-15 13:54 ` [PATCH 5.11 196/306] usb: gadget: f_uac2: always increase endpoint max_packet_size by one audio slot gregkh
2021-03-15 13:54 ` [PATCH 5.11 197/306] usb: gadget: f_uac1: stop playback on function disable gregkh
2021-03-15 13:54 ` [PATCH 5.11 198/306] usb: dwc3: qcom: Add missing DWC3 OF node refcount decrement gregkh
2021-03-15 13:54 ` [PATCH 5.11 199/306] usb: dwc3: qcom: add URS Host support for sdm845 ACPI boot gregkh
2021-03-15 13:54 ` [PATCH 5.11 200/306] usb: dwc3: qcom: add ACPI device id for sc8180x gregkh
2021-03-15 13:54 ` [PATCH 5.11 201/306] usb: dwc3: qcom: Honor wakeup enabled/disabled state gregkh
2021-03-15 13:54 ` [PATCH 5.11 202/306] USB: usblp: fix a hang in poll() if disconnected gregkh
2021-03-15 13:54 ` [PATCH 5.11 203/306] usb: renesas_usbhs: Clear PIPECFG for re-enabling pipe with other EPNUM gregkh
2021-03-15 13:54 ` [PATCH 5.11 204/306] usb: xhci: do not perform Soft Retry for some xHCI hosts gregkh
2021-03-15 13:54 ` [PATCH 5.11 205/306] xhci: Improve detection of device initiated wake signal gregkh
2021-03-15 13:54 ` [PATCH 5.11 206/306] usb: xhci: Fix ASMedia ASM1042A and ASM3242 DMA addressing gregkh
2021-03-15 13:54 ` [PATCH 5.11 207/306] xhci: Fix repeated xhci wake after suspend due to uncleared internal wake state gregkh
2021-03-15 13:54 ` [PATCH 5.11 208/306] USB: serial: io_edgeport: fix memory leak in edge_startup gregkh
2021-03-15 13:54 ` [PATCH 5.11 209/306] USB: serial: ch341: add new Product ID gregkh
2021-03-15 13:54 ` [PATCH 5.11 210/306] USB: serial: cp210x: add ID for Acuity Brands nLight Air Adapter gregkh
2021-03-15 13:54 ` [PATCH 5.11 211/306] USB: serial: cp210x: add some more GE USB IDs gregkh
2021-03-15 13:54 ` [PATCH 5.11 212/306] usbip: fix stub_dev to check for stream socket gregkh
2021-03-15 13:54 ` [PATCH 5.11 213/306] usbip: fix vhci_hcd " gregkh
2021-03-15 13:54 ` [PATCH 5.11 214/306] usbip: fix vudc " gregkh
2021-03-15 13:54 ` [PATCH 5.11 215/306] usbip: fix stub_dev usbip_sockfd_store() races leading to gpf gregkh
2021-03-15 13:54 ` [PATCH 5.11 216/306] usbip: fix vhci_hcd attach_store() " gregkh
2021-03-15 13:54 ` [PATCH 5.11 217/306] usbip: fix vudc usbip_sockfd_store " gregkh
2021-03-15 13:54 ` [PATCH 5.11 218/306] Revert "serial: max310x: rework RX interrupt handling" gregkh
2021-03-15 13:54 ` [PATCH 5.11 219/306] misc/pvpanic: Export module FDT device table gregkh
2021-03-15 13:54 ` [PATCH 5.11 220/306] misc: fastrpc: restrict user apps from sending kernel RPC messages gregkh
2021-03-15 13:54 ` [PATCH 5.11 221/306] staging: rtl8192u: fix ->ssid overflow in r8192_wx_set_scan() gregkh
2021-03-15 13:54 ` [PATCH 5.11 222/306] staging: rtl8188eu: prevent ->ssid overflow in rtw_wx_set_scan() gregkh
2021-03-15 13:54 ` [PATCH 5.11 223/306] staging: rtl8712: unterminated string leads to read overflow gregkh
2021-03-15 13:54 ` [PATCH 5.11 224/306] staging: rtl8188eu: fix potential memory corruption in rtw_check_beacon_data() gregkh
2021-03-15 13:54 ` [PATCH 5.11 225/306] staging: ks7010: prevent buffer overflow in ks_wlan_set_scan() gregkh
2021-03-15 13:54 ` [PATCH 5.11 226/306] staging: rtl8712: Fix possible buffer overflow in r8712_sitesurvey_cmd gregkh
2021-03-15 13:54 ` [PATCH 5.11 227/306] staging: rtl8192e: Fix possible buffer overflow in _rtl92e_wx_set_scan gregkh
2021-03-15 13:54 ` [PATCH 5.11 228/306] staging: comedi: addi_apci_1032: Fix endian problem for COS sample gregkh
2021-03-15 13:54 ` [PATCH 5.11 229/306] staging: comedi: addi_apci_1500: Fix endian problem for command sample gregkh
2021-03-15 13:54 ` [PATCH 5.11 230/306] staging: comedi: adv_pci1710: Fix endian problem for AI command data gregkh
2021-03-15 13:54 ` [PATCH 5.11 231/306] staging: comedi: das6402: " gregkh
2021-03-15 13:54 ` [PATCH 5.11 232/306] staging: comedi: das800: " gregkh
2021-03-15 13:54 ` [PATCH 5.11 233/306] staging: comedi: dmm32at: " gregkh
2021-03-15 13:54 ` [PATCH 5.11 234/306] staging: comedi: me4000: " gregkh
2021-03-15 13:54 ` [PATCH 5.11 235/306] staging: comedi: pcl711: " gregkh
2021-03-15 13:54 ` [PATCH 5.11 236/306] staging: comedi: pcl818: " gregkh
2021-03-15 13:55 ` [PATCH 5.11 237/306] mlxsw: spectrum_router: Ignore routes using a deleted nexthop object gregkh
2021-03-15 13:55 ` [PATCH 5.11 238/306] net: phy: ti: take into account all possible interrupt sources gregkh
2021-03-15 13:55 ` [PATCH 5.11 239/306] sh_eth: fix TRSCER mask for R7S72100 gregkh
2021-03-15 13:55 ` [PATCH 5.11 240/306] powerpc/sstep: Fix VSX instruction emulation gregkh
2021-03-15 13:55 ` [PATCH 5.11 241/306] net: macb: Add default usrio config to default gem config gregkh
2021-03-15 13:55 ` [PATCH 5.11 242/306] cpufreq: qcom-hw: fix dereferencing freed memory data gregkh
2021-03-15 13:55 ` [PATCH 5.11 243/306] cpufreq: qcom-hw: Fix return value check in qcom_cpufreq_hw_cpu_init() gregkh
2021-03-15 13:55 ` [PATCH 5.11 244/306] arm64/mm: Fix pfn_valid() for ZONE_DEVICE based memory gregkh
2021-03-15 13:55 ` [PATCH 5.11 245/306] SUNRPC: Set memalloc_nofs_save() for sync tasks gregkh
2021-03-15 13:55 ` [PATCH 5.11 246/306] NFS: Dont revalidate the directory permissions on a lookup failure gregkh
2021-03-15 13:55 ` [PATCH 5.11 247/306] NFS: Dont gratuitously clear the inode cache when lookup failed gregkh
2021-03-15 13:55 ` [PATCH 5.11 248/306] NFSv4.2: fix return value of _nfs4_get_security_label() gregkh
2021-03-15 13:55 ` [PATCH 5.11 249/306] block: rsxx: fix error return code of rsxx_pci_probe() gregkh
2021-03-15 13:55 ` [PATCH 5.11 250/306] drm/ttm: Fix TTM page pool accounting gregkh
2021-03-15 13:55 ` [PATCH 5.11 251/306] nvme-fc: fix racing controller reset and create association gregkh
2021-03-15 13:55 ` [PATCH 5.11 252/306] configfs: fix a use-after-free in __configfs_open_file gregkh
2021-03-15 13:55 ` [PATCH 5.11 253/306] arm64: mm: use a 48-bit ID map when possible on 52-bit VA builds gregkh
2021-03-15 13:55 ` [PATCH 5.11 254/306] io_uring: perform IOPOLL reaping if canceler is thread itself gregkh
2021-03-15 13:55 ` [PATCH 5.11 255/306] drm/nouveau: fix dma syncing for loops (v2) gregkh
2021-03-15 13:55 ` [PATCH 5.11 256/306] perf/arm_dmc620_pmu: Fix error return code in dmc620_pmu_device_probe() gregkh
2021-03-15 13:55 ` [PATCH 5.11 257/306] net: expand textsearch ts_state to fit skb_seq_state gregkh
2021-03-15 13:55 ` [PATCH 5.11 258/306] mptcp: put subflow sock on connect error gregkh
2021-03-15 13:55 ` [PATCH 5.11 259/306] mptcp: fix memory accounting on allocation error gregkh
2021-03-15 13:55 ` [PATCH 5.11 260/306] perf/core: Flush PMU internal buffers for per-CPU events gregkh
2021-03-15 13:55 ` [PATCH 5.11 261/306] perf/x86/intel: Set PERF_ATTACH_SCHED_CB for large PEBS and LBR gregkh
2021-03-15 13:55 ` [PATCH 5.11 262/306] hrtimer: Update softirq_expires_next correctly after __hrtimer_get_next_event() gregkh
2021-03-15 13:55 ` [PATCH 5.11 263/306] powerpc/64s/exception: Clean up a missed SRR specifier gregkh
2021-03-15 13:55 ` [PATCH 5.11 264/306] seqlock,lockdep: Fix seqcount_latch_init() gregkh
2021-03-15 13:55 ` [PATCH 5.11 265/306] memblock: fix section mismatch warning gregkh
2021-03-15 13:55 ` [PATCH 5.11 266/306] stop_machine: mark helpers __always_inline gregkh
2021-03-15 13:55 ` [PATCH 5.11 267/306] include/linux/sched/mm.h: use rcu_dereference in in_vfork() gregkh
2021-03-15 13:55 ` [PATCH 5.11 268/306] prctl: fix PR_SET_MM_AUXV kernel stack leak gregkh
2021-03-15 13:55 ` [PATCH 5.11 269/306] zram: fix return value on writeback_store gregkh
2021-03-15 13:55 ` [PATCH 5.11 270/306] zram: fix broken page writeback gregkh
2021-03-15 13:55 ` [PATCH 5.11 271/306] linux/compiler-clang.h: define HAVE_BUILTIN_BSWAP* gregkh
2021-03-15 13:55 ` [PATCH 5.11 272/306] sched: Fix migration_cpu_stop() requeueing gregkh
2021-03-15 13:55 ` [PATCH 5.11 273/306] sched/membarrier: fix missing local execution of ipi_sync_rq_state() gregkh
2021-03-15 13:55 ` [PATCH 5.11 274/306] sched: Collate affine_move_task() stoppers gregkh
2021-03-15 13:55 ` [PATCH 5.11 275/306] sched: Simplify migration_cpu_stop() gregkh
2021-03-15 13:55 ` [PATCH 5.11 276/306] sched: Optimize migration_cpu_stop() gregkh
2021-03-15 13:55 ` [PATCH 5.11 277/306] sched: Fix affine_move_task() self-concurrency gregkh
2021-03-15 13:55 ` [PATCH 5.11 278/306] sched: Simplify set_affinity_pending refcounts gregkh
2021-03-15 13:55 ` gregkh [this message]
2021-03-15 13:55 ` [PATCH 5.11 280/306] powerpc/64s: Fix instruction encoding for lis in ppc_function_entry() gregkh
2021-03-15 13:55 ` [PATCH 5.11 281/306] powerpc: Fix inverted SET_FULL_REGS bitop gregkh
2021-03-15 13:55 ` [PATCH 5.11 282/306] powerpc: Fix missing declaration of [en/dis]able_kernel_vsx() gregkh
2021-03-15 13:55 ` [PATCH 5.11 283/306] binfmt_misc: fix possible deadlock in bm_register_write gregkh
2021-03-15 13:55 ` [PATCH 5.11 284/306] kasan, mm: fix crash with HW_TAGS and DEBUG_PAGEALLOC gregkh
2021-03-15 13:55 ` [PATCH 5.11 285/306] kasan: fix KASAN_STACK dependency for HW_TAGS gregkh
2021-03-15 13:55 ` [PATCH 5.11 286/306] x86/unwind/orc: Disable KASAN checking in the ORC unwinder, part 2 gregkh
2021-03-15 13:55 ` [PATCH 5.11 287/306] x86/sev-es: Introduce ip_within_syscall_gap() helper gregkh
2021-03-15 13:55 ` [PATCH 5.11 288/306] x86/sev-es: Check regs->sp is trusted before adjusting #VC IST stack gregkh
2021-03-15 13:55 ` [PATCH 5.11 289/306] x86/sev-es: Correctly track IRQ states in runtime #VC handler gregkh
2021-03-15 13:55 ` [PATCH 5.11 290/306] x86/sev-es: Use __copy_from_user_inatomic() gregkh
2021-03-15 13:55 ` [PATCH 5.11 291/306] x86/entry: Fix entry/exit mismatch on failed fast 32-bit syscalls gregkh
2021-03-15 13:55 ` [PATCH 5.11 292/306] KVM: x86: Ensure deadline timer has truly expired before posting its IRQ gregkh
2021-03-15 14:24   ` gregkh
2021-03-15 14:24   ` [PATCH 5.11 293/306] KVM: kvmclock: Fix vCPUs > 64 cant be online/hotpluged gregkh
2021-03-15 14:24   ` [PATCH 5.11 294/306] KVM: arm64: Ensure I-cache isolation between vcpus of a same VM gregkh
2021-03-15 14:24   ` [PATCH 5.11 295/306] KVM: arm64: Fix range alignment when walking page tables gregkh
2021-03-15 14:24   ` [PATCH 5.11 296/306] KVM: arm64: Avoid corrupting vCPU context register in guest exit gregkh
2021-03-15 14:24   ` [PATCH 5.11 297/306] KVM: arm64: nvhe: Save the SPE context early gregkh
2021-03-15 14:24   ` [PATCH 5.11 298/306] KVM: arm64: Reject VM creation when the default IPA size is unsupported gregkh
2021-03-15 14:24   ` [PATCH 5.11 299/306] KVM: arm64: Fix exclusive limit for IPA size gregkh
2021-03-15 14:24   ` [PATCH 5.11 300/306] mm/highmem.c: fix zero_user_segments() with start > end gregkh
2021-03-15 14:24   ` [PATCH 5.11 301/306] mm/userfaultfd: fix memory corruption due to writeprotect gregkh
2021-03-15 14:24   ` [PATCH 5.11 302/306] mm/madvise: replace ptrace attach requirement for process_madvise gregkh
2021-03-15 14:24   ` [PATCH 5.11 303/306] mm/memcg: set memcg when splitting page gregkh
2021-03-15 14:24   ` [PATCH 5.11 304/306] mm/memcg: rename mem_cgroup_split_huge_fixup to split_page_memcg and add nr_pages argument gregkh
2021-03-15 14:24   ` [PATCH 5.11 305/306] mm/page_alloc.c: refactor initialization of struct page for holes in memory layout gregkh
2021-03-15 14:24   ` [PATCH 5.11 306/306] KVM: arm64: Fix nVHE hyp panic host context restore gregkh
2021-03-15 22:57 ` [PATCH 5.11 000/306] 5.11.7-rc1 review Jason Self
2021-03-16  5:15 ` Naresh Kamboju
2021-03-19  9:50   ` Greg Kroah-Hartman
2021-03-16 21:14 ` Guenter Roeck
2021-03-19  9:42   ` Greg KH
2021-03-17  3:03 ` Ross Schmidt

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=20210315135517.098808085@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=ardb@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=shawn.guo@linaro.org \
    --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;
as well as URLs for NNTP newsgroup(s).