stable.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, Song Liu <songliubraving@fb.com>,
	Alexei Starovoitov <ast@kernel.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Daniel Borkmann <daniel@iogearbox.net>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 156/434] bpf/stackmap: Fix deadlock with rq_lock in bpf_get_stack()
Date: Sun, 29 Dec 2019 18:23:29 +0100	[thread overview]
Message-ID: <20191229172712.125304914@linuxfoundation.org> (raw)
In-Reply-To: <20191229172702.393141737@linuxfoundation.org>

From: Song Liu <songliubraving@fb.com>

[ Upstream commit eac9153f2b584c702cea02c1f1a57d85aa9aea42 ]

bpf stackmap with build-id lookup (BPF_F_STACK_BUILD_ID) can trigger A-A
deadlock on rq_lock():

rcu: INFO: rcu_sched detected stalls on CPUs/tasks:
[...]
Call Trace:
 try_to_wake_up+0x1ad/0x590
 wake_up_q+0x54/0x80
 rwsem_wake+0x8a/0xb0
 bpf_get_stack+0x13c/0x150
 bpf_prog_fbdaf42eded9fe46_on_event+0x5e3/0x1000
 bpf_overflow_handler+0x60/0x100
 __perf_event_overflow+0x4f/0xf0
 perf_swevent_overflow+0x99/0xc0
 ___perf_sw_event+0xe7/0x120
 __schedule+0x47d/0x620
 schedule+0x29/0x90
 futex_wait_queue_me+0xb9/0x110
 futex_wait+0x139/0x230
 do_futex+0x2ac/0xa50
 __x64_sys_futex+0x13c/0x180
 do_syscall_64+0x42/0x100
 entry_SYSCALL_64_after_hwframe+0x44/0xa9

This can be reproduced by:
1. Start a multi-thread program that does parallel mmap() and malloc();
2. taskset the program to 2 CPUs;
3. Attach bpf program to trace_sched_switch and gather stackmap with
   build-id, e.g. with trace.py from bcc tools:
   trace.py -U -p <pid> -s <some-bin,some-lib> t:sched:sched_switch

A sample reproducer is attached at the end.

This could also trigger deadlock with other locks that are nested with
rq_lock.

Fix this by checking whether irqs are disabled. Since rq_lock and all
other nested locks are irq safe, it is safe to do up_read() when irqs are
not disable. If the irqs are disabled, postpone up_read() in irq_work.

Fixes: 615755a77b24 ("bpf: extend stackmap to save binary_build_id+offset instead of address")
Signed-off-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20191014171223.357174-1-songliubraving@fb.com

Reproducer:
============================ 8< ============================

char *filename;

void *worker(void *p)
{
        void *ptr;
        int fd;
        char *pptr;

        fd = open(filename, O_RDONLY);
        if (fd < 0)
                return NULL;
        while (1) {
                struct timespec ts = {0, 1000 + rand() % 2000};

                ptr = mmap(NULL, 4096 * 64, PROT_READ, MAP_PRIVATE, fd, 0);
                usleep(1);
                if (ptr == MAP_FAILED) {
                        printf("failed to mmap\n");
                        break;
                }
                munmap(ptr, 4096 * 64);
                usleep(1);
                pptr = malloc(1);
                usleep(1);
                pptr[0] = 1;
                usleep(1);
                free(pptr);
                usleep(1);
                nanosleep(&ts, NULL);
        }
        close(fd);
        return NULL;
}

int main(int argc, char *argv[])
{
        void *ptr;
        int i;
        pthread_t threads[THREAD_COUNT];

        if (argc < 2)
                return 0;

        filename = argv[1];

        for (i = 0; i < THREAD_COUNT; i++) {
                if (pthread_create(threads + i, NULL, worker, NULL)) {
                        fprintf(stderr, "Error creating thread\n");
                        return 0;
                }
        }

        for (i = 0; i < THREAD_COUNT; i++)
                pthread_join(threads[i], NULL);
        return 0;
}
============================ 8< ============================

Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 kernel/bpf/stackmap.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/kernel/bpf/stackmap.c b/kernel/bpf/stackmap.c
index 052580c33d26..173e983619d7 100644
--- a/kernel/bpf/stackmap.c
+++ b/kernel/bpf/stackmap.c
@@ -287,7 +287,7 @@ static void stack_map_get_build_id_offset(struct bpf_stack_build_id *id_offs,
 	bool irq_work_busy = false;
 	struct stack_map_irq_work *work = NULL;
 
-	if (in_nmi()) {
+	if (irqs_disabled()) {
 		work = this_cpu_ptr(&up_read_work);
 		if (work->irq_work.flags & IRQ_WORK_BUSY)
 			/* cannot queue more up_read, fallback */
@@ -295,8 +295,9 @@ static void stack_map_get_build_id_offset(struct bpf_stack_build_id *id_offs,
 	}
 
 	/*
-	 * We cannot do up_read() in nmi context. To do build_id lookup
-	 * in nmi context, we need to run up_read() in irq_work. We use
+	 * We cannot do up_read() when the irq is disabled, because of
+	 * risk to deadlock with rq_lock. To do build_id lookup when the
+	 * irqs are disabled, we need to run up_read() in irq_work. We use
 	 * a percpu variable to do the irq_work. If the irq_work is
 	 * already used by another lookup, we fall back to report ips.
 	 *
-- 
2.20.1




  parent reply	other threads:[~2019-12-29 18:08 UTC|newest]

Thread overview: 465+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-29 17:20 [PATCH 5.4 000/434] 5.4.7-stable review Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 5.4 001/434] af_packet: set defaule value for tmo Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 5.4 002/434] fjes: fix missed check in fjes_acpi_add Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 5.4 003/434] mod_devicetable: fix PHY module format Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 5.4 004/434] net: dst: Force 4-byte alignment of dst_metrics Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 5.4 005/434] net: gemini: Fix memory leak in gmac_setup_txqs Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 5.4 006/434] net: hisilicon: Fix a BUG trigered by wrong bytes_compl Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 007/434] net: nfc: nci: fix a possible sleep-in-atomic-context bug in nci_uart_tty_receive() Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 008/434] net: phy: ensure that phy IDs are correctly typed Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 009/434] net: qlogic: Fix error paths in ql_alloc_large_buffers() Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 010/434] net-sysfs: Call dev_hold always in rx_queue_add_kobject Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 011/434] net: usb: lan78xx: Fix suspend/resume PHY register access error Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 012/434] nfp: flower: fix stats id allocation Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 013/434] qede: Disable hardware gro when xdp prog is installed Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 014/434] qede: Fix multicast mac configuration Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 015/434] sctp: fix memleak on err handling of stream initialization Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 016/434] sctp: fully initialize v4 addr in some functions Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 017/434] selftests: forwarding: Delete IPv6 address at the end Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 018/434] neighbour: remove neigh_cleanup() method Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 019/434] bonding: fix bond_neigh_init() Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 020/434] net: ena: fix default tx interrupt moderation interval Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 021/434] net: ena: fix issues in setting interrupt moderation params in ethtool Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 022/434] dpaa2-ptp: fix double free of the ptp_qoriq IRQ Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 023/434] mlxsw: spectrum_router: Remove unlikely user-triggerable warning Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 024/434] net: ethernet: ti: davinci_cpdma: fix warning "device driver frees DMA memory with different size" Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 025/434] net: stmmac: platform: Fix MDIO init for platforms without PHY Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 026/434] net: dsa: b53: Fix egress flooding settings Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 027/434] NFC: nxp-nci: Fix probing without ACPI Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 028/434] btrfs: dont double lock the subvol_sem for rename exchange Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 029/434] btrfs: do not call synchronize_srcu() in inode_tree_del Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 030/434] Btrfs: make tree checker detect checksum items with overlapping ranges Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 031/434] btrfs: return error pointer from alloc_test_extent_buffer Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 032/434] Btrfs: fix missing data checksums after replaying a log tree Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 033/434] btrfs: send: remove WARN_ON for readonly mount Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 034/434] btrfs: abort transaction after failed inode updates in create_subvol Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 035/434] btrfs: skip log replay on orphaned roots Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 036/434] btrfs: do not leak reloc root if we fail to read the fs root Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 037/434] btrfs: handle ENOENT in btrfs_uuid_tree_iterate Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 038/434] Btrfs: fix removal logic of the tree mod log that leads to use-after-free issues Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 039/434] ALSA: pcm: Avoid possible info leaks from PCM stream buffers Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 040/434] ALSA: hda/ca0132 - Keep power on during processing DSP response Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 041/434] ALSA: hda/ca0132 - Avoid endless loop Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 042/434] ALSA: hda/ca0132 - Fix work handling in delayed HP detection Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 043/434] drm/vc4/vc4_hdmi: fill in connector info Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 044/434] drm/virtio: switch virtio_gpu_wait_ioctl() to gem helper Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 045/434] drm: mst: Fix query_payload ack reply struct Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 046/434] drm/mipi-dbi: fix a loop in debugfs code Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 047/434] drm/panel: Add missing drm_panel_init() in panel drivers Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 048/434] drm: exynos: exynos_hdmi: use cec_notifier_conn_(un)register Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 049/434] drm: Use EOPNOTSUPP, not ENOTSUPP Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 050/434] drm/amd/display: verify stream link before link test Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 051/434] drm/bridge: analogix-anx78xx: silence -EPROBE_DEFER warnings Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 052/434] drm/amd/display: OTC underflow fix Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 053/434] iio: max31856: add missing of_node and parent references to iio_dev Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 054/434] iio: light: bh1750: Resolve compiler warning and make code more readable Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 055/434] drm/amdgpu/sriov: add ring_stop before ring_create in psp v11 code Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 056/434] drm/amdgpu: grab the id mgr lock while accessing passid_mapping Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 057/434] drm/ttm: return -EBUSY on pipelining with no_gpu_wait (v2) Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 058/434] drm/amd/display: Rebuild mapped resources after pipe split Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 059/434] ath10k: add cleanup in ath10k_sta_state() Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 060/434] drm/amd/display: Handle virtual signal type in disable_link() Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 061/434] ath10k: Check if station exists before forwarding tx airtime report Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 062/434] spi: Add call to spi_slave_abort() function when spidev driver is released Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 063/434] drm/meson: vclk: use the correct G12A frac max value Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 064/434] staging: rtl8192u: fix multiple memory leaks on error path Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 065/434] staging: rtl8188eu: fix possible null dereference Greg Kroah-Hartman
2019-12-29 17:21 ` [PATCH 5.4 066/434] rtlwifi: prevent memory leak in rtl_usb_probe Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 067/434] libertas: fix a potential NULL pointer dereference Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 068/434] Revert "pinctrl: sh-pfc: r8a77990: Fix MOD_SEL1 bit30 when using SSI_SCK2 and SSI_WS2" Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 069/434] Revert "pinctrl: sh-pfc: r8a77990: Fix MOD_SEL1 bit31 when using SIM0_D" Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 070/434] ath10k: fix backtrace on coredump Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 071/434] IB/iser: bound protection_sg size by data_sg size Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 072/434] drm/komeda: Workaround for broken FLIP_COMPLETE timestamps Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 073/434] spi: gpio: prevent memory leak in spi_gpio_probe Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 074/434] media: am437x-vpfe: Setting STD to current value is not an error Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 075/434] media: cedrus: fill in bus_info for media device Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 076/434] media: seco-cec: Add a missing release_region() in an error handling path Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 077/434] media: vim2m: Fix abort issue Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 078/434] media: vim2m: Fix BUG_ON in vim2m_device_release() Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 079/434] media: max2175: Fix build error without CONFIG_REGMAP_I2C Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 080/434] media: ov6650: Fix control handler not freed on init error Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 081/434] media: i2c: ov2659: fix s_stream return value Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 082/434] media: ov6650: Fix crop rectangle alignment not passed back Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 083/434] media: i2c: ov2659: Fix missing 720p register config Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 084/434] media: ov6650: Fix stored frame format not in sync with hardware Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 085/434] media: ov6650: Fix stored crop rectangle " Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 086/434] tools/power/cpupower: Fix initializer override in hsw_ext_cstates Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 087/434] media: venus: core: Fix msm8996 frequency table Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 088/434] ath10k: fix offchannel tx failure when no ath10k_mac_tx_frm_has_freq Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 089/434] media: vimc: Fix gpf in rmmod path when stream is active Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 090/434] drm/amd/display: Set number of pipes to 1 if the second pipe was disabled Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 091/434] pinctrl: devicetree: Avoid taking direct reference to device name string Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 092/434] drm/sun4i: dsi: Fix TCON DRQ set bits Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 093/434] drm/amdkfd: fix a potential NULL pointer dereference (v2) Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 094/434] x86/math-emu: Check __copy_from_user() result Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 095/434] drm/amd/powerplay: A workaround to GPU RESET on APU Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 096/434] selftests/bpf: Correct path to include msg + path Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 097/434] drm/amd/display: set minimum abm backlight level Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 098/434] media: venus: Fix occasionally failures to suspend Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 099/434] rtw88: fix NSS of hw_cap Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 100/434] drm/amd/display: fix struct init in update_bounding_box Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 101/434] usb: renesas_usbhs: add suspend event support in gadget mode Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 102/434] crypto: aegis128-neon - use Clang compatible cflags for ARM Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 103/434] hwrng: omap3-rom - Call clk_disable_unprepare() on exit only if not idled Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 104/434] regulator: max8907: Fix the usage of uninitialized variable in max8907_regulator_probe() Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 105/434] tools/memory-model: Fix data race detection for unordered store and load Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 106/434] media: flexcop-usb: fix NULL-ptr deref in flexcop_usb_transfer_init() Greg Kroah-Hartman
2020-01-03 15:02   ` Johan Hovold
2020-01-03 16:12     ` Sean Young
2020-01-03 16:53       ` Johan Hovold
2019-12-29 17:22 ` [PATCH 5.4 107/434] media: cec-funcs.h: add status_req checks Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 108/434] media: meson/ao-cec: move cec_notifier_cec_adap_register after hw setup Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 109/434] drm/bridge: dw-hdmi: Refuse DDC/CI transfers on the internal I2C controller Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 110/434] samples: pktgen: fix proc_cmd command result check logic Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 111/434] block: Fix writeback throttling W=1 compiler warnings Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 112/434] MIPS: syscall: Emit Loongson3 sync workarounds within asm Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 113/434] drm/amdkfd: Fix MQD size calculation Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 114/434] MIPS: futex: Emit Loongson3 sync workarounds within asm Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 115/434] mwifiex: pcie: Fix memory leak in mwifiex_pcie_init_evt_ring Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 116/434] drm/drm_vblank: Change EINVAL by the correct errno Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 117/434] selftests/bpf: Fix btf_dump padding test case Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 118/434] libbpf: Fix struct end padding in btf_dump Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 119/434] libbpf: Fix passing uninitialized bytes to setsockopt Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 120/434] net/smc: increase device refcount for added link group Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 121/434] team: call RCU read lock when walking the port_list Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 122/434] media: cx88: Fix some error handling path in cx8800_initdev() Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 123/434] crypto: inside-secure - Fix a maybe-uninitialized warning Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 124/434] crypto: aegis128/simd - build 32-bit ARM for v8 architecture explicitly Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 125/434] misc: fastrpc: fix memory leak from miscdev->name Greg Kroah-Hartman
2019-12-29 17:22 ` [PATCH 5.4 126/434] ASoC: SOF: enable sync_write in hdac_bus Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 127/434] media: ti-vpe: vpe: Fix Motion Vector vpdma stride Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 128/434] media: ti-vpe: vpe: fix a v4l2-compliance warning about invalid pixel format Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 129/434] media: ti-vpe: vpe: fix a v4l2-compliance failure about frame sequence number Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 130/434] media: ti-vpe: vpe: Make sure YUYV is set as default format Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 131/434] media: ti-vpe: vpe: fix a v4l2-compliance failure causing a kernel panic Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 132/434] media: ti-vpe: vpe: ensure buffers are cleaned up properly in abort cases Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 133/434] drm/amd/display: Properly round nominal frequency for SPD Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 134/434] drm/amd/display: wait for set pipe mcp command completion Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 135/434] media: ti-vpe: vpe: fix a v4l2-compliance failure about invalid sizeimage Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 136/434] drm/amd/display: add new active dongle to existent w/a Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 137/434] syscalls/x86: Use the correct function type in SYSCALL_DEFINE0 Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 138/434] drm/amd/display: Fix dongle_caps containing stale information Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 139/434] extcon: sm5502: Reset registers during initialization Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 140/434] drm/amd/display: Program DWB watermarks from correct state Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 141/434] x86/mm: Use the correct function type for native_set_fixmap() Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 142/434] ath10k: Correct error handling of dma_map_single() Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 143/434] rtw88: coex: Set 4 slot mode for A2DP Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 144/434] drm/bridge: dw-hdmi: Restore audio when setting a mode Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 145/434] perf test: Report failure for mmap events Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 146/434] perf report: Add warning when libunwind not compiled in Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 147/434] perf test: Avoid infinite loop for task exit case Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 148/434] perf vendor events arm64: Fix Hisi hip08 DDRC PMU eventname Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 149/434] usb: usbfs: Suppress problematic bind and unbind uevents Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 150/434] drm/amd/powerplay: avoid disabling ECC if RAS is enabled for VEGA20 Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 151/434] iio: adc: max1027: Reset the device at probe time Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 152/434] Bluetooth: btusb: avoid unused function warning Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 153/434] Bluetooth: missed cpu_to_le16 conversion in hci_init4_req Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 154/434] Bluetooth: Workaround directed advertising bug in Broadcom controllers Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 155/434] Bluetooth: hci_core: fix init for HCI_USER_CHANNEL Greg Kroah-Hartman
2019-12-29 17:23 ` Greg Kroah-Hartman [this message]
2019-12-29 17:23 ` [PATCH 5.4 157/434] x86/mce: Lower throttling MCE messages priority to warning Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 158/434] drm/amd/display: enable hostvm based on roimmu active for dcn2.1 Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 159/434] drm/amd/display: fix header for RN clk mgr Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 160/434] drm/amdgpu: fix amdgpu trace event print string format error Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 161/434] staging: iio: ad9834: add a check for devm_clk_get Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 162/434] power: supply: cpcap-battery: Check voltage before orderly_poweroff Greg Kroah-Hartman
2019-12-30 10:14   ` Pavel Machek
2019-12-29 17:23 ` [PATCH 5.4 163/434] perf tests: Disable bp_signal testing for arm64 Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 164/434] selftests/bpf: Make a copy of subtest name Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 165/434] net: hns3: log and clear hardware error after reset complete Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 166/434] RDMA/hns: Fix wrong parameters when initial mtt of srq->idx_que Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 167/434] drm/gma500: fix memory disclosures due to uninitialized bytes Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 168/434] ASoC: soc-pcm: fixup dpcm_prune_paths() loop continue Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 169/434] rtl8xxxu: fix RTL8723BU connection failure issue after warm reboot Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 170/434] RDMA/siw: Fix SQ/RQ drain logic Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 171/434] ipmi: Dont allow device module unload when in use Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 172/434] x86/ioapic: Prevent inconsistent state when moving an interrupt Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 173/434] media: cedrus: Fix undefined shift with a SHIFT_AND_MASK_BITS macro Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 174/434] media: aspeed: set hsync and vsync polarities to normal before starting mode detection Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 175/434] drm/nouveau: Dont grab runtime PM refs for HPD IRQs Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 176/434] media: ov6650: Fix stored frame interval not in sync with hardware Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 177/434] media: ad5820: Define entity function Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 178/434] media: ov5640: Make 2592x1944 mode only available at 15 fps Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 179/434] media: st-mipid02: add a check for devm_gpiod_get_optional Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 180/434] media: imx7-mipi-csis: Add a check for devm_regulator_get Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 181/434] media: aspeed: clear garbage interrupts Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 182/434] media: smiapp: Register sensor after enabling runtime PM on the device Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 183/434] md: no longer compare spare disk superblock events in super_load Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 184/434] staging: wilc1000: potential corruption in wilc_parse_join_bss_param() Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 185/434] md/bitmap: avoid race window between md_bitmap_resize and bitmap_file_clear_bit Greg Kroah-Hartman
2019-12-29 17:23 ` [PATCH 5.4 186/434] drm: Dont free jobs in wait_event_interruptible() Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 187/434] EDAC/amd64: Set grain per DIMM Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 188/434] arm64: psci: Reduce the waiting time for cpu_psci_cpu_kill() Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 189/434] drm/amd/display: setting the DIG_MODE to the correct value Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 190/434] i40e: initialize ITRN registers with correct values Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 191/434] drm/amd/display: correctly populate dpp refclk in fpga Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 192/434] i40e: Wrong Advertised FEC modes after set FEC to AUTO Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 193/434] net: phy: dp83867: enable robust auto-mdix Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 194/434] drm/tegra: sor: Use correct SOR index on Tegra210 Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 195/434] regulator: core: Release coupled_rdevs on regulator_init_coupling() error Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 196/434] ubsan, x86: Annotate and allow __ubsan_handle_shift_out_of_bounds() in uaccess regions Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 197/434] spi: sprd: adi: Add missing lock protection when rebooting Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 198/434] ACPI: button: Add DMI quirk for Medion Akoya E2215T Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 199/434] RDMA/qedr: Fix memory leak in user qp and mr Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 200/434] RDMA/hns: Fix memory leak on context on error return path Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 201/434] RDMA/qedr: Fix srqs xarray initialization Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 202/434] RDMA/core: Set DMA parameters correctly Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 203/434] staging: wilc1000: check if device is initialzied before changing vif Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 204/434] gpu: host1x: Allocate gather copy for host1x Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 205/434] net: dsa: LAN9303: select REGMAP when LAN9303 enable Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 206/434] ALSA: hda/hdmi - implement mst_no_extra_pcms flag Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 207/434] phy: renesas: phy-rcar-gen2: Fix the array off by one warning Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 208/434] phy: qcom-usb-hs: Fix extcon double register after power cycle Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 209/434] s390/time: ensure get_clock_monotonic() returns monotonic values Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 210/434] s390: add error handling to perf_callchain_kernel Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 211/434] s390/mm: add mm_pxd_folded() checks to pxd_free() Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 212/434] net: hns3: add struct netdev_queue debug info for TX timeout Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 213/434] libata: Ensure ata_port probe has completed before detach Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 214/434] loop: fix no-unmap write-zeroes request behavior Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 215/434] net/mlx5e: Verify that rule has at least one fwd/drop action Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 216/434] pinctrl: sh-pfc: sh7734: Fix duplicate TCLK1_B Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 217/434] ALSA: bebob: expand sleep just after breaking connections for protocol version 1 Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 218/434] iio: dln2-adc: fix iio_triggered_buffer_postenable() position Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 219/434] libbpf: Fix error handling in bpf_map__reuse_fd() Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 220/434] Bluetooth: Fix advertising duplicated flags Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 221/434] ALSA: pcm: Fix missing check of the new non-cached buffer type Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 222/434] spi: sifive: disable clk when probe fails and remove Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 223/434] ASoC: SOF: imx: fix reverse CONFIG_SND_SOC_SOF_OF dependency Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 224/434] pinctrl: qcom: sc7180: Add missing tile info in SDC_QDSD_PINGROUP/UFS_RESET Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 225/434] pinctrl: amd: fix __iomem annotation in amd_gpio_irq_handler() Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 226/434] ixgbe: protect TX timestamping from API misuse Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 227/434] cpufreq: sun50i: Fix CPU speed bin detection Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 228/434] media: rcar_drif: fix a memory disclosure Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 229/434] media: v4l2-core: fix touch support in v4l_g_fmt Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 230/434] nvme: introduce "Command Aborted By host" status code Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 231/434] media: staging/imx: Use a shorter name for driver Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 232/434] nvmem: imx-ocotp: reset error status on probe Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 233/434] nvmem: core: fix nvmem_cell_write inline function Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 234/434] ASoC: SOF: topology: set trigger order for FE DAI link Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 235/434] media: vivid: media_device_cleanup was called too early Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 236/434] spi: dw: Fix Designware SPI loopback Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 237/434] bnx2x: Fix PF-VF communication over multi-cos queues Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 238/434] spi: img-spfi: fix potential double release Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 239/434] ALSA: timer: Limit max amount of slave instances Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 240/434] RDMA/core: Fix return code when modify_port isnt supported Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 241/434] drm: msm: a6xx: fix debug bus register configuration Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 242/434] rtlwifi: fix memory leak in rtl92c_set_fw_rsvdpagepkt() Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 243/434] perf probe: Fix to find range-only function instance Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 244/434] perf cs-etm: Fix definition of macro TO_CS_QUEUE_NR Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 245/434] perf probe: Fix to list probe event with correct line number Greg Kroah-Hartman
2019-12-29 18:42   ` Thomas Backlund
2019-12-29 23:00     ` Thomas Backlund
2019-12-30  9:14       ` Masami Hiramatsu
2019-12-30 11:35       ` Greg Kroah-Hartman
2019-12-29 17:24 ` [PATCH 5.4 246/434] perf jevents: Fix resource leak in process_mapfile() and main() Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 247/434] perf probe: Walk function lines in lexical blocks Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 248/434] perf probe: Fix to probe an inline function which has no entry pc Greg Kroah-Hartman
2019-12-29 18:32   ` Thomas Backlund
2019-12-29 17:25 ` [PATCH 5.4 249/434] perf probe: Fix to show ranges of variables in functions without entry_pc Greg Kroah-Hartman
2019-12-29 18:34   ` Thomas Backlund
2019-12-29 17:25 ` [PATCH 5.4 250/434] perf probe: Fix to show inlined function callsite " Greg Kroah-Hartman
2019-12-29 18:37   ` Thomas Backlund
2019-12-29 17:25 ` [PATCH 5.4 251/434] libsubcmd: Use -O0 with DEBUG=1 Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 252/434] perf probe: Fix to probe a function which has no entry pc Greg Kroah-Hartman
2019-12-29 18:40   ` Thomas Backlund
2019-12-29 17:25 ` [PATCH 5.4 253/434] perf tools: Fix cross compile for ARM64 Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 254/434] perf tools: Splice events onto evlist even on error Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 255/434] drm/amdgpu: disallow direct upload save restore list from gfx driver Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 256/434] drm/amd/powerplay: fix struct init in renoir_print_clk_levels Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 257/434] drm/amdgpu: fix potential double drop fence reference Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 258/434] ice: Check for null pointer dereference when setting rings Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 259/434] xen/gntdev: Use select for DMA_SHARED_BUFFER Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 260/434] perf parse: If pmu configuration fails free terms Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 261/434] perf probe: Skip overlapped location on searching variables Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 262/434] net: avoid potential false sharing in neighbor related code Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 263/434] perf probe: Return a better scope DIE if there is no best scope Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 264/434] perf probe: Fix to show calling lines of inlined functions Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 265/434] perf probe: Skip end-of-sequence and non statement lines Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 266/434] perf probe: Filter out instances except for inlined subroutine and subprogram Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 267/434] libbpf: Fix negative FD close() in xsk_setup_xdp_prog() Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 268/434] s390/bpf: Use kvcalloc for addrs array Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 269/434] cgroup: freezer: dont change task and cgroups status unnecessarily Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 270/434] selftests: proc: Make va_max 1MB Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 271/434] drm/amdgpu: Avoid accidental thread reactivation Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 272/434] media: exynos4-is: fix wrong mdev and v4l2 dev order in error path Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 273/434] ath10k: fix get invalid tx rate for Mesh metric Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 274/434] fsi: core: Fix small accesses and unaligned offsets via sysfs Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 275/434] selftests: net: Fix printf format warnings on arm Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 276/434] media: pvrusb2: Fix oops on tear-down when radio support is not present Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 277/434] soundwire: intel: fix PDI/stream mapping for Bulk Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 278/434] crypto: atmel - Fix authenc support when it is set to m Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 279/434] ice: delay less Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 280/434] media: si470x-i2c: add missed operations in remove Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 281/434] media: cedrus: Use helpers to access capture queue Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 282/434] media: v4l2-ctrl: Lock main_hdl on operations of requests_queued Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 283/434] iio: cros_ec_baro: set info_mask_shared_by_all_available field Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 284/434] EDAC/ghes: Fix grain calculation Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 285/434] media: vicodec: media_device_cleanup was called too early Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 286/434] media: vim2m: " Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 287/434] spi: pxa2xx: Add missed security checks Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 288/434] ASoC: rt5677: Mark reg RT5677_PWR_ANLG2 as volatile Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 289/434] iio: dac: ad5446: Add support for new AD5600 DAC Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 290/434] bpf, testing: Workaround a verifier failure for test_progs Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 291/434] ASoC: Intel: kbl_rt5663_rt5514_max98927: Add dmic format constraint Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 292/434] net: dsa: sja1105: Disallow management xmit during switch reset Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 293/434] r8169: respect EEE user setting when restarting network Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 294/434] s390/disassembler: dont hide instruction addresses Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 295/434] net: ethernet: ti: Add dependency for TI_DAVINCI_EMAC Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 296/434] nvme: Discard workaround for non-conformant devices Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 297/434] parport: load lowlevel driver if ports not found Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 298/434] bcache: fix static checker warning in bcache_device_free() Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 299/434] cpufreq: Register drivers only after CPU devices have been registered Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 300/434] qtnfmac: fix debugfs support for multiple cards Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 301/434] qtnfmac: fix invalid channel information output Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 302/434] x86/crash: Add a forward declaration of struct kimage Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 303/434] qtnfmac: fix using skb after free Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 304/434] RDMA/efa: Clear the admin command buffer prior to its submission Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 305/434] tracing: use kvcalloc for tgid_map array allocation Greg Kroah-Hartman
2019-12-29 17:25 ` [PATCH 5.4 306/434] MIPS: ralink: enable PCI support only if driver for mt7621 SoC is selected Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 307/434] tracing/kprobe: Check whether the non-suffixed symbol is notrace Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 308/434] bcache: fix deadlock in bcache_allocator Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 309/434] iwlwifi: mvm: fix unaligned read of rx_pkt_status Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 310/434] ASoC: wm8904: fix regcache handling Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 311/434] regulator: core: Let boot-on regulators be powered off Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 312/434] spi: tegra20-slink: add missed clk_unprepare Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 313/434] tun: fix data-race in gro_normal_list() Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 314/434] xhci-pci: Allow host runtime PM as default also for Intel Ice Lake xHCI Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 315/434] crypto: virtio - deal with unsupported input sizes Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 316/434] mmc: tmio: Add MMC_CAP_ERASE to allow erase/discard/trim requests Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 317/434] btrfs: dont prematurely free work in end_workqueue_fn() Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 318/434] btrfs: dont prematurely free work in run_ordered_work() Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 319/434] sched/uclamp: Fix overzealous type replacement Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 320/434] ASoC: wm2200: add missed operations in remove and probe failure Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 321/434] spi: st-ssc4: add missed pm_runtime_disable Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 322/434] ASoC: wm5100: " Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 323/434] perf/core: Fix the mlock accounting, again Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 324/434] selftests, bpf: Fix test_tc_tunnel hanging Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 325/434] selftests, bpf: Workaround an alu32 sub-register spilling issue Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 326/434] bnxt_en: Return proper error code for non-existent NVM variable Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 327/434] net: phy: avoid matching all-ones clause 45 PHY IDs Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 328/434] firmware_loader: Fix labels with comma for builtin firmware Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 329/434] ASoC: Intel: bytcr_rt5640: Update quirk for Acer Switch 10 SW5-012 2-in-1 Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 330/434] x86/insn: Add some Intel instructions to the opcode map Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 331/434] net-af_xdp: Use correct number of channels from ethtool Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 332/434] brcmfmac: remove monitor interface when detaching Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 333/434] perf session: Fix decompression of PERF_RECORD_COMPRESSED records Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 334/434] s390/crypto: Fix unsigned variable compared with zero Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 335/434] s390/kasan: support memcpy_real with TRACE_IRQFLAGS Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 336/434] bnxt_en: Improve RX buffer error handling Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 337/434] iwlwifi: check kasprintf() return value Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 338/434] fbtft: Make sure string is NULL terminated Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 339/434] ASoC: soc-pcm: check symmetry before hw_params Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 340/434] net: ethernet: ti: ale: clean ale tbl on init and intf restart Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 341/434] mt76: fix possible out-of-bound access in mt7615_fill_txs/mt7603_fill_txs Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 342/434] s390/cpumf: Adjust registration of s390 PMU device drivers Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 343/434] crypto: sun4i-ss - Fix 64-bit size_t warnings Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 344/434] crypto: sun4i-ss - Fix 64-bit size_t warnings on sun4i-ss-hash.c Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 345/434] mac80211: consider QoS Null frames for STA_NULLFUNC_ACKED Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 346/434] crypto: vmx - Avoid weird build failures Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 347/434] libtraceevent: Fix memory leakage in copy_filter_type Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 348/434] mips: fix build when "48 bits virtual memory" is enabled Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 349/434] drm/amdgpu: fix bad DMA from INTERRUPT_CNTL2 Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 350/434] ice: Only disable VF state when freeing each VF resources Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 351/434] ice: Fix setting coalesce to handle DCB configuration Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 352/434] net: phy: initialise phydev speed and duplex sanely Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 353/434] tools, bpf: Fix build for make -s tools/bpf O=<dir> Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 354/434] RDMA/bnxt_re: Fix missing le16_to_cpu Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 355/434] RDMA/bnxt_re: Fix stat push into dma buffer on gen p5 devices Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 356/434] bpf: Provide better register bounds after jmp32 instructions Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 357/434] RDMA/bnxt_re: Fix chip number validation Broadcoms Gen P5 series Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 358/434] ibmvnic: Fix completion structure initialization Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 359/434] net: wireless: intel: iwlwifi: fix GRO_NORMAL packet stalling Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 360/434] MIPS: futex: Restore \n after sync instructions Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 361/434] btrfs: dont prematurely free work in reada_start_machine_worker() Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 362/434] btrfs: dont prematurely free work in scrub_missing_raid56_worker() Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 363/434] Revert "mmc: sdhci: Fix incorrect switch to HS mode" Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 364/434] mmc: mediatek: fix CMD_TA to 2 for MT8173 HS200/HS400 mode Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 365/434] tpm_tis: reserve chip for duration of tpm_tis_core_init Greg Kroah-Hartman
2019-12-29 17:26 ` [PATCH 5.4 366/434] tpm: fix invalid locking in NONBLOCKING mode Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 367/434] iommu: fix KASAN use-after-free in iommu_insert_resv_region Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 368/434] iommu: set group default domain before creating direct mappings Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 369/434] iommu/vt-d: Fix dmar pte read access not set error Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 370/434] iommu/vt-d: Set ISA bridge reserved region as relaxable Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 371/434] iommu/vt-d: Allocate reserved region for ISA with correct permission Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 372/434] can: xilinx_can: Fix missing Rx can packets on CANFD2.0 Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 373/434] can: m_can: tcan4x5x: add required delay after reset Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 374/434] can: j1939: j1939_sk_bind(): take priv after lock is held Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 375/434] can: flexcan: fix possible deadlock and out-of-order reception after wakeup Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 376/434] can: flexcan: poll MCR_LPM_ACK instead of GPR ACK for stop mode acknowledgment Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 377/434] can: kvaser_usb: kvaser_usb_leaf: Fix some info-leaks to USB devices Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 378/434] selftests: net: tls: remove recv_rcvbuf test Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 379/434] spi: dw: Correct handling of native chipselect Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 380/434] spi: cadence: " Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 381/434] usb: xhci: Fix build warning seen with CONFIG_PM=n Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 382/434] drm/amdgpu: fix uninitialized variable pasid_mapping_needed Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 383/434] ath10k: Revert "ath10k: add cleanup in ath10k_sta_state()" Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 384/434] RDMA/siw: Fix post_recv QP state locking Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 385/434] md: avoid invalid memory access for array sb->dev_roles Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 386/434] s390/ftrace: fix endless recursion in function_graph tracer Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 387/434] ARM: dts: Fix vcsi regulator to be always-on for droid4 to prevent hangs Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 388/434] can: flexcan: add low power enter/exit acknowledgment helper Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 389/434] usbip: Fix receive error in vhci-hcd when using scatter-gather Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 390/434] usbip: Fix error path of vhci_recv_ret_submit() Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 391/434] spi: fsl: dont map irq during probe Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 392/434] spi: fsl: use platform_get_irq() instead of of_irq_to_resource() Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 393/434] efi/memreserve: Register reservations as reserved in /proc/iomem Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 394/434] cpufreq: Avoid leaving stale IRQ work items during CPU offline Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 395/434] KEYS: asymmetric: return ENOMEM if akcipher_request_alloc() fails Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 396/434] mm: vmscan: protect shrinker idr replace with CONFIG_MEMCG Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 397/434] USB: EHCI: Do not return -EPIPE when hub is disconnected Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 398/434] intel_th: pci: Add Comet Lake PCH-V support Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 399/434] intel_th: pci: Add Elkhart Lake SOC support Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 400/434] intel_th: Fix freeing IRQs Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 401/434] intel_th: msu: Fix window switching without windows Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 402/434] platform/x86: hp-wmi: Make buffer for HPWMI_FEATURE2_QUERY 128 bytes Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 403/434] staging: comedi: gsc_hpdi: check dma_alloc_coherent() return value Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 404/434] tty/serial: atmel: fix out of range clock divider handling Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 405/434] serial: sprd: Add clearing break interrupt operation Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 406/434] pinctrl: baytrail: Really serialize all register accesses Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 407/434] clk: imx: clk-imx7ulp: Add missing sentinel of ulp_div_table Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 408/434] clk: imx: clk-composite-8m: add lock to gate/mux Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 409/434] clk: imx: pll14xx: fix clk_pll14xx_wait_lock Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 410/434] ext4: fix ext4_empty_dir() for directories with holes Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 411/434] ext4: check for directory entries too close to block end Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 412/434] ext4: unlock on error in ext4_expand_extra_isize() Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 413/434] ext4: validate the debug_want_extra_isize mount option at parse time Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 414/434] iocost: over-budget forced IOs should schedule async delay Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 415/434] KVM: PPC: Book3S HV: Fix regression on big endian hosts Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 416/434] kvm: x86: Host feature SSBD doesnt imply guest feature SPEC_CTRL_SSBD Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 417/434] kvm: x86: Host feature SSBD doesnt imply guest feature AMD_SSBD Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 418/434] KVM: arm/arm64: Properly handle faulting of device mappings Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 419/434] KVM: arm64: Ensure params is initialised when looking up sys register Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 420/434] x86/intel: Disable HPET on Intel Coffee Lake H platforms Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 421/434] x86/MCE/AMD: Do not use rdmsr_safe_on_cpu() in smca_configure() Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 422/434] x86/MCE/AMD: Allow Reserved types to be overwritten in smca_banks[] Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 423/434] x86/mce: Fix possibly incorrect severity calculation on AMD Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 424/434] powerpc/vcpu: Assume dedicated processors as non-preempt Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 425/434] powerpc/irq: fix stack overflow verification Greg Kroah-Hartman
2019-12-29 17:27 ` [PATCH 5.4 426/434] ocxl: Fix concurrent AFU open and device removal Greg Kroah-Hartman
2019-12-29 17:28 ` [PATCH 5.4 427/434] mmc: sdhci-msm: Correct the offset and value for DDR_CONFIG register Greg Kroah-Hartman
2019-12-29 17:28 ` [PATCH 5.4 428/434] mmc: sdhci-of-esdhc: Revert "mmc: sdhci-of-esdhc: add erratum A-009204 support" Greg Kroah-Hartman
2019-12-29 17:28 ` [PATCH 5.4 429/434] mmc: sdhci: Update the tuning failed messages to pr_debug level Greg Kroah-Hartman
2019-12-29 17:28 ` [PATCH 5.4 430/434] mmc: sdhci-of-esdhc: fix P2020 errata handling Greg Kroah-Hartman
2019-12-29 17:28 ` [PATCH 5.4 431/434] mmc: sdhci: Workaround broken command queuing on Intel GLK Greg Kroah-Hartman
2019-12-29 17:28 ` [PATCH 5.4 432/434] mmc: sdhci: Add a quirk for broken command queuing Greg Kroah-Hartman
2019-12-29 17:28 ` [PATCH 5.4 433/434] nbd: fix shutdown and recv work deadlock v2 Greg Kroah-Hartman
2019-12-29 17:28 ` [PATCH 5.4 434/434] iwlwifi: pcie: move power gating workaround earlier in the flow Greg Kroah-Hartman
2019-12-30  2:18 ` [PATCH 5.4 000/434] 5.4.7-stable review shuah
2019-12-30 11:32   ` Greg Kroah-Hartman
2019-12-30 16:34 ` Dan Rue
2019-12-30 17:45   ` Greg Kroah-Hartman
2019-12-30 18:08     ` Dan Rue
2019-12-30 19:42       ` Greg Kroah-Hartman
2019-12-31  5:19         ` Guenter Roeck
2019-12-30 17:22 ` Guenter Roeck
2019-12-30 17:42   ` Greg Kroah-Hartman
2019-12-30 17:43 ` Greg Kroah-Hartman
2019-12-30 18:17   ` Willy Tarreau
2019-12-30 19:41     ` Greg Kroah-Hartman
2019-12-30 22:41   ` Jeffrin Jose
2019-12-30 20:20 ` Jon Hunter
2019-12-31  8:31   ` Greg Kroah-Hartman
2019-12-31 11:33 ` Jeffrin Jose
2019-12-31 16:09 ` Guenter Roeck
2019-12-31 16:50   ` 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=20191229172712.125304914@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=ast@kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=peterz@infradead.org \
    --cc=sashal@kernel.org \
    --cc=songliubraving@fb.com \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).