All of lore.kernel.org
 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, Tao Zhou <ouwen210@hotmail.com>,
	"Peter Zijlstra (Intel)" <peterz@infradead.org>,
	Vincent Guittot <vincent.guittot@linaro.org>,
	Mel Gorman <mgorman@suse.de>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.5 053/257] sched/fair: Fix condition of avg_load calculation
Date: Thu, 16 Apr 2020 15:21:44 +0200	[thread overview]
Message-ID: <20200416131332.577020698@linuxfoundation.org> (raw)
In-Reply-To: <20200416131325.891903893@linuxfoundation.org>

From: Tao Zhou <ouwen210@hotmail.com>

[ Upstream commit 6c8116c914b65be5e4d6f66d69c8142eb0648c22 ]

In update_sg_wakeup_stats(), the comment says:

Computing avg_load makes sense only when group is fully
busy or overloaded.

But, the code below this comment does not check like this.

>From reading the code about avg_load in other functions, I
confirm that avg_load should be calculated in fully busy or
overloaded case. The comment is correct and the checking
condition is wrong. So, change that condition.

Fixes: 57abff067a08 ("sched/fair: Rework find_idlest_group()")
Signed-off-by: Tao Zhou <ouwen210@hotmail.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Vincent Guittot <vincent.guittot@linaro.org>
Acked-by: Mel Gorman <mgorman@suse.de>
Link: https://lkml.kernel.org/r/Message-ID:
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 kernel/sched/fair.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 0ff2f43ac9cd7..1f5ea23c752be 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -8323,7 +8323,8 @@ static inline void update_sg_wakeup_stats(struct sched_domain *sd,
 	 * Computing avg_load makes sense only when group is fully busy or
 	 * overloaded
 	 */
-	if (sgs->group_type < group_fully_busy)
+	if (sgs->group_type == group_fully_busy ||
+		sgs->group_type == group_overloaded)
 		sgs->avg_load = (sgs->group_load * SCHED_CAPACITY_SCALE) /
 				sgs->group_capacity;
 }
-- 
2.20.1




  parent reply	other threads:[~2020-04-16 13:43 UTC|newest]

Thread overview: 263+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-16 13:20 [PATCH 5.5 000/257] 5.5.18-rc1 review Greg Kroah-Hartman
2020-04-16 13:20 ` [PATCH 5.5 001/257] ARM: dts: sun8i-a83t-tbs-a711: HM5065 doesnt like such a high voltage Greg Kroah-Hartman
2020-04-16 13:20 ` [PATCH 5.5 002/257] bus: sunxi-rsb: Return correct data when mixing 16-bit and 8-bit reads Greg Kroah-Hartman
2020-04-16 13:20 ` [PATCH 5.5 003/257] ARM: dts: Fix dm814x Ethernet by changing to use rgmii-id mode Greg Kroah-Hartman
2020-04-16 13:20 ` [PATCH 5.5 004/257] bpf: Fix deadlock with rq_lock in bpf_send_signal() Greg Kroah-Hartman
2020-04-16 13:20 ` [PATCH 5.5 005/257] iwlwifi: mvm: take the required lock when clearing time event data Greg Kroah-Hartman
2020-04-16 13:20 ` [PATCH 5.5 006/257] iwlwifi: mvm: Fix rate scale NSS configuration Greg Kroah-Hartman
2020-04-16 13:20 ` [PATCH 5.5 007/257] Input: tm2-touchkey - add support for Coreriver TC360 variant Greg Kroah-Hartman
2020-04-16 13:20 ` [PATCH 5.5 008/257] soc: fsl: dpio: register dpio irq handlers after dpio create Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 009/257] rxrpc: Abstract out the calculation of whether theres Tx space Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 010/257] rxrpc: Fix call interruptibility handling Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 011/257] net: stmmac: platform: Fix misleading interrupt error msg Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 012/257] net: vxge: fix wrong __VA_ARGS__ usage Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 013/257] ARM: dts: omap4-droid4: Fix lost touchscreen interrupts Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 014/257] riscv: uaccess should be used in nommu mode Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 015/257] hinic: fix a bug of waitting for IO stopped Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 016/257] hinic: fix the bug of clearing event queue Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 017/257] hinic: fix out-of-order excution in arm cpu Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 018/257] hinic: fix wrong para of wait_for_completion_timeout Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 019/257] hinic: fix wrong value of MIN_SKB_LEN Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 020/257] selftests/net: add definition for SOL_DCCP to fix compilation errors for old libc Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 021/257] cxgb4/ptp: pass the sign of offset delta in FW CMD Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 022/257] drm/scheduler: fix rare NULL ptr race Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 023/257] cfg80211: Do not warn on same channel at the end of CSA Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 024/257] qlcnic: Fix bad kzalloc null test Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 025/257] i2c: st: fix missing struct parameter description Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 026/257] i2c: pca-platform: Use platform_irq_get_optional Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 027/257] media: rc: add keymap for Videostrong KII Pro Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 028/257] cpufreq: imx6q: Fixes unwanted cpu overclocking on i.MX6ULL Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 029/257] EDAC/mc: Report "unknown memory" on too many DIMM labels found Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 030/257] usb: ucsi: ccg: disable runtime pm during fw flashing Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 031/257] staging: wilc1000: avoid double unlocking of wilc->hif_cs mutex Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 032/257] media: vimc: streamer: fix memory leak in vimc subdevs if kthread_run fails Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 033/257] media: venus: hfi_parser: Ignore HEVC encoding for V1 Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 034/257] firmware: arm_sdei: fix double-lock on hibernate with shared events Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 035/257] sched/vtime: Prevent unstable evaluation of WARN(vtime->state) Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 036/257] null_blk: Fix the null_add_dev() error path Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 037/257] blk-mq: Fix a recently introduced regression in blk_mq_realloc_hw_ctxs() Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 038/257] null_blk: Handle null_add_dev() failures properly Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 039/257] null_blk: fix spurious IO errors after failed past-wp access Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 040/257] media: imx: imx7_mipi_csis: Power off the source when stopping streaming Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 041/257] media: imx: imx7-media-csi: Fix video field handling Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 042/257] xhci: bail out early if driver cant accress host in resume Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 043/257] ACPI: EC: Do not clear boot_ec_is_ecdt in acpi_ec_add() Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 044/257] x86: Dont let pgprot_modify() change the page encryption bit Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 045/257] dma-mapping: Fix dma_pgprot() for unencrypted coherent pages Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 046/257] block: keep bdi->io_pages in sync with max_sectors_kb for stacked devices Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 047/257] debugfs: Check module state before warning in {full/open}_proxy_open() Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 048/257] spi: spi-fsl-dspi: Avoid NULL pointer in dspi_slave_abort for non-DMA mode Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 049/257] irqchip/versatile-fpga: Handle chained IRQs properly Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 050/257] time/sched_clock: Expire timer in hardirq context Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 051/257] media: allegro: fix type of gop_length in channel_create message Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 052/257] sched: Avoid scale real weight down to zero Greg Kroah-Hartman
2020-04-16 13:21 ` Greg Kroah-Hartman [this message]
2020-04-16 13:21 ` [PATCH 5.5 054/257] selftests/x86/ptrace_syscall_32: Fix no-vDSO segfault Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 055/257] PCI/switchtec: Fix init_completion race condition with poll_wait() Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 056/257] block, bfq: move forward the getting of an extra ref in bfq_bfqq_move Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 057/257] media: i2c: video-i2c: fix build errors due to imply hwmon Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 058/257] libata: Remove extra scsi_host_put() in ata_scsi_add_hosts() Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 059/257] pstore/platform: fix potential mem leak if pstore_init_fs failed Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 060/257] gfs2: Do log_flush in gfs2_ail_empty_gl even if ail list is empty Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 061/257] gfs2: Dont demote a glock until its revokes are written Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 062/257] cpufreq: imx6q: fix error handling Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 063/257] x86/boot: Use unsigned comparison for addresses Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 064/257] efi/x86: Ignore the memory attributes table on i386 Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 065/257] genirq/irqdomain: Check pointer in irq_domain_alloc_irqs_hierarchy() Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 066/257] block: Fix use-after-free issue accessing struct io_cq Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 067/257] block, zoned: fix integer overflow with BLKRESETZONE et al Greg Kroah-Hartman
2020-04-16 13:21 ` [PATCH 5.5 068/257] media: mtk-vpu: avoid unaligned access to DTCM buffer Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 069/257] media: i2c: ov5695: Fix power on and off sequences Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 070/257] usb: dwc3: core: add support for disabling SS instances in park mode Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 071/257] irqchip/gic-v4: Provide irq_retrigger to avoid circular locking dependency Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 072/257] md: check arrays is suspended in mddev_detach before call quiesce operations Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 073/257] firmware: fix a double abort case with fw_load_sysfs_fallback Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 074/257] spi: spi-fsl-dspi: Replace interruptible wait queue with a simple completion Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 075/257] locking/lockdep: Avoid recursion in lockdep_count_{for,back}ward_deps() Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 076/257] block, bfq: fix use-after-free in bfq_idle_slice_timer_body Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 077/257] btrfs: qgroup: ensure qgroup_rescan_running is only set when the worker is at least queued Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 078/257] btrfs: remove a BUG_ON() from merge_reloc_roots() Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 079/257] btrfs: restart relocate_tree_blocks properly Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 080/257] btrfs: track reloc roots based on their commit root bytenr Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 081/257] ASoC: fix regwmask Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 082/257] ASoC: dapm: connect virtual mux with default value Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 083/257] ASoC: dpcm: allow start or stop during pause for backend Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 084/257] ASoC: topology: use name_prefix for new kcontrol Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 085/257] usb: gadget: f_fs: Fix use after free issue as part of queue failure Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 086/257] usb: gadget: composite: Inform controller driver of self-powered Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 087/257] ALSA: usb-audio: Add mixer workaround for TRX40 and co Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 088/257] ALSA: hda: Add driver blacklist Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 089/257] ALSA: hda: Fix potential access overflow in beep helper Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 090/257] ALSA: ice1724: Fix invalid access for enumerated ctl items Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 091/257] ALSA: pcm: oss: Fix regression by buffer overflow fix Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 092/257] ALSA: hda/realtek: Enable mute LED on an HP system Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 093/257] ALSA: hda/realtek - a fake key event is triggered by running shutup Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 094/257] ALSA: doc: Document PC Beep Hidden Register on Realtek ALC256 Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 095/257] ALSA: hda/realtek - Set principled PC Beep configuration for ALC256 Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 096/257] ALSA: hda/realtek - Remove now-unnecessary XPS 13 headphone noise fixups Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 097/257] ALSA: hda/realtek - Add quirk for Lenovo Carbon X1 8th gen Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 098/257] ALSA: hda/realtek - Add quirk for MSI GL63 Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 099/257] media: venus: cache vb payload to be used by clock scaling Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 100/257] media: venus: firmware: Ignore secure call error on first resume Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 101/257] media: hantro: Read be32 words starting at every fourth byte Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 102/257] media: ti-vpe: cal: fix disable_irqs to only the intended target Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 103/257] media: ti-vpe: cal: fix a kernel oops when unloading module Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 104/257] seccomp: Add missing compat_ioctl for notify Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 105/257] ACPI: EC: Avoid printing confusing messages in acpi_ec_setup() Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 106/257] acpi/x86: ignore unspecified bit positions in the ACPI global lock field Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 107/257] ACPICA: Allow acpi_any_gpe_status_set() to skip one GPE Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 108/257] ACPI: PM: s2idle: Refine active GPEs check Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 109/257] thermal: devfreq_cooling: inline all stubs for CONFIG_DEVFREQ_THERMAL=n Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 110/257] nvmet-tcp: fix maxh2cdata icresp parameter Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 111/257] nvme-fc: Revert "add module to ops template to allow module references" Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 112/257] efi/x86: Add TPM related EFI tables to unencrypted mapping checks Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 113/257] PCI: pciehp: Fix indefinite wait on sysfs requests Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 114/257] PCI/ASPM: Clear the correct bits when enabling L1 substates Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 115/257] PCI: Add boot interrupt quirk mechanism for Xeon chipsets Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 116/257] PCI: qcom: Fix the fixup of PCI_VENDOR_ID_QCOM Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 117/257] PCI: endpoint: Fix for concurrent memory allocation in OB address region Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 118/257] erofs: correct the remaining shrink objects Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 119/257] sched/fair: Fix enqueue_task_fair warning Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 120/257] tpm: Dont make log failures fatal Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 121/257] tpm: tpm1_bios_measurements_next should increase position index Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 122/257] tpm: tpm2_bios_measurements_next " Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 123/257] KEYS: reaching the keys quotas correctly Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 124/257] mmc: mmci_sdmmc: Fix clear busyd0end irq flag Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 125/257] rcu: Make rcu_barrier() account for offline no-CBs CPUs Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 126/257] cpu/hotplug: Ignore pm_wakeup_pending() for disable_nonboot_cpus() Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 127/257] genirq/debugfs: Add missing sanity checks to interrupt injection Greg Kroah-Hartman
2020-04-16 13:22 ` [PATCH 5.5 128/257] irqchip/versatile-fpga: Apply clear-mask earlier Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 129/257] io_uring: remove bogus RLIMIT_NOFILE check in file registration Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 130/257] pstore: pstore_ftrace_seq_next should increase position index Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 131/257] MIPS/tlbex: Fix LDDIR usage in setup_pw() for Loongson-3 Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 132/257] MIPS: OCTEON: irq: Fix potential NULL pointer dereference Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 133/257] PM / Domains: Allow no domain-idle-states DT property in genpd when parsing Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 134/257] PM: sleep: wakeup: Skip wakeup_source_sysfs_remove() if device is not there Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 135/257] ath9k: Handle txpower changes even when TPC is disabled Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 136/257] signal: Extend exec_id to 64bits Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 137/257] x86/tsc_msr: Use named struct initializers Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 138/257] x86/tsc_msr: Fix MSR_FSB_FREQ mask for Cherry Trail devices Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 139/257] x86/tsc_msr: Make MSR derived TSC frequency more accurate Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 140/257] x86/entry/32: Add missing ASM_CLAC to general_protection entry Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 141/257] platform/x86: asus-wmi: Support laptops where the first battery is named BATT Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 142/257] KVM: PPC: Book3S HV: Skip kvmppc_uvmem_free if Ultravisor is not supported Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 143/257] KVM: nVMX: Properly handle userspace interrupt window request Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 144/257] KVM: s390: vsie: Fix region 1 ASCE sanity shadow address checks Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 145/257] KVM: s390: vsie: Fix delivery of addressing exceptions Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 146/257] KVM: x86: Allocate new rmap and large page tracking when moving memslot Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 147/257] KVM: VMX: Always VMCLEAR in-use VMCSes during crash with kexec support Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 148/257] KVM: x86: Gracefully handle __vmalloc() failure during VM allocation Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 149/257] KVM: VMX: Add a trampoline to fix VMREAD error handling Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 150/257] KVM: VMX: fix crash cleanup when KVM wasnt used Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 151/257] smb3: fix performance regression with setting mtime Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 152/257] CIFS: Fix bug which the return value by asynchronous read is error Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 153/257] mtd: spinand: Stop using spinand->oobbuf for buffering bad block markers Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 154/257] mtd: spinand: Do not erase the block before writing a bad block marker Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 155/257] mtd: rawnand: cadence: fix the calculation of the avaialble OOB size Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 156/257] mtd: rawnand: cadence: change bad block marker size Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 157/257] mtd: rawnand: cadence: reinit completion before executing a new command Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 158/257] btrfs: Dont submit any btree write bio if the fs has errors Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 159/257] Btrfs: fix crash during unmount due to race with delayed inode workers Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 160/257] btrfs: reloc: clean dirty subvols if we fail to start a transaction Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 161/257] btrfs: set update the uuid generation as soon as possible Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 162/257] btrfs: drop block from cache on error in relocation Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 163/257] btrfs: fix missing file extent item for hole after ranged fsync Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 164/257] btrfs: unset reloc control if we fail to recover Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 165/257] btrfs: fix missing semaphore unlock in btrfs_sync_file Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 166/257] btrfs: use nofs allocations for running delayed items Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 167/257] remoteproc: qcom_q6v5_mss: Dont reassign mpss region on shutdown Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 168/257] remoteproc: qcom_q6v5_mss: Reload the mba region on coredump Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 169/257] remoteproc: Fix NULL pointer dereference in rproc_virtio_notify Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 170/257] crypto: rng - Fix a refcounting bug in crypto_rng_reset() Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 171/257] crypto: mxs-dcp - fix scatterlist linearization for hash Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 172/257] io_uring: honor original task RLIMIT_FSIZE Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 173/257] mmc: sdhci-of-esdhc: fix esdhc_reset() for different controller versions Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 174/257] tools: gpio: Fix out-of-tree build regression Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 175/257] net: qualcomm: rmnet: Allow configuration updates to existing devices Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 176/257] arm64: dts: allwinner: h6: Fix PMU compatible Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 177/257] sched/core: Remove duplicate assignment in sched_tick_remote() Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 178/257] arm64: dts: allwinner: h5: Fix PMU compatible Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 179/257] mm, memcg: do not high throttle allocators based on wraparound Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 180/257] dm writecache: add cond_resched to avoid CPU hangs Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 181/257] dm integrity: fix a crash with unusually large tag size Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 182/257] dm verity fec: fix memory leak in verity_fec_dtr Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 183/257] dm zoned: remove duplicate nr_rnd_zones increase in dmz_init_zone() Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 184/257] dm clone: Fix handling of partial region discards Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 185/257] dm clone: Add overflow check for number of regions Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 186/257] dm clone: Add missing casts to prevent overflows and data corruption Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 187/257] dm clone metadata: Fix return type of dm_clone_nr_of_hydrated_regions() Greg Kroah-Hartman
2020-04-16 13:23 ` [PATCH 5.5 188/257] XArray: Fix xas_pause for large multi-index entries Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 189/257] xarray: Fix early termination of xas_for_each_marked Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 190/257] crypto: caam/qi2 - fix chacha20 data size error Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 191/257] crypto: caam - update xts sector size for large input length Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 192/257] crypto: ccree - protect against empty or NULL scatterlists Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 193/257] crypto: ccree - only try to map auth tag if needed Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 194/257] crypto: ccree - dec auth tag size from cryptlen map Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 195/257] scsi: zfcp: fix missing erp_lock in port recovery trigger for point-to-point Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 196/257] scsi: ufs: fix Auto-Hibern8 error detection Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 197/257] scsi: lpfc: Fix lpfc_io_buf resource leak in lpfc_get_scsi_buf_s4 error path Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 198/257] scsi: lpfc: Fix broken Credit Recovery after driver load Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 199/257] ARM: dts: exynos: Fix polarity of the LCD SPI bus on UniversalC210 board Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 200/257] arm64: dts: ti: k3-am65: Add clocks to dwc3 nodes Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 201/257] arm64: armv8_deprecated: Fix undef_hook mask for thumb setend Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 202/257] selftests: vm: drop dependencies on page flags from mlock2 tests Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 203/257] selftests/vm: fix map_hugetlb length used for testing read and write Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 204/257] selftests/powerpc: Add tlbie_test in .gitignore Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 205/257] selftests/powerpc: Fix try-run when source tree is not writable Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 206/257] vfio: platform: Switch to platform_get_irq_optional() Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 207/257] drm/i915/gem: Flush all the reloc_gpu batch Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 208/257] drm/etnaviv: rework perfmon query infrastructure Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 209/257] drm: Remove PageReserved manipulation from drm_pci_alloc Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 210/257] drm/amdgpu/powerplay: using the FCLK DPM table to set the MCLK Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 211/257] drm/amdgpu: unify fw_write_wait for new gfx9 asics Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 212/257] drm/amd/display: Check for null fclk voltage when parsing clock table Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 213/257] drm/prime: fix extracting of the DMA addresses from a scatterlist Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 214/257] powerpc/pseries: Avoid NULL pointer dereference when drmem is unavailable Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 215/257] drm/vboxvideo: Add missing remove_conflicting_pci_framebuffers call, v2 Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 216/257] nfsd: fsnotify on rmdir under nfsd/clients/ Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 217/257] NFS: Fix use-after-free issues in nfs_pageio_add_request() Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 218/257] NFS: Fix a page leak in nfs_destroy_unlinked_subrequests() Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 219/257] ext4: fix a data race at inode->i_blocks Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 220/257] drm/i915/gt: Treat idling as a RPS downclock event Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 221/257] fs/filesystems.c: downgrade user-reachable WARN_ONCE() to pr_warn_once() Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 222/257] ocfs2: no need try to truncate file beyond i_size Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 223/257] perf tools: Support Python 3.8+ in Makefile Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 224/257] s390/diag: fix display of diagnose call statistics Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 225/257] Input: i8042 - add Acer Aspire 5738z to nomux list Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 226/257] ftrace/kprobe: Show the maxactive number on kprobe_events Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 227/257] clk: ingenic/jz4770: Exit with error if CGU init failed Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 228/257] clk: ingenic/TCU: Fix round_rate returning error Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 229/257] kmod: make request_module() return an error when autoloading is disabled Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 230/257] cpufreq: powernv: Fix use-after-free Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 231/257] hfsplus: fix crash and filesystem corruption when deleting files Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 232/257] libata: Return correct status in sata_pmp_eh_recover_pm() when ATA_DFLAG_DETACH is set Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 233/257] ipmi: fix hung processes in __get_guid() Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 234/257] xen/blkfront: fix memory allocation flags in blkfront_setup_indirect() Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 235/257] powerpc: Make setjmp/longjmp signature standard Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 236/257] powerpc/64/tm: Dont let userspace set regs->trap via sigreturn Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 237/257] powerpc/fsl_booke: Avoid creating duplicate tlb1 entry Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 238/257] powerpc/hash64/devmap: Use H_PAGE_THP_HUGE when setting up huge devmap PTE entries Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 239/257] powerpc/xive: Use XIVE_BAD_IRQ instead of zero to catch non configured IPIs Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 240/257] powerpc/64: Setup a paca before parsing device tree etc Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 241/257] powerpc/xive: Fix xmon support on the PowerNV platform Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 242/257] powerpc/kprobes: Ignore traps that happened in real mode Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 243/257] powerpc/64: Prevent stack protection in early boot Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 244/257] scsi: mpt3sas: Fix kernel panic observed on soft HBA unplug Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 245/257] arm64: Always force a branch protection mode when the compiler has one Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 246/257] drm/bridge: analogix-anx78xx: Fix drm_dp_link helper removal Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 247/257] Revert "drm/dp_mst: Remove VCPI while disabling topology mgr" Greg Kroah-Hartman
2020-04-16 13:24 ` [PATCH 5.5 248/257] drm/dp_mst: Fix clearing payload state on topology disable Greg Kroah-Hartman
2020-04-16 13:25 ` [PATCH 5.5 249/257] drm/amdgpu: fix gfx hang during suspend with video playback (v2) Greg Kroah-Hartman
2020-04-16 13:25 ` [PATCH 5.5 250/257] drm/i915/icl+: Dont enable DDI IO power on a TypeC port in TBT mode Greg Kroah-Hartman
2020-04-16 13:25 ` [PATCH 5.5 251/257] NFS: finish_automount() requires us to hold 2 refs to the mount record Greg Kroah-Hartman
2020-04-16 13:25 ` [PATCH 5.5 252/257] perf/core: Unify {pinned,flexible}_sched_in() Greg Kroah-Hartman
2020-04-16 13:25 ` [PATCH 5.5 253/257] perf/core: Fix event cgroup tracking Greg Kroah-Hartman
2020-04-16 13:25 ` [PATCH 5.5 254/257] perf/core: Remove struct sched_in_data Greg Kroah-Hartman
2020-04-16 13:25 ` [PATCH 5.5 255/257] powerpc/kasan: Fix kasan_remap_early_shadow_ro() Greg Kroah-Hartman
2020-04-16 13:25 ` [PATCH 5.5 256/257] mmc: sdhci: Convert sdhci_set_timeout_irq() to non-static Greg Kroah-Hartman
2020-04-16 13:25 ` [PATCH 5.5 257/257] mmc: sdhci: Refactor sdhci_set_timeout() Greg Kroah-Hartman
2020-04-16 19:43 ` [PATCH 5.5 000/257] 5.5.18-rc1 review Naresh Kamboju
2020-04-16 21:16 ` Guenter Roeck
2020-04-16 22:00 ` shuah
2020-04-17  9:45 ` Jon Hunter
2020-04-17  9:45   ` Jon Hunter

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=20200416131332.577020698@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mgorman@suse.de \
    --cc=ouwen210@hotmail.com \
    --cc=peterz@infradead.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=vincent.guittot@linaro.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.