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, Thomas Gleixner <tglx@linutronix.de>,
	Juergen Gross <jgross@suse.com>,
	Boris Ostrovsky <boris.ostrovsky@oracle.com>
Subject: [PATCH 4.9 164/165] xen: Enable interrupts when calling _cond_resched()
Date: Thu, 27 Feb 2020 14:37:18 +0100	[thread overview]
Message-ID: <20200227132254.646847245@linuxfoundation.org> (raw)
In-Reply-To: <20200227132230.840899170@linuxfoundation.org>

From: Thomas Gleixner <tglx@linutronix.de>

commit 8645e56a4ad6dcbf504872db7f14a2f67db88ef2 upstream.

xen_maybe_preempt_hcall() is called from the exception entry point
xen_do_hypervisor_callback with interrupts disabled.

_cond_resched() evades the might_sleep() check in cond_resched() which
would have caught that and schedule_debug() unfortunately lacks a check
for irqs_disabled().

Enable interrupts around the call and use cond_resched() to catch future
issues.

Fixes: fdfd811ddde3 ("x86/xen: allow privcmd hypercalls to be preempted")
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/878skypjrh.fsf@nanos.tec.linutronix.de
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/xen/preempt.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

--- a/drivers/xen/preempt.c
+++ b/drivers/xen/preempt.c
@@ -37,7 +37,9 @@ asmlinkage __visible void xen_maybe_pree
 		 * cpu.
 		 */
 		__this_cpu_write(xen_in_preemptible_hcall, false);
-		_cond_resched();
+		local_irq_enable();
+		cond_resched();
+		local_irq_disable();
 		__this_cpu_write(xen_in_preemptible_hcall, true);
 	}
 }



  parent reply	other threads:[~2020-02-27 13:52 UTC|newest]

Thread overview: 174+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-27 13:34 [PATCH 4.9 000/165] 4.9.215-stable review Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 001/165] x86/vdso: Use RDPID in preference to LSL when available Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 002/165] KVM: x86: emulate RDPID Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 003/165] ALSA: hda: Use scnprintf() for printing texts for sysfs/procfs Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 004/165] ecryptfs: fix a memory leak bug in parse_tag_1_packet() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 005/165] ecryptfs: fix a memory leak bug in ecryptfs_init_messaging() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 006/165] ALSA: usb-audio: Apply sample rate quirk for Audioengine D1 Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 007/165] ext4: dont assume that mmp_nodename/bdevname have NUL Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 008/165] ext4: fix checksum errors with indexed dirs Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 009/165] ext4: improve explanation of a mount failure caused by a misconfigured kernel Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 010/165] Btrfs: fix race between using extent maps and merging them Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 011/165] btrfs: log message when rw remount is attempted with unclean tree-log Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 012/165] perf/x86/amd: Add missing L2 misses event spec to AMD Family 17hs event map Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 013/165] padata: Remove broken queue flushing Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 014/165] s390/time: Fix clk type in get_tod_clock Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 015/165] perf/x86/intel: Fix inaccurate period in context switch for auto-reload Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 016/165] hwmon: (pmbus/ltc2978) Fix PMBus polling of MFR_COMMON definitions Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 017/165] jbd2: move the clearing of b_modified flag to the journal_unmap_buffer() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 018/165] jbd2: do not clear the BH_Mapped flag when forgetting a metadata buffer Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 019/165] btrfs: print message when tree-log replay starts Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 020/165] scsi: qla2xxx: fix a potential NULL pointer dereference Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 021/165] Revert "KVM: VMX: Add non-canonical check on writes to RTIT address MSRs" Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 022/165] drm/gma500: Fixup fbdev stolen size usage evaluation Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 023/165] cpu/hotplug, stop_machine: Fix stop_machine vs hotplug order Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 024/165] brcmfmac: Fix use after free in brcmf_sdio_readframes() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.9 025/165] gianfar: Fix TX timestamping with a stacked DSA driver Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 026/165] pinctrl: sh-pfc: sh7264: Fix CAN function GPIOs Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 027/165] pxa168fb: Fix the function used to release some memory in an error handling path Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 028/165] media: i2c: mt9v032: fix enum mbus codes and frame sizes Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 029/165] powerpc/powernv/iov: Ensure the pdn for VFs always contains a valid PE number Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 030/165] gpio: gpio-grgpio: fix possible sleep-in-atomic-context bugs in grgpio_irq_map/unmap() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 031/165] media: sti: bdisp: fix a possible sleep-in-atomic-context bug in bdisp_device_run() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 032/165] pinctrl: baytrail: Do not clear IRQ flags on direct-irq enabled pins Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 033/165] efi/x86: Map the entire EFI vendor string before copying it Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 034/165] MIPS: Loongson: Fix potential NULL dereference in loongson3_platform_init() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 035/165] sparc: Add .exit.data section Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 036/165] uio: fix a sleep-in-atomic-context bug in uio_dmem_genirq_irqcontrol() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 037/165] usb: gadget: udc: fix possible sleep-in-atomic-context bugs in gr_probe() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 038/165] jbd2: clear JBD2_ABORT flag before journal_reset to update log tail info when load journal Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 039/165] x86/sysfb: Fix check for bad VRAM size Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 040/165] tracing: Fix tracing_stat return values in error handling paths Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 041/165] tracing: Fix very unlikely race of registering two stat tracers Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 042/165] ext4, jbd2: ensure panic when aborting with zero errno Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 043/165] kconfig: fix broken dependency in randconfig-generated .config Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 044/165] clk: qcom: rcg2: Dont crash if our parent cant be found; return an error Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 045/165] drm/amdgpu: remove 4 set but not used variable in amdgpu_atombios_get_connector_info_from_object_table Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 046/165] regulator: rk808: Lower log level on optional GPIOs being not available Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 047/165] net/wan/fsl_ucc_hdlc: reject muram offsets above 64K Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 048/165] PCI/IOV: Fix memory leak in pci_iov_add_virtfn() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 049/165] NFC: port100: Convert cpu_to_le16(le16_to_cpu(E1) + E2) to use le16_add_cpu() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 050/165] media: v4l2-device.h: Explicitly compare grp{id,mask} to zero in v4l2_device macros Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 051/165] reiserfs: Fix spurious unlock in reiserfs_fill_super() error handling Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 052/165] ALSA: usx2y: Adjust indentation in snd_usX2Y_hwdep_dsp_status Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 053/165] b43legacy: Fix -Wcast-function-type Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 054/165] ipw2x00: " Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 055/165] iwlegacy: " Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 056/165] rtlwifi: rtl_pci: " Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 057/165] orinoco: avoid assertion in case of NULL pointer Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 058/165] ACPICA: Disassembler: create buffer fields in ACPI_PARSE_LOAD_PASS1 Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 059/165] scsi: aic7xxx: Adjust indentation in ahc_find_syncrate Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 060/165] drm/mediatek: handle events when enabling/disabling crtc Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 061/165] ARM: dts: r8a7779: Add device node for ARM global timer Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 062/165] x86/vdso: Provide missing include file Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 063/165] PM / devfreq: rk3399_dmc: Add COMPILE_TEST and HAVE_ARM_SMCCC dependency Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 064/165] pinctrl: sh-pfc: sh7269: Fix CAN function GPIOs Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 065/165] RDMA/rxe: Fix error type of mmap_offset Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 066/165] ALSA: sh: Fix compile warning wrt const Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 067/165] tools lib api fs: Fix gcc9 stringop-truncation compilation error Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 068/165] usbip: Fix unsafe unaligned pointer usage Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 069/165] udf: Fix free space reporting for metadata and virtual partitions Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 070/165] soc/tegra: fuse: Correct straps address for older Tegra124 device trees Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 071/165] rcu: Use WRITE_ONCE() for assignments to ->pprev for hlist_nulls Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 072/165] Input: edt-ft5x06 - work around first register access error Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 073/165] wan: ixp4xx_hss: fix compile-testing on 64-bit Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 074/165] ASoC: atmel: fix build error with CONFIG_SND_ATMEL_SOC_DMA=m Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 075/165] tty: synclinkmp: Adjust indentation in several functions Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 076/165] tty: synclink_gt: " Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 077/165] driver core: platform: Prevent resouce overflow from causing infinite loops Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 078/165] driver core: Print device when resources present in really_probe() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 079/165] vme: bridges: reduce stack usage Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 080/165] drm/nouveau/gr/gk20a,gm200-: add terminators to method lists read from fw Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 081/165] drm/nouveau: Fix copy-paste error in nouveau_fence_wait_uevent_handler Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 082/165] drm/vmwgfx: prevent memory leak in vmw_cmdbuf_res_add Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 083/165] usb: musb: omap2430: Get rid of musb .set_vbus for omap2430 glue Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 084/165] iommu/arm-smmu-v3: Use WRITE_ONCE() when changing validity of an STE Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.9 085/165] scsi: iscsi: Dont destroy session if there are outstanding connections Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 086/165] arm64: fix alternatives with LLVMs integrated assembler Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 087/165] pwm: omap-dmtimer: Remove PWM chip in .remove before making it unfunctional Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 088/165] cmd64x: potential buffer overflow in cmd64x_program_timings() Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 089/165] ide: serverworks: potential overflow in svwks_set_pio_mode() Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 090/165] remoteproc: Initialize rproc_class before use Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 091/165] x86/decoder: Add TEST opcode to Group3-2 Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 092/165] s390/ftrace: generate traced function stack frame Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 093/165] driver core: platform: fix u32 greater or equal to zero comparison Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 094/165] ALSA: hda - Add docking station support for Lenovo Thinkpad T420s Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 095/165] powerpc/sriov: Remove VF eeh_dev state when disabling SR-IOV Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 096/165] jbd2: switch to use jbd2_journal_abort() when failed to submit the commit record Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 097/165] ARM: 8951/1: Fix Kexec compilation issue Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 098/165] hostap: Adjust indentation in prism2_hostapd_add_sta Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 099/165] iwlegacy: ensure loop counter addr does not wrap and cause an infinite loop Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 100/165] cifs: fix NULL dereference in match_prepath Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 101/165] irqchip/gic-v3: Only provision redistributors that are enabled in ACPI Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 102/165] drm/nouveau/disp/nv50-: prevent oops when no channel method map provided Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 103/165] ftrace: fpid_next() should increase position index Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 104/165] trigger_next " Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 105/165] radeon: insert 10ms sleep in dce5_crtc_load_lut Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 106/165] ocfs2: fix a NULL pointer dereference when call ocfs2_update_inode_fsync_trans() Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 107/165] lib/scatterlist.c: adjust indentation in __sg_alloc_table Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 108/165] reiserfs: prevent NULL pointer dereference in reiserfs_insert_item() Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 109/165] bcache: explicity type cast in bset_bkey_last() Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 110/165] irqchip/gic-v3-its: Reference to its_invall_cmd descriptor when building INVALL Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 111/165] iwlwifi: mvm: Fix thermal zone registration Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 112/165] microblaze: Prevent the overflow of the start Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 113/165] brd: check and limit max_part par Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 114/165] help_next should increase position index Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 115/165] selinux: ensure we cleanup the internal AVC counters on error in avc_update() Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 116/165] enic: prevent waking up stopped tx queues over watchdog reset Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 117/165] net/sched: matchall: add missing validation of TCA_MATCHALL_FLAGS Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 118/165] net/sched: flower: add missing validation of TCA_FLOWER_FLAGS Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 119/165] floppy: check FDC index for errors before assigning it Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 120/165] vt: selection, handle pending signals in paste_selection Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 121/165] staging: android: ashmem: Disallow ashmem memory from being remapped Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 122/165] staging: vt6656: fix sign of rx_dbm to bb_pre_ed_rssi Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 123/165] xhci: Force Maximum Packet size for Full-speed bulk devices to valid range Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 124/165] usb: uas: fix a plug & unplug racing Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 125/165] USB: Fix novation SourceControl XL after suspend Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 126/165] USB: hub: Dont record a connect-change event during reset-resume Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 127/165] staging: rtl8188eu: Fix potential security hole Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 128/165] staging: rtl8188eu: Fix potential overuse of kernel memory Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 129/165] x86/mce/amd: Publish the bank pointer only after setup has succeeded Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 130/165] x86/mce/amd: Fix kobject lifetime Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 131/165] tty/serial: atmel: manage shutdown in case of RS485 or ISO7816 mode Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 132/165] tty: serial: imx: setup the correct sg entry for tx dma Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 133/165] Revert "ipc,sem: remove uneeded sem_undo_list lock usage in exit_sem()" Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 134/165] xhci: apply XHCI_PME_STUCK_QUIRK to Intel Comet Lake platforms Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 135/165] KVM: x86: dont notify userspace IOAPIC on edge-triggered interrupt EOI Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 136/165] VT_RESIZEX: get rid of field-by-field copyin Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 137/165] vt: vt_ioctl: fix race in VT_RESIZEX Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 138/165] powerpc/tm: P9 disable transactionally suspended sigcontexts Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 139/165] powerpc/tm: Fix endianness flip on trap Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 140/165] powerpc/tm: Fix clearing MSR[TS] in current when reclaiming on signal delivery Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 141/165] lib/stackdepot: Fix outdated comments Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 142/165] lib/stackdepot.c: fix global out-of-bounds in stack_slabs Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 143/165] KVM: nVMX: Dont emulate instructions in guest mode Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 144/165] netfilter: xt_bpf: add overflow checks Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.9 145/165] ext4: fix a data race in EXT4_I(inode)->i_disksize Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 146/165] ext4: add cond_resched() to __ext4_find_entry() Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 147/165] ext4: fix mount failure with quota configured as module Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 148/165] ext4: rename s_journal_flag_rwsem to s_writepages_rwsem Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 149/165] ext4: fix race between writepages and enabling EXT4_EXTENTS_FL Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 150/165] KVM: nVMX: Refactor IO bitmap checks into helper function Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 151/165] KVM: nVMX: Check IO instruction VM-exit conditions Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 152/165] KVM: apic: avoid calculating pending eoi from an uninitialized val Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 153/165] Btrfs: fix btrfs_wait_ordered_range() so that it waits for all ordered extents Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 154/165] scsi: Revert "RDMA/isert: Fix a recently introduced regression related to logout" Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 155/165] scsi: Revert "target: iscsi: Wait for all commands to finish before freeing a session" Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 156/165] usb: gadget: composite: Fix bMaxPower for SuperSpeedPlus Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 157/165] staging: greybus: use after free in gb_audio_manager_remove_all() Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 158/165] ecryptfs: replace BUG_ON with error handling code Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 159/165] ALSA: rawmidi: Avoid bit fields for state flags Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 160/165] ALSA: seq: Avoid concurrent access to queue flags Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 161/165] ALSA: seq: Fix concurrent access to queue current tick/time Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 162/165] netfilter: xt_hashlimit: limit the max size of hashtable Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.9 163/165] ata: ahci: Add shutdown to freeze hardware resources of ahci Greg Kroah-Hartman
2020-02-27 13:37 ` Greg Kroah-Hartman [this message]
2020-02-27 13:37 ` [PATCH 4.9 165/165] s390/mm: Explicitly compare PAGE_DEFAULT_KEY against zero in storage_key_init_range Greg Kroah-Hartman
2020-02-27 18:44 ` [PATCH 4.9 000/165] 4.9.215-stable review Guenter Roeck
2020-02-28 11:53   ` Greg Kroah-Hartman
2020-02-27 18:51 ` Jon Hunter
2020-02-27 19:38 ` Guenter Roeck
2020-02-28  3:09 ` Naresh Kamboju
2020-02-28  3:44 ` shuah
2020-02-28 11:59 ` Greg Kroah-Hartman
2020-02-28 14:31   ` Guenter Roeck

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=20200227132254.646847245@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=boris.ostrovsky@oracle.com \
    --cc=jgross@suse.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tglx@linutronix.de \
    /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).