linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Robin Murphy <robin.murphy@arm.com>,
	Christoph Hellwig <hch@lst.de>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	"Artem S . Tashkinov" <aros@gmx.com>
Subject: [PATCH 5.5 133/151] driver code: clarify and fix platform device DMA mask allocation
Date: Tue, 17 Mar 2020 11:55:43 +0100	[thread overview]
Message-ID: <20200317103335.885563252@linuxfoundation.org> (raw)
In-Reply-To: <20200317103326.593639086@linuxfoundation.org>

From: Christoph Hellwig <hch@lst.de>

commit e3a36eb6dfaeea8175c05d5915dcf0b939be6dab upstream.

This does three inter-related things to clarify the usage of the
platform device dma_mask field. In the process, fix the bug introduced
by cdfee5623290 ("driver core: initialize a default DMA mask for
platform device") that caused Artem Tashkinov's laptop to not boot with
newer Fedora kernels.

This does:

 - First off, rename the field to "platform_dma_mask" to make it
   greppable.

   We have way too many different random fields called "dma_mask" in
   various data structures, where some of them are actual masks, and
   some of them are just pointers to the mask. And the structures all
   have pointers to each other, or embed each other inside themselves,
   and "pdev" sometimes means "platform device" and sometimes it means
   "PCI device".

   So to make it clear in the code when you actually use this new field,
   give it a unique name (it really should be something even more unique
   like "platform_device_dma_mask", since it's per platform device, not
   per platform, but that gets old really fast, and this is unique
   enough in context).

   To further clarify when the field gets used, initialize it when we
   actually start using it with the default value.

 - Then, use this field instead of the random one-off allocation in
   platform_device_register_full() that is now unnecessary since we now
   already have a perfectly fine allocation for it in the platform
   device structure.

 - The above then allows us to fix the actual bug, where the error path
   of platform_device_register_full() would unconditionally free the
   platform device DMA allocation with 'kfree()'.

   That kfree() was dont regardless of whether the allocation had been
   done earlier with the (now removed) kmalloc, or whether
   setup_pdev_dma_masks() had already been used and the dma_mask pointer
   pointed to the mask that was part of the platform device.

It seems most people never triggered the error path, or only triggered
it from a call chain that set an explicit pdevinfo->dma_mask value (and
thus caused the unnecessary allocation that was "cleaned up" in the
error path) before calling platform_device_register_full().

Robin Murphy points out that in Artem's case the wdat_wdt driver failed
in platform_device_add(), and that was the one that had called
platform_device_register_full() with pdevinfo.dma_mask = 0, and would
have caused that kfree() of pdev.dma_mask corrupting the heap.

A later unrelated kmalloc() then oopsed due to the heap corruption.

Fixes: cdfee5623290 ("driver core: initialize a default DMA mask for platform device")
Reported-bisected-and-tested-by:  Artem S. Tashkinov <aros@gmx.com>
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/base/platform.c         |   25 ++++++-------------------
 include/linux/platform_device.h |    2 +-
 2 files changed, 7 insertions(+), 20 deletions(-)

--- a/drivers/base/platform.c
+++ b/drivers/base/platform.c
@@ -363,10 +363,10 @@ static void setup_pdev_dma_masks(struct
 {
 	if (!pdev->dev.coherent_dma_mask)
 		pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
-	if (!pdev->dma_mask)
-		pdev->dma_mask = DMA_BIT_MASK(32);
-	if (!pdev->dev.dma_mask)
-		pdev->dev.dma_mask = &pdev->dma_mask;
+	if (!pdev->dev.dma_mask) {
+		pdev->platform_dma_mask = DMA_BIT_MASK(32);
+		pdev->dev.dma_mask = &pdev->platform_dma_mask;
+	}
 };
 
 /**
@@ -662,20 +662,8 @@ struct platform_device *platform_device_
 	pdev->dev.of_node_reused = pdevinfo->of_node_reused;
 
 	if (pdevinfo->dma_mask) {
-		/*
-		 * This memory isn't freed when the device is put,
-		 * I don't have a nice idea for that though.  Conceptually
-		 * dma_mask in struct device should not be a pointer.
-		 * See http://thread.gmane.org/gmane.linux.kernel.pci/9081
-		 */
-		pdev->dev.dma_mask =
-			kmalloc(sizeof(*pdev->dev.dma_mask), GFP_KERNEL);
-		if (!pdev->dev.dma_mask)
-			goto err;
-
-		kmemleak_ignore(pdev->dev.dma_mask);
-
-		*pdev->dev.dma_mask = pdevinfo->dma_mask;
+		pdev->platform_dma_mask = pdevinfo->dma_mask;
+		pdev->dev.dma_mask = &pdev->platform_dma_mask;
 		pdev->dev.coherent_dma_mask = pdevinfo->dma_mask;
 	}
 
@@ -700,7 +688,6 @@ struct platform_device *platform_device_
 	if (ret) {
 err:
 		ACPI_COMPANION_SET(&pdev->dev, NULL);
-		kfree(pdev->dev.dma_mask);
 		platform_device_put(pdev);
 		return ERR_PTR(ret);
 	}
--- a/include/linux/platform_device.h
+++ b/include/linux/platform_device.h
@@ -24,7 +24,7 @@ struct platform_device {
 	int		id;
 	bool		id_auto;
 	struct device	dev;
-	u64		dma_mask;
+	u64		platform_dma_mask;
 	u32		num_resources;
 	struct resource	*resource;
 



  parent reply	other threads:[~2020-03-17 11:14 UTC|newest]

Thread overview: 158+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-17 10:53 [PATCH 5.5 000/151] 5.5.10-rc1 review Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 001/151] virtio_balloon: Adjust label in virtballoon_probe Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 002/151] ALSA: hda/realtek - More constifications Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 003/151] ALSA: hda/realtek - Add Headset Mic supported for HP cPC Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 004/151] ALSA: hda/realtek - Fixed one of HP ALC671 platform Headset Mic supported Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 005/151] cgroup, netclassid: periodically release file_lock on classid updating Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 006/151] cxgb4: fix checks for max queues to allocate Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 007/151] gre: fix uninit-value in __iptunnel_pull_header Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 008/151] inet_diag: return classid for all socket types Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 009/151] ipv6/addrconf: call ipv6_mc_up() for non-Ethernet interface Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 010/151] ipvlan: add cond_resched_rcu() while processing muticast backlog Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 011/151] ipvlan: do not add hardware address of master to its unicast filter list Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 012/151] ipvlan: do not use cond_resched_rcu() in ipvlan_process_multicast() Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 013/151] ipvlan: dont deref eth hdr before checking its set Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 014/151] macvlan: add cond_resched() during multicast processing Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 015/151] net: dsa: fix phylink_start()/phylink_stop() calls Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 016/151] net: dsa: mv88e6xxx: fix lockup on warm boot Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 017/151] net: fec: validate the new settings in fec_enet_set_coalesce() Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 018/151] net: hns3: fix a not link up issue when fibre port supports autoneg Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 019/151] net/ipv6: use configured metric when add peer route Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 020/151] netlink: Use netlink header as base to calculate bad attribute offset Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 021/151] net: macsec: update SCI upon MAC address change Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 022/151] net: mscc: ocelot: properly account for VLAN header length when setting MRU Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 023/151] net: nfc: fix bounds checking bugs on "pipe" Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 024/151] net/packet: tpacket_rcv: do not increment ring index on drop Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 025/151] net: phy: bcm63xx: fix OOPS due to missing driver name Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 026/151] net/smc: cancel event worker during device removal Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 027/151] net: stmmac: dwmac1000: Disable ACS if enhanced descs are not used Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 028/151] net: systemport: fix index check to avoid an array out of bounds access Greg Kroah-Hartman
2020-03-17 10:53 ` [PATCH 5.5 029/151] r8152: check disconnect status after long sleep Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 030/151] sfc: detach from cb_page in efx_copy_channel() Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 031/151] slip: make slhc_compress() more robust against malicious packets Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 032/151] taprio: Fix sending packets without dequeueing them Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 033/151] bonding/alb: make sure arp header is pulled before accessing it Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 034/151] bnxt_en: reinitialize IRQs when MTU is modified Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 035/151] bnxt_en: fix error handling when flashing from file Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 036/151] cgroup: memcg: net: do not associate sock with unrelated cgroup Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 037/151] net: memcg: late association of sock to memcg Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 038/151] net: memcg: fix lockdep splat in inet_csk_accept() Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 039/151] dt-bindings: net: FMan erratum A050385 Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 040/151] arm64: dts: ls1043a: " Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 041/151] fsl/fman: detect " Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 042/151] dpaa_eth: FMan erratum A050385 workaround Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 043/151] net: hns3: fix "tc qdisc del" failed issue Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 044/151] net: hns3: fix RMW issue for VLAN filter switch Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 045/151] net: hns3: clear port base VLAN when unload PF Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 046/151] devlink: validate length of param values Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 047/151] devlink: validate length of region addr/len Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 048/151] fib: add missing attribute validation for tun_id Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 049/151] nl802154: add missing attribute validation Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 050/151] nl802154: add missing attribute validation for dev_type Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 051/151] can: add missing attribute validation for termination Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 052/151] macsec: add missing attribute validation for port Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 053/151] openvswitch: add missing attribute validation for hash Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 054/151] net: fq: add missing attribute validation for orphan mask Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 055/151] net: taprio: add missing attribute validation for txtime delay Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 056/151] team: add missing attribute validation for port ifindex Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 057/151] team: add missing attribute validation for array index Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 058/151] tipc: add missing attribute validation for MTU property Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 059/151] nfc: add missing attribute validation for SE API Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 060/151] nfc: add missing attribute validation for deactivate target Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 061/151] nfc: add missing attribute validation for vendor subcommand Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 062/151] net: phy: avoid clearing PHY interrupts twice in irq handler Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 063/151] net: phy: fix MDIO bus PM PHY resuming Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 064/151] net/ipv6: need update peer route when modify metric Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 065/151] net/ipv6: remove the old peer route if change it to a new one Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 066/151] selftests/net/fib_tests: update addr_metric_test for peer route testing Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 067/151] s390/qeth: dont reset default_out_queue Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 068/151] s390/qeth: handle error when backing RX buffer Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 069/151] net: dsa: Dont instantiate phylink for CPU/DSA ports unless needed Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 070/151] net: dsa: mv88e6xxx: Add missing mask of ATU occupancy register Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 071/151] net: phy: Avoid multiple suspends Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 072/151] cgroup: fix psi_show() crash on 32bit ino archs Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 073/151] cgroup: cgroup_procs_next should increase position index Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 074/151] cgroup: Iterate tasks that did not finish do_exit() Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 075/151] netfilter: nf_tables: fix infinite loop when expr is not available Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 076/151] iwlwifi: mvm: Do not require PHY_SKU NVM section for 3168 devices Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 077/151] virtio-blk: fix hw_queue stopped on arbitrary error Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 078/151] iommu/vt-d: quirk_ioat_snb_local_iommu: replace WARN_TAINT with pr_warn + add_taint Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 079/151] netfilter: nf_conntrack: ct_cpu_seq_next should increase position index Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 080/151] netfilter: synproxy: synproxy_cpu_seq_next " Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 081/151] netfilter: xt_recent: recent_seq_next " Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 082/151] netfilter: x_tables: xt_mttg_seq_next " Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 083/151] workqueue: dont use wq_select_unbound_cpu() for bound works Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 084/151] drm/amd/display: remove duplicated assignment to grph_obj_type Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 085/151] drm/i915: Actually emit the await_start Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 086/151] drm/i915: Return early for await_start on same timeline Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 087/151] drm/i915: be more solid in checking the alignment Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 088/151] drm/i915: Defer semaphore priority bumping to a workqueue Greg Kroah-Hartman
2020-03-17 10:54 ` [PATCH 5.5 089/151] drm/i915/gt: Close race between cacheline_retire and free Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 090/151] drm/i915/execlists: Enable timeslice on partial virtual engine dequeue Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 091/151] mmc: sdhci-pci-gli: Enable MSI interrupt for GL975x Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 092/151] pinctrl: falcon: fix syntax error Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 093/151] pinctrl: qcom: Assign irq_eoi conditionally Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 094/151] ktest: Add timeout for ssh sync testing Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 095/151] block: Fix partition support for host aware zoned block devices Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 096/151] cifs_atomic_open(): fix double-put on late allocation failure Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 097/151] gfs2_atomic_open(): fix O_EXCL|O_CREAT handling on cold dcache Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 098/151] KVM: x86: clear stale x86_emulate_ctxt->intercept value Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 099/151] KVM: nVMX: avoid NULL pointer dereference with incorrect EVMCS GPAs Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 100/151] ARC: define __ALIGN_STR and __ALIGN symbols for ARC Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 101/151] fuse: fix stack use after return Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 102/151] MIPS: DTS: CI20: fix PMU definitions for ACT8600 Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 103/151] MIPS: DTS: CI20: fix interrupt for pcf8563 RTC Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 104/151] MIPS: Fix CONFIG_MIPS_CMDLINE_DTB_EXTEND handling Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 105/151] s390/dasd: fix data corruption for thin provisioned devices Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 106/151] ipmi_si: Avoid spurious errors for optional IRQs Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 107/151] ftrace: Return the first found result in lookup_rec() Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 108/151] blk-iocost: fix incorrect vtime comparison in iocg_is_idle() Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 109/151] fscrypt: dont evict dirty inodes after removing key Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 110/151] pid: Fix error return value in some cases Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 111/151] macintosh: windfarm: fix MODINFO regression Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 112/151] x86/ioremap: Map EFI runtime services data as encrypted for SEV Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 113/151] efi: Fix a race and a buffer overflow while reading efivars via sysfs Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 114/151] efi: Add a sanity check to efivar_store_raw() Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 115/151] i2c: designware-pci: Fix BUG_ON during device removal Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 116/151] mt76: fix array overflow on receiving too many fragments for a packet Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 117/151] perf/amd/uncore: Replace manual sampling check with CAP_NO_INTERRUPT flag Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 118/151] x86/mce: Fix logic and comments around MSR_PPIN_CTL Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 119/151] iommu/dma: Fix MSI reservation allocation Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 120/151] iommu/vt-d: dmar: replace WARN_TAINT with pr_warn + add_taint Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 121/151] iommu/vt-d: dmar_parse_one_rmrr: " Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 122/151] iommu/vt-d: Fix RCU list debugging warnings Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 123/151] iommu/vt-d: Fix a bug in intel_iommu_iova_to_phys() for huge page Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 124/151] batman-adv: Dont schedule OGM for disabled interface Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 125/151] clk: imx8mn: Fix incorrect clock defines Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 126/151] pinctrl: meson-gxl: fix GPIOX sdio pins Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 127/151] pinctrl: imx: scu: Align imx sc msg structs to 4 Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 128/151] virtio_ring: Fix mem leak with vring_new_virtqueue() Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 129/151] x86/mce/therm_throt: Undo thermal polling properly on CPU offline Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 130/151] drm/i915/gvt: Fix dma-buf display blur issue on CFL Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 131/151] pinctrl: core: Remove extra kref_get which blocks hogs being freed Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 132/151] drm/i915/gvt: Fix unnecessary schedule timer when no vGPU exits Greg Kroah-Hartman
2020-03-17 10:55 ` Greg Kroah-Hartman [this message]
2020-03-17 10:55 ` [PATCH 5.5 134/151] iommu/vt-d: Fix RCU-list bugs in intel_iommu_init() Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 135/151] i2c: gpio: suppress error on probe defer Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 136/151] nl80211: add missing attribute validation for critical protocol indication Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 137/151] nl80211: add missing attribute validation for beacon report scanning Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 138/151] nl80211: add missing attribute validation for channel switch Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 139/151] perf bench futex-wake: Restore thread count default to online CPU count Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 140/151] netfilter: nf_tables: free flowtable hooks on hook register error Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 141/151] netfilter: cthelper: add missing attribute validation for cthelper Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 142/151] netfilter: nft_payload: add missing attribute validation for payload csum flags Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 143/151] netfilter: nft_tunnel: add missing attribute validation for tunnels Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 144/151] netfilter: nf_tables: dump NFTA_CHAIN_FLAGS attribute Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 145/151] netfilter: nft_chain_nat: inet family is missing module ownership Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 146/151] iommu/vt-d: Fix the wrong printing in RHSA parsing Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 147/151] iommu/vt-d: Ignore devices with out-of-spec domain number Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 148/151] i2c: acpi: put device when verifying client fails Greg Kroah-Hartman
2020-03-17 10:55 ` [PATCH 5.5 149/151] iommu/amd: Fix IOMMU AVIC not properly update the is_run bit in IRTE Greg Kroah-Hartman
2020-03-17 10:56 ` [PATCH 5.5 150/151] ipv6: restrict IPV6_ADDRFORM operation Greg Kroah-Hartman
2020-03-17 10:56 ` [PATCH 5.5 151/151] net/smc: check for valid ib_client_data Greg Kroah-Hartman
2020-03-17 19:48 ` [PATCH 5.5 000/151] 5.5.10-rc1 review Guenter Roeck
2020-03-18  9:59   ` Greg Kroah-Hartman
2020-03-17 20:21 ` Naresh Kamboju
2020-03-18 10:00   ` Greg Kroah-Hartman
2020-03-18  0:01 ` shuah
2020-03-18  9:58   ` Greg Kroah-Hartman

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=20200317103335.885563252@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=aros@gmx.com \
    --cc=hch@lst.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robin.murphy@arm.com \
    --cc=stable@vger.kernel.org \
    --cc=torvalds@linux-foundation.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).