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, Geert Uytterhoeven <geert@linux-m68k.org>,
	kernel test robot <lkp@intel.com>,
	Christophe Leroy <christophe.leroy@csgroup.eu>,
	Michael Ellerman <mpe@ellerman.id.au>
Subject: [PATCH 5.10 267/290] powerpc: Fix missing declaration of [en/dis]able_kernel_vsx()
Date: Mon, 15 Mar 2021 14:56:00 +0100	[thread overview]
Message-ID: <20210315135551.044220754@linuxfoundation.org> (raw)
In-Reply-To: <20210315135541.921894249@linuxfoundation.org>

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

From: Christophe Leroy <christophe.leroy@csgroup.eu>

commit bd73758803c2eedc037c2268b65a19542a832594 upstream.

Add stub instances of enable_kernel_vsx() and disable_kernel_vsx()
when CONFIG_VSX is not set, to avoid following build failure.

  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calcs.o
  In file included from ./drivers/gpu/drm/amd/amdgpu/../display/dc/dm_services_types.h:29,
                   from ./drivers/gpu/drm/amd/amdgpu/../display/dc/dm_services.h:37,
                   from drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calcs.c:27:
  drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calcs.c: In function 'dcn_bw_apply_registry_override':
  ./drivers/gpu/drm/amd/amdgpu/../display/dc/os_types.h:64:3: error: implicit declaration of function 'enable_kernel_vsx'; did you mean 'enable_kernel_fp'? [-Werror=implicit-function-declaration]
     64 |   enable_kernel_vsx(); \
        |   ^~~~~~~~~~~~~~~~~
  drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calcs.c:640:2: note: in expansion of macro 'DC_FP_START'
    640 |  DC_FP_START();
        |  ^~~~~~~~~~~
  ./drivers/gpu/drm/amd/amdgpu/../display/dc/os_types.h:75:3: error: implicit declaration of function 'disable_kernel_vsx'; did you mean 'disable_kernel_fp'? [-Werror=implicit-function-declaration]
     75 |   disable_kernel_vsx(); \
        |   ^~~~~~~~~~~~~~~~~~
  drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calcs.c:676:2: note: in expansion of macro 'DC_FP_END'
    676 |  DC_FP_END();
        |  ^~~~~~~~~
  cc1: some warnings being treated as errors
  make[5]: *** [drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calcs.o] Error 1

This works because the caller is checking if VSX is available using
cpu_has_feature():

  #define DC_FP_START() { \
  	if (cpu_has_feature(CPU_FTR_VSX_COMP)) { \
  		preempt_disable(); \
  		enable_kernel_vsx(); \
  	} else if (cpu_has_feature(CPU_FTR_ALTIVEC_COMP)) { \
  		preempt_disable(); \
  		enable_kernel_altivec(); \
  	} else if (!cpu_has_feature(CPU_FTR_FPU_UNAVAILABLE)) { \
  		preempt_disable(); \
  		enable_kernel_fp(); \
  	} \

When CONFIG_VSX is not selected, cpu_has_feature(CPU_FTR_VSX_COMP)
constant folds to 'false' so the call to enable_kernel_vsx() is
discarded and the build succeeds.

Fixes: 16a9dea110a6 ("amdgpu: Enable initial DCN support on POWER")
Cc: stable@vger.kernel.org # v5.6+
Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
[mpe: Incorporate some discussion comments into the change log]
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/8d7d285a027e9d21f5ff7f850fa71a2655b0c4af.1615279170.git.christophe.leroy@csgroup.eu
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 arch/powerpc/include/asm/switch_to.h |   10 ++++++++++
 1 file changed, 10 insertions(+)

--- a/arch/powerpc/include/asm/switch_to.h
+++ b/arch/powerpc/include/asm/switch_to.h
@@ -71,6 +71,16 @@ static inline void disable_kernel_vsx(vo
 {
 	msr_check_and_clear(MSR_FP|MSR_VEC|MSR_VSX);
 }
+#else
+static inline void enable_kernel_vsx(void)
+{
+	BUILD_BUG();
+}
+
+static inline void disable_kernel_vsx(void)
+{
+	BUILD_BUG();
+}
 #endif
 
 #ifdef CONFIG_SPE



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

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

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=20210315135551.044220754@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=christophe.leroy@csgroup.eu \
    --cc=geert@linux-m68k.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkp@intel.com \
    --cc=mpe@ellerman.id.au \
    --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).