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, Lu Baolu <baolu.lu@linux.intel.com>,
	Jacob Pan <jacob.jun.pan@linux.intel.com>,
	Raj Ashok <ashok.raj@intel.com>,
	David Woodhouse <dwmw2@infradead.org>,
	Guo Kaijie <Kaijie.Guo@intel.com>, Xin Zeng <xin.zeng@intel.com>,
	Liu Yi L <yi.l.liu@intel.com>, Will Deacon <will@kernel.org>
Subject: [PATCH 5.10 124/145] iommu/vt-d: Move intel_iommu info from struct intel_svm to struct intel_svm_dev
Date: Mon, 11 Jan 2021 14:02:28 +0100	[thread overview]
Message-ID: <20210111130054.465822290@linuxfoundation.org> (raw)
In-Reply-To: <20210111130048.499958175@linuxfoundation.org>

From: Liu Yi L <yi.l.liu@intel.com>

commit 9ad9f45b3b91162b33abfe175ae75ab65718dbf5 upstream.

'struct intel_svm' is shared by all devices bound to a give process,
but records only a single pointer to a 'struct intel_iommu'. Consequently,
cache invalidations may only be applied to a single DMAR unit, and are
erroneously skipped for the other devices.

In preparation for fixing this, rework the structures so that the iommu
pointer resides in 'struct intel_svm_dev', allowing 'struct intel_svm'
to track them in its device list.

Fixes: 1c4f88b7f1f9 ("iommu/vt-d: Shared virtual address in scalable mode")
Cc: Lu Baolu <baolu.lu@linux.intel.com>
Cc: Jacob Pan <jacob.jun.pan@linux.intel.com>
Cc: Raj Ashok <ashok.raj@intel.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Reported-by: Guo Kaijie <Kaijie.Guo@intel.com>
Reported-by: Xin Zeng <xin.zeng@intel.com>
Signed-off-by: Guo Kaijie <Kaijie.Guo@intel.com>
Signed-off-by: Xin Zeng <xin.zeng@intel.com>
Signed-off-by: Liu Yi L <yi.l.liu@intel.com>
Tested-by: Guo Kaijie <Kaijie.Guo@intel.com>
Cc: stable@vger.kernel.org # v5.0+
Acked-by: Lu Baolu <baolu.lu@linux.intel.com>
Link: https://lore.kernel.org/r/1609949037-25291-2-git-send-email-yi.l.liu@intel.com
Signed-off-by: Will Deacon <will@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/iommu/intel/svm.c   |    9 +++++----
 include/linux/intel-iommu.h |    2 +-
 2 files changed, 6 insertions(+), 5 deletions(-)

--- a/drivers/iommu/intel/svm.c
+++ b/drivers/iommu/intel/svm.c
@@ -142,7 +142,7 @@ static void intel_flush_svm_range_dev (s
 	}
 	desc.qw2 = 0;
 	desc.qw3 = 0;
-	qi_submit_sync(svm->iommu, &desc, 1, 0);
+	qi_submit_sync(sdev->iommu, &desc, 1, 0);
 
 	if (sdev->dev_iotlb) {
 		desc.qw0 = QI_DEV_EIOTLB_PASID(svm->pasid) |
@@ -166,7 +166,7 @@ static void intel_flush_svm_range_dev (s
 		}
 		desc.qw2 = 0;
 		desc.qw3 = 0;
-		qi_submit_sync(svm->iommu, &desc, 1, 0);
+		qi_submit_sync(sdev->iommu, &desc, 1, 0);
 	}
 }
 
@@ -211,7 +211,7 @@ static void intel_mm_release(struct mmu_
 	 */
 	rcu_read_lock();
 	list_for_each_entry_rcu(sdev, &svm->devs, list)
-		intel_pasid_tear_down_entry(svm->iommu, sdev->dev,
+		intel_pasid_tear_down_entry(sdev->iommu, sdev->dev,
 					    svm->pasid, true);
 	rcu_read_unlock();
 
@@ -363,6 +363,7 @@ int intel_svm_bind_gpasid(struct iommu_d
 	}
 	sdev->dev = dev;
 	sdev->sid = PCI_DEVID(info->bus, info->devfn);
+	sdev->iommu = iommu;
 
 	/* Only count users if device has aux domains */
 	if (iommu_dev_feature_enabled(dev, IOMMU_DEV_FEAT_AUX))
@@ -546,6 +547,7 @@ intel_svm_bind_mm(struct device *dev, un
 		goto out;
 	}
 	sdev->dev = dev;
+	sdev->iommu = iommu;
 
 	ret = intel_iommu_enable_pasid(iommu, dev);
 	if (ret) {
@@ -575,7 +577,6 @@ intel_svm_bind_mm(struct device *dev, un
 			kfree(sdev);
 			goto out;
 		}
-		svm->iommu = iommu;
 
 		if (pasid_max > intel_pasid_max_id)
 			pasid_max = intel_pasid_max_id;
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -758,6 +758,7 @@ struct intel_svm_dev {
 	struct list_head list;
 	struct rcu_head rcu;
 	struct device *dev;
+	struct intel_iommu *iommu;
 	struct svm_dev_ops *ops;
 	struct iommu_sva sva;
 	u32 pasid;
@@ -771,7 +772,6 @@ struct intel_svm {
 	struct mmu_notifier notifier;
 	struct mm_struct *mm;
 
-	struct intel_iommu *iommu;
 	unsigned int flags;
 	u32 pasid;
 	int gpasid; /* In case that guest PASID is different from host PASID */



  parent reply	other threads:[~2021-01-11 13:19 UTC|newest]

Thread overview: 152+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-11 13:00 [PATCH 5.10 000/145] 5.10.7-rc1 review Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 001/145] i40e: Fix Error I40E_AQ_RC_EINVAL when removing VFs Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 002/145] iavf: fix double-release of rtnl_lock Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 003/145] net/sched: sch_taprio: ensure to reset/destroy all child qdiscs Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 004/145] net: mvpp2: Add TCAM entry to drop flow control pause frames Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 005/145] net: mvpp2: prs: fix PPPoE with ipv6 packet parse Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 006/145] net: systemport: set dev->max_mtu to UMAC_MAX_MTU_SIZE Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 007/145] ethernet: ucc_geth: fix use-after-free in ucc_geth_remove() Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 008/145] ethernet: ucc_geth: set dev->max_mtu to 1518 Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 009/145] ionic: account for vlan tag len in rx buffer len Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 010/145] atm: idt77252: call pci_disable_device() on error path Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 011/145] net: mvpp2: Fix GoP port 3 Networking Complex Control configurations Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 012/145] net: stmmac: dwmac-meson8b: ignore the second clock input Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 013/145] ibmvnic: fix login buffer memory leak Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 014/145] ibmvnic: continue fatal error reset after passive init Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 015/145] net: ethernet: mvneta: Fix error handling in mvneta_probe Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 016/145] qede: fix offload for IPIP tunnel packets Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 017/145] virtio_net: Fix recursive call to cpus_read_lock() Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 018/145] net: dcb: Validate netlink message in DCB handler Greg Kroah-Hartman
2021-01-11 17:36   ` Jakub Kicinski
2021-01-11 19:59     ` Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 019/145] net/ncsi: Use real net-device for response handler Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 020/145] net: ethernet: Fix memleak in ethoc_probe Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 021/145] net-sysfs: take the rtnl lock when storing xps_cpus Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 022/145] net-sysfs: take the rtnl lock when accessing xps_cpus_map and num_tc Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 023/145] net-sysfs: take the rtnl lock when storing xps_rxqs Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 024/145] net-sysfs: take the rtnl lock when accessing xps_rxqs_map and num_tc Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 025/145] net: ethernet: ti: cpts: fix ethtool output when no ptp_clock registered Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 026/145] tun: fix return value when the number of iovs exceeds MAX_SKB_FRAGS Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 027/145] e1000e: Only run S0ix flows if shutdown succeeded Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 028/145] e1000e: bump up timeout to wait when ME un-configures ULP mode Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 029/145] Revert "e1000e: disable s0ix entry and exit flows for ME systems" Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 030/145] e1000e: Export S0ix flags to ethtool Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 031/145] bnxt_en: Check TQM rings for maximum supported value Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 032/145] net: mvpp2: fix pkt coalescing int-threshold configuration Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 033/145] bnxt_en: Fix AER recovery Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 034/145] ipv4: Ignore ECN bits for fib lookups in fib_compute_spec_dst() Greg Kroah-Hartman
2021-01-11 13:00 ` [PATCH 5.10 035/145] net: sched: prevent invalid Scell_log shift count Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 036/145] net: hns: fix return value check in __lb_other_process() Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 037/145] erspan: fix version 1 check in gre_parse_header() Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 038/145] net: hdlc_ppp: Fix issues when mod_timer is called while timer is running Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 039/145] bareudp: set NETIF_F_LLTX flag Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 040/145] bareudp: Fix use of incorrect min_headroom size Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 041/145] vhost_net: fix ubuf refcount incorrectly when sendmsg fails Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 042/145] r8169: work around power-saving bug on some chip versions Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 043/145] net: dsa: lantiq_gswip: Enable GSWIP_MII_CFG_EN also for internal PHYs Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 044/145] net: dsa: lantiq_gswip: Fix GSWIP_MII_CFG(p) register access Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 045/145] CDC-NCM: remove "connected" log message Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 046/145] ibmvnic: fix: NULL pointer dereference Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 047/145] net: usb: qmi_wwan: add Quectel EM160R-GL Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 048/145] selftests: mlxsw: Set headroom size of correct port Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 049/145] stmmac: intel: Add PCI IDs for TGL-H platform Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 050/145] selftests/vm: fix building protection keys test Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 051/145] block: add debugfs stanza for QUEUE_FLAG_NOWAIT Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 052/145] workqueue: Kick a worker based on the actual activation of delayed works Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 053/145] scsi: ufs: Fix wrong print message in dev_err() Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 054/145] scsi: ufs: Clear UAC for RPMB after ufshcd resets Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 055/145] scsi: ufs-pci: Fix restore from S4 for Intel controllers Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 056/145] scsi: ufs-pci: Ensure UFS device is in PowerDown mode for suspend-to-disk ->poweroff() Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 057/145] scsi: ufs-pci: Fix recovery from hibernate exit errors for Intel controllers Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 058/145] scsi: ufs-pci: Enable UFSHCD_CAP_RPM_AUTOSUSPEND " Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 059/145] scsi: block: Introduce BLK_MQ_REQ_PM Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 060/145] scsi: ide: Do not set the RQF_PREEMPT flag for sense requests Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 061/145] scsi: ide: Mark power management requests with RQF_PM instead of RQF_PREEMPT Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 062/145] scsi: scsi_transport_spi: Set RQF_PM for domain validation commands Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 063/145] scsi: core: Only process PM requests if rpm_status != RPM_ACTIVE Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 064/145] local64.h: make <asm/local64.h> mandatory Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 065/145] lib/genalloc: fix the overflow when size is too big Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 066/145] depmod: handle the case of /sbin/depmod without /sbin in PATH Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 067/145] scsi: ufs: Clear UAC for FFU and RPMB LUNs Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 068/145] kbuild: dont hardcode depmod path Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 069/145] Bluetooth: revert: hci_h5: close serdev device and free hu in h5_close Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 070/145] scsi: block: Remove RQF_PREEMPT and BLK_MQ_REQ_PREEMPT Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 071/145] scsi: block: Do not accept any requests while suspended Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 072/145] crypto: ecdh - avoid buffer overflow in ecdh_set_secret() Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 073/145] crypto: asym_tpm: correct zero out potential secrets Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 074/145] powerpc/32s: Fix RTAS machine check with VMAP stack Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 075/145] powerpc: Handle .text.{hot,unlikely}.* in linker script Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 076/145] Staging: comedi: Return -EFAULT if copy_to_user() fails Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 077/145] staging: mt7621-dma: Fix a resource leak in an error handling path Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 078/145] usb: gadget: enable super speed plus Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 079/145] USB: cdc-acm: blacklist another IR Droid device Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 080/145] USB: cdc-wdm: Fix use after free in service_outstanding_interrupt() Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 081/145] usb: typec: intel_pmc_mux: Configure HPD first for HPD+IRQ request Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 082/145] usb: dwc3: meson-g12a: disable clk on error handling path in probe Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 083/145] usb: dwc3: gadget: Restart DWC3 gadget when enabling pullup Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 084/145] usb: dwc3: gadget: Clear wait flag on dequeue Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 085/145] usb: dwc3: ulpi: Use VStsDone to detect PHY regs access completion Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 086/145] usb: dwc3: ulpi: Replace CPU-based busyloop with Protocol-based one Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 087/145] usb: dwc3: ulpi: Fix USB2.0 HS/FS/LS PHY suspend regression Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 088/145] usb: chipidea: ci_hdrc_imx: add missing put_device() call in usbmisc_get_init_data() Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 089/145] USB: xhci: fix U1/U2 handling for hardware with XHCI_INTEL_HOST quirk set Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 090/145] usb: usbip: vhci_hcd: protect shift size Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 091/145] usb: uas: Add PNY USB Portable SSD to unusual_uas Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 092/145] USB: serial: iuu_phoenix: fix DMA from stack Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 093/145] USB: serial: option: add LongSung M5710 module support Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 094/145] USB: serial: option: add Quectel EM160R-GL Greg Kroah-Hartman
2021-01-11 13:01 ` [PATCH 5.10 095/145] USB: yurex: fix control-URB timeout handling Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 096/145] USB: usblp: fix DMA to stack Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 097/145] ALSA: usb-audio: Fix UBSAN warnings for MIDI jacks Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 098/145] usb: gadget: select CONFIG_CRC32 Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 099/145] USB: Gadget: dummy-hcd: Fix shift-out-of-bounds bug Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 100/145] usb: gadget: f_uac2: reset wMaxPacketSize Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 101/145] usb: gadget: function: printer: Fix a memory leak for interface descriptor Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 102/145] usb: gadget: u_ether: Fix MTU size mismatch with RX packet size Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 103/145] USB: gadget: legacy: fix return error code in acm_ms_bind() Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 104/145] usb: gadget: Fix spinlock lockup on usb_function_deactivate Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 105/145] usb: gadget: configfs: Preserve function ordering after bind failure Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 106/145] usb: gadget: configfs: Fix use-after-free issue with udc_name Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 107/145] USB: serial: keyspan_pda: remove unused variable Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 108/145] hwmon: (amd_energy) fix allocation of hwmon_channel_info config Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 109/145] mm: make wait_on_page_writeback() wait for multiple pending writebacks Greg Kroah-Hartman
2021-01-11 17:54   ` Hugh Dickins
2021-01-11 19:03     ` Linus Torvalds
2021-01-11 13:02 ` [PATCH 5.10 110/145] x86/mm: Fix leak of pmd ptlock Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 111/145] KVM: x86/mmu: Use -1 to flag an undefined spte in get_mmio_spte() Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 112/145] KVM: x86/mmu: Get root level from walkers when retrieving MMIO SPTE Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 113/145] kvm: check tlbs_dirty directly Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 114/145] KVM: x86/mmu: Ensure TDP MMU roots are freed after yield Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 115/145] x86/resctrl: Use an IPI instead of task_work_add() to update PQR_ASSOC MSR Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 116/145] x86/resctrl: Dont move a task to the same resource group Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 117/145] blk-iocost: fix NULL iocg deref from racing against initialization Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 118/145] ALSA: hda/via: Fix runtime PM for Clevo W35xSS Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 119/145] ALSA: hda/conexant: add a new hda codec CX11970 Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 120/145] ALSA: hda/realtek - Fix speaker volume control on Lenovo C940 Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 121/145] ALSA: hda/realtek: Add mute LED quirk for more HP laptops Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 122/145] ALSA: hda/realtek: Enable mute and micmute LED on HP EliteBook 850 G7 Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 123/145] ALSA: hda/realtek: Add two "Intel Reference board" SSID in the ALC256 Greg Kroah-Hartman
2021-01-11 13:02 ` Greg Kroah-Hartman [this message]
2021-01-11 13:02 ` [PATCH 5.10 125/145] btrfs: qgroup: dont try to wait flushing if were already holding a transaction Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 126/145] btrfs: send: fix wrong file path when there is an inode with a pending rmdir Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 127/145] Revert "device property: Keep secondary firmware node secondary by type" Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 128/145] dmabuf: fix use-after-free of dmabufs file->f_inode Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 129/145] arm64: link with -z norelro for LLD or aarch64-elf Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 130/145] drm/i915: clear the shadow batch Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 131/145] drm/i915: clear the gpu reloc batch Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 132/145] bcache: fix typo from SUUP to SUPP in features.h Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 133/145] bcache: check unsupported feature sets for bcache register Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 134/145] bcache: introduce BCH_FEATURE_INCOMPAT_LOG_LARGE_BUCKET_SIZE for large bucket Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 135/145] net/mlx5e: Fix SWP offsets when vlan inserted by driver Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 136/145] ARM: dts: OMAP3: disable AES on N950/N9 Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 137/145] netfilter: x_tables: Update remaining dereference to RCU Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 138/145] netfilter: ipset: fix shift-out-of-bounds in htable_bits() Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 139/145] netfilter: xt_RATEEST: reject non-null terminated string from userspace Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 140/145] netfilter: nft_dynset: report EOPNOTSUPP on missing set feature Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 141/145] dmaengine: idxd: off by one in cleanup code Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 142/145] x86/mtrr: Correct the range check before performing MTRR type lookups Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 143/145] KVM: x86: fix shift out of bounds reported by UBSAN Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 144/145] xsk: Fix memory leak for failed bind Greg Kroah-Hartman
2021-01-11 13:02 ` [PATCH 5.10 145/145] rtlwifi: rise completion at the last step of firmware callback Greg Kroah-Hartman
2021-01-11 15:15 ` [PATCH 5.10 000/145] 5.10.7-rc1 review Guenter Roeck
2021-01-11 16:11   ` 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=20210111130054.465822290@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Kaijie.Guo@intel.com \
    --cc=ashok.raj@intel.com \
    --cc=baolu.lu@linux.intel.com \
    --cc=dwmw2@infradead.org \
    --cc=jacob.jun.pan@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=will@kernel.org \
    --cc=xin.zeng@intel.com \
    --cc=yi.l.liu@intel.com \
    /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).