From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Wen Yang <wen.yang99@zte.com.cn>,
Patrice Chotard <patrice.chotard@st.com>,
Linus Walleij <linus.walleij@linaro.org>,
linux-gpio@vger.kernel.org, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.0 133/346] pinctrl: st: fix leaked of_node references
Date: Wed, 29 May 2019 20:03:26 -0700 [thread overview]
Message-ID: <20190530030547.853652402@linuxfoundation.org> (raw)
In-Reply-To: <20190530030540.363386121@linuxfoundation.org>
[ Upstream commit 483d70d73beaecab55882fcd2a357af72674e24c ]
The call to of_get_child_by_name returns a node pointer with refcount
incremented thus it must be explicitly decremented after the last
usage.
Detected by coccinelle with the following warnings:
./drivers/pinctrl/pinctrl-st.c:1188:3-9: ERROR: missing of_node_put; acquired a node pointer with refcount incremented on line 1175, but without a corresponding object release within this function.
./drivers/pinctrl/pinctrl-st.c:1188:3-9: ERROR: missing of_node_put; acquired a node pointer with refcount incremented on line 1175, but without a corresponding object release within this function.
./drivers/pinctrl/pinctrl-st.c:1199:2-8: ERROR: missing of_node_put; acquired a node pointer with refcount incremented on line 1175, but without a corresponding object release within this function.
./drivers/pinctrl/pinctrl-st.c:1199:2-8: ERROR: missing of_node_put; acquired a node pointer with refcount incremented on line 1175, but without a corresponding object release within this function.
Signed-off-by: Wen Yang <wen.yang99@zte.com.cn>
Cc: Patrice Chotard <patrice.chotard@st.com>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: linux-gpio@vger.kernel.org
Cc: linux-kernel@vger.kernel.org (open list)
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/pinctrl/pinctrl-st.c | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/drivers/pinctrl/pinctrl-st.c b/drivers/pinctrl/pinctrl-st.c
index e66af93f2cbf8..195b442a23434 100644
--- a/drivers/pinctrl/pinctrl-st.c
+++ b/drivers/pinctrl/pinctrl-st.c
@@ -1170,7 +1170,7 @@ static int st_pctl_dt_parse_groups(struct device_node *np,
struct property *pp;
struct st_pinconf *conf;
struct device_node *pins;
- int i = 0, npins = 0, nr_props;
+ int i = 0, npins = 0, nr_props, ret = 0;
pins = of_get_child_by_name(np, "st,pins");
if (!pins)
@@ -1185,7 +1185,8 @@ static int st_pctl_dt_parse_groups(struct device_node *np,
npins++;
} else {
pr_warn("Invalid st,pins in %pOFn node\n", np);
- return -EINVAL;
+ ret = -EINVAL;
+ goto out_put_node;
}
}
@@ -1195,8 +1196,10 @@ static int st_pctl_dt_parse_groups(struct device_node *np,
grp->pin_conf = devm_kcalloc(info->dev,
npins, sizeof(*conf), GFP_KERNEL);
- if (!grp->pins || !grp->pin_conf)
- return -ENOMEM;
+ if (!grp->pins || !grp->pin_conf) {
+ ret = -ENOMEM;
+ goto out_put_node;
+ }
/* <bank offset mux direction rt_type rt_delay rt_clk> */
for_each_property_of_node(pins, pp) {
@@ -1229,9 +1232,11 @@ static int st_pctl_dt_parse_groups(struct device_node *np,
}
i++;
}
+
+out_put_node:
of_node_put(pins);
- return 0;
+ return ret;
}
static int st_pctl_parse_functions(struct device_node *np,
--
2.20.1
next prev parent reply other threads:[~2019-05-30 3:14 UTC|newest]
Thread overview: 354+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-30 3:01 [PATCH 5.0 000/346] 5.0.20-stable review Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 001/346] x86: Hide the int3_emulate_call/jmp functions from UML Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 002/346] ext4: do not delete unlinked inode from orphan list on failed truncate Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 003/346] ext4: wait for outstanding dio during truncate in nojournal mode Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 004/346] KVM: x86: fix return value for reserved EFER Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 005/346] bio: fix improper use of smp_mb__before_atomic() Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 006/346] sbitmap: " Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 007/346] Revert "scsi: sd: Keep disk read-only when re-reading partition" Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 008/346] crypto: hash - fix incorrect HASH_MAX_DESCSIZE Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 009/346] crypto: vmx - CTR: always increment IV as quadword Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 010/346] mmc: sdhci-iproc: cygnus: Set NO_HISPD bit to fix HS50 data hold time problem Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 011/346] mmc: sdhci-iproc: " Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 012/346] kvm: svm/avic: fix off-by-one in checking host APIC ID Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 013/346] libnvdimm/pmem: Bypass CONFIG_HARDENED_USERCOPY overhead Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 014/346] arm64/kernel: kaslr: reduce module randomization range to 2 GB Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 015/346] arm64/iommu: handle non-remapped addresses in ->mmap and ->get_sgtable Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 016/346] gfs2: Fix sign extension bug in gfs2_update_stats Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 017/346] btrfs: dont double unlock on error in btrfs_punch_hole Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 018/346] Btrfs: do not abort transaction at btrfs_update_root() after failure to COW path Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 019/346] Btrfs: avoid fallback to transaction commit during fsync of files with holes Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 020/346] Btrfs: fix race between ranged fsync and writeback of adjacent ranges Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 021/346] btrfs: sysfs: Fix error path kobject memory leak Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 022/346] btrfs: sysfs: dont leak memory when failing add fsid Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 023/346] fbdev: fix divide error in fb_var_to_videomode Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 024/346] cifs: fix credits leak for SMB1 oplock breaks Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 025/346] brcmfmac: assure SSID length from firmware is limited Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 026/346] brcmfmac: add subtype check for event handling in data path Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 027/346] arm64: errata: Add workaround for Cortex-A76 erratum #1463225 Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 028/346] btrfs: honor path->skip_locking in backref code Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 029/346] ovl: relax WARN_ON() for overlapping layers use case Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 030/346] fbdev: fix WARNING in __alloc_pages_nodemask bug Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 031/346] media: cpia2: Fix use-after-free in cpia2_exit Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 032/346] media: serial_ir: Fix use-after-free in serial_ir_init_module Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 033/346] media: vb2: add waiting_in_dqbuf flag Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 034/346] media: vivid: use vfree() instead of kfree() for dev->bitmap_cap Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 035/346] ssb: Fix possible NULL pointer dereference in ssb_host_pcmcia_exit Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 036/346] bpf: devmap: fix use-after-free Read in __dev_map_entry_free Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 037/346] batman-adv: mcast: fix multicast tt/tvlv worker locking Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 038/346] at76c50x-usb: Dont register led_trigger if usb_register_driver failed Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 039/346] acct_on(): dont mess with freeze protection Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 040/346] netfilter: ctnetlink: Resolve conntrack L3-protocol flush regression Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 041/346] Revert "btrfs: Honour FITRIM range constraints during free space trim" Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 042/346] gfs2: Fix lru_count going negative Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 043/346] cxgb4: Fix error path in cxgb4_init_module Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 044/346] afs: Fix getting the afs.fid xattr Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 045/346] NFS: make nfs_match_client killable Greg Kroah-Hartman
2019-05-30 3:01 ` [PATCH 5.0 046/346] gfs2: fix race between gfs2_freeze_func and unmount Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 047/346] IB/hfi1: Fix WQ_MEM_RECLAIM warning Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 048/346] gfs2: Fix occasional glock use-after-free Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 049/346] mmc: core: Verify SD bus width Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 050/346] tools/bpf: fix perf build error with uClibc (seen on ARC) Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 051/346] selftests/bpf: set RLIMIT_MEMLOCK properly for test_libbpf_open.c Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 052/346] bpftool: exclude bash-completion/bpftool from .gitignore pattern Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 053/346] ice: Separate if conditions for ice_set_features() Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 054/346] blk-mq: split blk_mq_alloc_and_init_hctx into two parts Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 055/346] blk-mq: grab .q_usage_counter when queuing request from plug code path Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 056/346] dmaengine: tegra210-dma: free dma controller in remove() Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 057/346] net: ena: gcc 8: fix compilation warning Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 058/346] net: ena: fix: set freed objects to NULL to avoid failing future allocations Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 059/346] hv_netvsc: fix race that may miss tx queue wakeup Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 060/346] Bluetooth: Ignore CC events not matching the last HCI command Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 061/346] pinctrl: zte: fix leaked of_node references Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 062/346] ASoC: Intel: kbl_da7219_max98357a: Map BTN_0 to KEY_PLAYPAUSE Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 063/346] usb: dwc2: gadget: Increase descriptors count for ISOCs Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 064/346] usb: dwc3: move synchronize_irq() out of the spinlock protected block Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 065/346] usb: gadget: f_fs: dont free buffer prematurely Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 066/346] ASoC: hdmi-codec: unlock the device on startup errors Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 067/346] powerpc/perf: Return accordingly on invalid chip-id in Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 068/346] powerpc/boot: Fix missing check of lseek() return value Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 069/346] powerpc/perf: Fix loop exit condition in nest_imc_event_init Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 070/346] spi: atmel-quadspi: fix crash while suspending Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 071/346] ASoC: imx: fix fiq dependencies Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 072/346] spi: pxa2xx: fix SCR (divisor) calculation Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 073/346] brcm80211: potential NULL dereference in brcmf_cfg80211_vndr_cmds_dcmd_handler() Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 074/346] ACPI / property: fix handling of data_nodes in acpi_get_next_subnode() Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 075/346] drm/nouveau/bar/nv50: ensure BAR is mapped Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 076/346] media: stm32-dcmi: return appropriate error codes during probe Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 077/346] ARM: vdso: Remove dependency with the arch_timer driver internals Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 078/346] arm64: Fix compiler warning from pte_unmap() with -Wunused-but-set-variable Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 079/346] x86/ftrace: Set trampoline pages as executable Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 080/346] powerpc/watchdog: Use hrtimers for per-CPU heartbeat Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 081/346] sched/cpufreq: Fix kobject memleak Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 082/346] scsi: qla2xxx: Fix a qla24xx_enable_msix() error path Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 083/346] scsi: qla2xxx: Fix abort handling in tcm_qla2xxx_write_pending() Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 084/346] scsi: qla2xxx: Avoid that lockdep complains about unsafe locking in tcm_qla2xxx_close_session() Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 085/346] scsi: qla2xxx: Fix hardirq-unsafe locking Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 086/346] x86/modules: Avoid breaking W^X while loading modules Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 087/346] Btrfs: fix data bytes_may_use underflow with fallocate due to failed quota reserve Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 088/346] btrfs: fix panic during relocation after ENOSPC before writeback happens Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 089/346] btrfs: Dont panic when we cant find a root key Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 090/346] iwlwifi: pcie: dont crash on invalid RX interrupt Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 091/346] rtc: 88pm860x: prevent use-after-free on device remove Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 092/346] rtc: stm32: manage the get_irq probe defer case Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 093/346] scsi: qedi: Abort ep termination if offload not scheduled Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 094/346] s390/kexec_file: Fix detection of text segment in ELF loader Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 095/346] ALSA: hda: fix unregister device twice on ASoC driver Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 096/346] sched/nohz: Run NOHZ idle load balancer on HK_FLAG_MISC CPUs Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 097/346] net: ethernet: ti: cpsw: fix allmulti cfg in dual_mac mode Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 098/346] w1: fix the resume command API Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 099/346] net: hns3: fix for TX clean num when cleaning TX BD Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 100/346] net: phy: improve genphy_soft_reset Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 101/346] s390: qeth: address type mismatch warning Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 102/346] net: hns3: use atomic_t replace u32 for arqs count Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 103/346] dmaengine: pl330: _stop: clear interrupt status Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 104/346] mac80211/cfg80211: update bss channel on channel switch Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 105/346] libbpf: fix samples/bpf build failure due to undefined UINT32_MAX Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 5.0 106/346] slimbus: fix a potential NULL pointer dereference in of_qcom_slim_ngd_register Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 107/346] ASoC: fsl_sai: Update is_slave_mode with correct value Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 108/346] Fix nfs4.2 return -EINVAL when do dedupe operation Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 109/346] mwifiex: prevent an array overflow Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 110/346] rsi: Fix NULL pointer dereference in kmalloc Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 111/346] net: cw1200: fix a NULL pointer dereference Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 112/346] nvme: set 0 capacity if namespace block size exceeds PAGE_SIZE Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 113/346] nvme-rdma: fix a NULL deref when an admin connect times out Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 114/346] nvme-tcp: " Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 115/346] crypto: sun4i-ss - Fix invalid calculation of hash end Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 116/346] bcache: avoid potential memleak of list of journal_replay(s) in the CACHE_SYNC branch of run_cache_set Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 117/346] bcache: return error immediately in bch_journal_replay() Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 118/346] bcache: fix failure in journal relplay Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 119/346] bcache: add failure check to run_cache_set() for journal replay Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 120/346] bcache: avoid clang -Wunintialized warning Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 121/346] RDMA/cma: Consider scope_id while binding to ipv6 ll address Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 122/346] vfio-ccw: Do not call flush_workqueue while holding the spinlock Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 123/346] vfio-ccw: Release any channel program when releasing/removing vfio-ccw mdev Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 124/346] x86/build: Move _etext to actual end of .text Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 125/346] smpboot: Place the __percpu annotation correctly Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 126/346] x86/uaccess: Dont leak the AC flag into __put_user() argument evaluation Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 127/346] x86/mm: Remove in_nmi() warning from 64-bit implementation of vmalloc_fault() Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 128/346] mm/uaccess: Use unsigned long to placate UBSAN warnings on older GCC versions Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 129/346] Bluetooth: hci_qca: Give enough time to ROME controller to bootup Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 130/346] Bluetooth: btbcm: Add default address for BCM43341B Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 131/346] HID: logitech-hidpp: use RAP instead of FAP to get the protocol version Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 132/346] pinctrl: pistachio: fix leaked of_node references Greg Kroah-Hartman
2019-05-30 3:03 ` Greg Kroah-Hartman [this message]
2019-05-30 3:03 ` [PATCH 5.0 134/346] pinctrl: samsung: " Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 135/346] clk: rockchip: undo several noc and special clocks as critical on rk3288 Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 136/346] perf/arm-cci: Remove broken race mitigation Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 137/346] dmaengine: at_xdmac: remove BUG_ON macro in tasklet Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 138/346] media: coda: clear error return value before picture run Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 139/346] media: ov6650: Move v4l2_clk_get() to ov6650_video_probe() helper Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 140/346] media: au0828: stop video streaming only when last user stops Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 141/346] media: ov2659: make S_FMT succeed even if requested format doesnt match Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 142/346] audit: fix a memory leak bug Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 143/346] media: stm32-dcmi: fix crash when subdev do not expose any formats Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 144/346] media: au0828: Fix NULL pointer dereference in au0828_analog_stream_enable() Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 145/346] media: pvrusb2: Prevent a buffer overflow Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 146/346] iio: adc: stm32-dfsdm: fix unmet direct dependencies detected Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 147/346] block: fix use-after-free on gendisk Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 148/346] powerpc/numa: improve control of topology updates Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 149/346] powerpc/64: Fix booting large kernels with STRICT_KERNEL_RWX Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 150/346] random: fix CRNG initialization when random.trust_cpu=1 Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 151/346] random: add a spinlock_t to struct batched_entropy Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 152/346] cgroup: protect cgroup->nr_(dying_)descendants by css_set_lock Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 153/346] sched/core: Check quota and period overflow at usec to nsec conversion Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 154/346] sched/rt: Check integer " Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 155/346] sched/core: Handle overflow in cpu_shares_write_u64 Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 156/346] staging: vc04_services: handle kzalloc failure Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 157/346] drm/msm/dpu: release resources on modeset failure Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 158/346] drm/msm: a5xx: fix possible object reference leak Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 159/346] drm/msm: dpu: Dont set frame_busy_mask for async updates Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 160/346] drm/msm: Fix NULL pointer dereference Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 161/346] irq_work: Do not raise an IPI when queueing work on the local CPU Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 162/346] thunderbolt: Take domain lock in switch sysfs attribute callbacks Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 163/346] s390/qeth: handle error from qeth_update_from_chp_desc() Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 164/346] USB: core: Dont unbind interfaces following device reset failure Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 165/346] x86/irq/64: Limit IST stack overflow check to #DB stack Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 5.0 166/346] drm: etnaviv: avoid DMA API warning when importing buffers Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 167/346] dt-bindings: phy-qcom-qmp: Add UFS PHY reset Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 168/346] phy: sun4i-usb: Make sure to disable PHY0 passby for peripheral mode Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 169/346] phy: mapphone-mdm6600: add gpiolib dependency Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 170/346] dpaa2-eth: Fix Rx classification status Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 171/346] i40e: Able to add up to 16 MAC filters on an untrusted VF Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 172/346] i40e: dont allow changes to HW VLAN stripping on active port VLANs Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 173/346] ACPI/IORT: Reject platform device creation on NUMA node mapping failure Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 174/346] arm64: vdso: Fix clock_getres() for CLOCK_REALTIME Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 175/346] RDMA/cxgb4: Fix null pointer dereference on alloc_skb failure Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 176/346] perf/x86/msr: Add Icelake support Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 177/346] perf/x86/intel/rapl: " Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 178/346] perf/x86/intel/cstate: " Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 179/346] PM / devfreq: Fix static checker warning in try_then_request_governor Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 180/346] hwmon: (vt1211) Use request_muxed_region for Super-IO accesses Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 181/346] hwmon: (smsc47m1) " Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 182/346] hwmon: (smsc47b397) " Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 183/346] hwmon: (pc87427) " Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 184/346] hwmon: (f71805f) " Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 185/346] scsi: libsas: Do discovery on empty PHY to update PHY info Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 186/346] mmc: core: make pwrseq_emmc (partially) support sleepy GPIO controllers Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 187/346] mmc_spi: add a status check for spi_sync_locked Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 188/346] mmc: sdhci-of-esdhc: add erratum eSDHC5 support Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 189/346] mmc: sdhci-of-esdhc: add erratum A-009204 support Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 190/346] mmc: sdhci-of-esdhc: add erratum eSDHC-A001 and A-008358 support Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 191/346] net: hns3: free the pending skb when clean RX ring Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 192/346] drm/amdgpu: fix old fence check in amdgpu_fence_emit Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 193/346] PM / core: Propagate dev->power.wakeup_path when no callbacks Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 194/346] clk: rockchip: Fix video codec clocks on rk3288 Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 195/346] extcon: arizona: Disable mic detect if running when driver is removed Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 196/346] clk: rockchip: Make rkpwm a critical clock on rk3288 Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 197/346] clk: zynqmp: fix check for fractional clock Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 198/346] s390: zcrypt: initialize variables before_use Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 199/346] x86/microcode: Fix the ancient deprecated microcode loading method Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 200/346] s390/mm: silence compiler warning when compiling without CONFIG_PGSTE Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 201/346] s390: cio: fix cio_irb declaration Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 202/346] selftests: cgroup: fix cleanup path in test_memcg_subtree_control() Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 203/346] net: hns3: fix keep_alive_timer not stop problem Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 204/346] qmi_wwan: Add quirk for Quectel dynamic config Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 205/346] net: hns3: add error handler for initializing command queue Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 206/346] cpufreq: ppc_cbe: fix possible object reference leak Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 207/346] cpufreq/pasemi: " Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 208/346] cpufreq: pmac32: " Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 209/346] cpufreq: kirkwood: " Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 210/346] cpufreq: imx6q: " Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 211/346] block: sed-opal: fix IOC_OPAL_ENABLE_DISABLE_MBR Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 212/346] samples/bpf: fix build with new clang Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 213/346] x86/build: Keep local relocations with ld.lld Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 214/346] regulator: core: Avoid potential deadlock on regulator_unregister Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 215/346] drm/pl111: fix possible object reference leak Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 216/346] iio: ad_sigma_delta: Properly handle SPI bus locking vs CS assertion Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 217/346] iio: hmc5843: fix potential NULL pointer dereferences Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 218/346] iio: common: ssp_sensors: Initialize calculated_time in ssp_common_process_data Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 219/346] iio: adc: ti-ads7950: Fix improper use of mlock Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 220/346] net: hns3: check resetting status in hns3_get_stats() Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 221/346] net: hns3: add protect when handling mac addr list Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 222/346] selftests/bpf: ksym_search wont check symbols exists Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 223/346] rtlwifi: fix a potential NULL pointer dereference Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 224/346] mwifiex: Fix mem leak in mwifiex_tm_cmd Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 225/346] brcmfmac: fix missing checks for kmemdup Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 5.0 226/346] b43: shut up clang -Wuninitialized variable warning Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 227/346] brcmfmac: convert dev_init_lock mutex to completion Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 228/346] brcmfmac: fix WARNING during USB disconnect in case of unempty psq Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 229/346] brcmfmac: fix race during disconnect when USB completion is in progress Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 230/346] brcmfmac: fix Oops when bringing up interface during USB disconnect Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 231/346] rtc: xgene: fix possible race condition Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 232/346] rtlwifi: fix potential NULL pointer dereference Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 233/346] scsi: ufs: Fix regulator load and icc-level configuration Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 234/346] scsi: ufs: Avoid configuring regulator with undefined voltage range Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 235/346] drm/panel: otm8009a: Add delay at the end of initialization Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 236/346] drm/amd/display: Prevent cursor hotspot overflow for RV overlay planes Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 237/346] arm64: cpu_ops: fix a leaked reference by adding missing of_node_put Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 238/346] locking/static_key: Fix false positive warnings on concurrent dec/inc Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 239/346] wil6210: fix return code of wmi_mgmt_tx and wmi_mgmt_tx_ext Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 240/346] x86/uaccess, ftrace: Fix ftrace_likely_update() vs. SMAP Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 241/346] x86/uaccess, signal: Fix AC=1 bloat Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 242/346] x86/ia32: Fix ia32_restore_sigcontext() AC leak Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 243/346] x86/uaccess: Fix up the fixup Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 244/346] chardev: add additional check for minor range overlap Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 245/346] RDMA/hns: Fix bad endianess of port_pd variable Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 246/346] sh: sh7786: Add explicit I/O cast to sh7786_mm_sel() Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 247/346] HID: core: move Usage Page concatenation to Main item Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 248/346] ASoC: eukrea-tlv320: fix a leaked reference by adding missing of_node_put Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 249/346] ASoC: fsl_utils: " Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 250/346] cxgb3/l2t: Fix undefined behaviour Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 251/346] clk: renesas: rcar-gen3: Correct parent clock of SYS-DMAC Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 252/346] block: pass page to xen_biovec_phys_mergeable Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 253/346] clk: renesas: rcar-gen3: Correct parent clock of Audio-DMAC Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 254/346] HID: logitech-hidpp: change low battery level threshold from 31 to 30 percent Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 255/346] spi: tegra114: reset controller on probe Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 256/346] kobject: Dont trigger kobject_uevent(KOBJ_REMOVE) twice Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 257/346] media: video-mux: fix null pointer dereferences Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 258/346] media: wl128x: prevent two potential buffer overflows Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 259/346] media: gspca: Kill URBs on USB device disconnect Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 260/346] efifb: Omit memory map check on legacy boot Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 261/346] thunderbolt: property: Fix a missing check of kzalloc Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 262/346] thunderbolt: Fix to check the return value of kmemdup Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 263/346] drm: rcar-du: lvds: Set LVEN and LVRES bits together on D3 Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 264/346] timekeeping: Force upper bound for setting CLOCK_REALTIME Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 265/346] scsi: qedf: Add missing return in qedf_post_io_req() in the fcport offload check Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 266/346] virtio_console: initialize vtermno value for ports Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 267/346] tty: ipwireless: fix missing checks for ioremap Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 268/346] staging: mt7621-mmc: Initialize completions a single time during probe Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 269/346] overflow: Fix -Wtype-limits compilation warnings Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 270/346] x86/mce: Fix machine_check_poll() tests for error types Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 271/346] rcutorture: Fix cleanup path for invalid torture_type strings Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 272/346] x86/mce: Handle varying MCA bank counts Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 273/346] rcuperf: Fix cleanup path for invalid perf_type strings Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 274/346] rcu: Do a single rhp->func read in rcu_head_after_call_rcu() Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 275/346] spi: stm32-qspi: add spi_master_put in release function Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 276/346] usb: core: Add PM runtime calls to usb_hcd_platform_shutdown Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 277/346] scsi: qla4xxx: avoid freeing unallocated dma memory Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 278/346] scsi: lpfc: avoid uninitialized variable warning Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 279/346] ice: Prevent unintended multiple chain resets Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 280/346] selinux: avoid uninitialized variable warning Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 281/346] batman-adv: allow updating DAT entry timeouts on incoming ARP Replies Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 282/346] dmaengine: tegra210-adma: use devm_clk_*() helpers Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 283/346] x86/CPU/hygon: Fix phys_proc_id calculation logic for multi-die processors Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 284/346] staging: mt7621-mmc: Check for nonzero number of scatterlist entries Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 285/346] hwrng: omap - Set default quality Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 5.0 286/346] thunderbolt: Fix to check return value of ida_simple_get Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 287/346] thunderbolt: Fix to check for kmemdup failure Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 288/346] drm/amd/display: fix releasing planes when exiting odm Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 289/346] drm/amd/display: Link train only when link is DP and backend is enabled Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 290/346] drm/amd/display: Reset alpha state for planes to the correct values Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 291/346] thunderbolt: property: Fix a NULL pointer dereference Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 292/346] media: v4l2-fwnode: The first default data lane is 0 on C-PHY Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 293/346] media: staging/intel-ipu3: mark PM function as __maybe_unused Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 294/346] e1000e: Disable runtime PM on CNP+ Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 295/346] tinydrm/mipi-dbi: Use dma-safe buffers for all SPI transfers Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 296/346] igb: Exclude device from suspend direct complete optimization Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 297/346] media: si2165: fix a missing check of return value Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 298/346] media: dvbsky: Avoid leaking dvb frontend Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 299/346] media: m88ds3103: serialize reset messages in m88ds3103_set_frontend Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 300/346] drm/amd/display: add pipe lock during stream update Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 301/346] media: staging: davinci_vpfe: disallow building with COMPILE_TEST Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 302/346] drm/amd/display: Fix Divide by 0 in memory calculations Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 303/346] drm/amd/display: Set stream->mode_changed when connectors change Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 304/346] scsi: ufs: fix a missing check of devm_reset_control_get Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 305/346] media: vimc: stream: fix thread state before sleep Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 306/346] media: gspca: do not resubmit URBs when streaming has stopped Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 307/346] media: go7007: avoid clang frame overflow warning with KASAN Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 308/346] media: vimc: zero the media_device on probe Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 309/346] media: vim2m: replace devm_kzalloc by kzalloc Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 310/346] media: cedrus: Add a quirk for not setting DMA offset Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 311/346] scsi: lpfc: Fix FDMI manufacturer attribute value Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 312/346] scsi: lpfc: Fix fc4type information for FDMI Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 313/346] media: saa7146: avoid high stack usage with clang Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 314/346] scsi: lpfc: Fix SLI3 commands being issued on SLI4 devices Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 315/346] scsi: lpfc: Fix use-after-free mailbox cmd completion Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 316/346] audit: fix a memleak caused by auditing load module Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 317/346] spi : spi-topcliff-pch: Fix to handle empty DMA buffers Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 318/346] drm: writeback: Fix leak of writeback job Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 319/346] drm/omap: dsi: Fix PM for display blank with paired dss_pll calls Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 320/346] drm/omap: Notify all devices in the pipeline of output disconnection Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 321/346] spi: rspi: Fix sequencer reset during initialization Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 322/346] regulator: wm831x ldo: Fix notifier mutex lock warning Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 323/346] regulator: wm831x isink: " Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 324/346] regulator: ltc3676: " Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 325/346] regulator: ltc3589: " Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 326/346] regulator: pv88060: " Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 327/346] spi: imx: stop buffer overflow in RX FIFO flush Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 328/346] regulator: lp8755: Fix notifier mutex lock warning Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 329/346] regulator: da9211: " Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 330/346] regulator: da9063: " Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 331/346] regulator: pv88080: " Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 332/346] regulator: wm831x: " Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 333/346] regulator: pv88090: " Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 334/346] regulator: da9062: " Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 335/346] regulator: da9055: " Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 336/346] spi: Fix zero length xfer bug Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 337/346] ASoC: davinci-mcasp: Fix clang warning without CONFIG_PM Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 338/346] ASoC: ti: fix davinci_mcasp_probe dependencies Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 339/346] drm/v3d: Handle errors from IRQ setup Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 340/346] drm/drv: Hold ref on parent device during drm_device lifetime Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 341/346] drm: Wake up next in drm_read() chain if we are forced to putback the event Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 342/346] drm/sun4i: dsi: Change the start delay calculation Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 343/346] vfio-ccw: Prevent quiesce function going into an infinite loop Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 344/346] ice: Put __ICE_PREPARED_FOR_RESET check in ice_prepare_for_reset Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 345/346] drm/sun4i: dsi: Enforce boundaries on the start delay Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 5.0 346/346] NFS: Fix a double unlock from nfs_match,get_client Greg Kroah-Hartman
2019-05-30 9:49 ` [PATCH 5.0 000/346] 5.0.20-stable review kernelci.org bot
2019-05-30 13:22 ` Jon Hunter
2019-05-30 16:23 ` Naresh Kamboju
2019-05-31 13:20 ` Greg Kroah-Hartman
2019-05-31 14:18 ` Dan Rue
2019-05-30 18:35 ` Guenter Roeck
2019-05-30 19:39 ` shuah
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=20190530030547.853652402@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=patrice.chotard@st.com \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=wen.yang99@zte.com.cn \
/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).