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,
	syzbot+722da59ccb264bc19910@syzkaller.appspotmail.com,
	Julian Anastasov <ja@ssi.bg>, Simon Horman <horms@verge.net.au>,
	Pablo Neira Ayuso <pablo@netfilter.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.14 061/293] ipvs: defer hook registration to avoid leaks
Date: Mon, 29 Jul 2019 21:19:12 +0200	[thread overview]
Message-ID: <20190729190829.092678999@linuxfoundation.org> (raw)
In-Reply-To: <20190729190820.321094988@linuxfoundation.org>

[ Upstream commit cf47a0b882a4e5f6b34c7949d7b293e9287f1972 ]

syzkaller reports for memory leak when registering hooks [1]

As we moved the nf_unregister_net_hooks() call into
__ip_vs_dev_cleanup(), defer the nf_register_net_hooks()
call, so that hooks are allocated and freed from same
pernet_operations (ipvs_core_dev_ops).

[1]
BUG: memory leak
unreferenced object 0xffff88810acd8a80 (size 96):
 comm "syz-executor073", pid 7254, jiffies 4294950560 (age 22.250s)
 hex dump (first 32 bytes):
   02 00 00 00 00 00 00 00 50 8b bb 82 ff ff ff ff  ........P.......
   00 00 00 00 00 00 00 00 00 77 bb 82 ff ff ff ff  .........w......
 backtrace:
   [<0000000013db61f1>] kmemleak_alloc_recursive include/linux/kmemleak.h:55 [inline]
   [<0000000013db61f1>] slab_post_alloc_hook mm/slab.h:439 [inline]
   [<0000000013db61f1>] slab_alloc_node mm/slab.c:3269 [inline]
   [<0000000013db61f1>] kmem_cache_alloc_node_trace+0x15b/0x2a0 mm/slab.c:3597
   [<000000001a27307d>] __do_kmalloc_node mm/slab.c:3619 [inline]
   [<000000001a27307d>] __kmalloc_node+0x38/0x50 mm/slab.c:3627
   [<0000000025054add>] kmalloc_node include/linux/slab.h:590 [inline]
   [<0000000025054add>] kvmalloc_node+0x4a/0xd0 mm/util.c:431
   [<0000000050d1bc00>] kvmalloc include/linux/mm.h:637 [inline]
   [<0000000050d1bc00>] kvzalloc include/linux/mm.h:645 [inline]
   [<0000000050d1bc00>] allocate_hook_entries_size+0x3b/0x60 net/netfilter/core.c:61
   [<00000000e8abe142>] nf_hook_entries_grow+0xae/0x270 net/netfilter/core.c:128
   [<000000004b94797c>] __nf_register_net_hook+0x9a/0x170 net/netfilter/core.c:337
   [<00000000d1545cbc>] nf_register_net_hook+0x34/0xc0 net/netfilter/core.c:464
   [<00000000876c9b55>] nf_register_net_hooks+0x53/0xc0 net/netfilter/core.c:480
   [<000000002ea868e0>] __ip_vs_init+0xe8/0x170 net/netfilter/ipvs/ip_vs_core.c:2280
   [<000000002eb2d451>] ops_init+0x4c/0x140 net/core/net_namespace.c:130
   [<000000000284ec48>] setup_net+0xde/0x230 net/core/net_namespace.c:316
   [<00000000a70600fa>] copy_net_ns+0xf0/0x1e0 net/core/net_namespace.c:439
   [<00000000ff26c15e>] create_new_namespaces+0x141/0x2a0 kernel/nsproxy.c:107
   [<00000000b103dc79>] copy_namespaces+0xa1/0xe0 kernel/nsproxy.c:165
   [<000000007cc008a2>] copy_process.part.0+0x11fd/0x2150 kernel/fork.c:2035
   [<00000000c344af7c>] copy_process kernel/fork.c:1800 [inline]
   [<00000000c344af7c>] _do_fork+0x121/0x4f0 kernel/fork.c:2369

Reported-by: syzbot+722da59ccb264bc19910@syzkaller.appspotmail.com
Fixes: 719c7d563c17 ("ipvs: Fix use-after-free in ip_vs_in")
Signed-off-by: Julian Anastasov <ja@ssi.bg>
Acked-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/netfilter/ipvs/ip_vs_core.c | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

diff --git a/net/netfilter/ipvs/ip_vs_core.c b/net/netfilter/ipvs/ip_vs_core.c
index ee97ce176b9a..2156571455db 100644
--- a/net/netfilter/ipvs/ip_vs_core.c
+++ b/net/netfilter/ipvs/ip_vs_core.c
@@ -2206,7 +2206,6 @@ static const struct nf_hook_ops ip_vs_ops[] = {
 static int __net_init __ip_vs_init(struct net *net)
 {
 	struct netns_ipvs *ipvs;
-	int ret;
 
 	ipvs = net_generic(net, ip_vs_net_id);
 	if (ipvs == NULL)
@@ -2238,17 +2237,11 @@ static int __net_init __ip_vs_init(struct net *net)
 	if (ip_vs_sync_net_init(ipvs) < 0)
 		goto sync_fail;
 
-	ret = nf_register_net_hooks(net, ip_vs_ops, ARRAY_SIZE(ip_vs_ops));
-	if (ret < 0)
-		goto hook_fail;
-
 	return 0;
 /*
  * Error handling
  */
 
-hook_fail:
-	ip_vs_sync_net_cleanup(ipvs);
 sync_fail:
 	ip_vs_conn_net_cleanup(ipvs);
 conn_fail:
@@ -2278,6 +2271,19 @@ static void __net_exit __ip_vs_cleanup(struct net *net)
 	net->ipvs = NULL;
 }
 
+static int __net_init __ip_vs_dev_init(struct net *net)
+{
+	int ret;
+
+	ret = nf_register_net_hooks(net, ip_vs_ops, ARRAY_SIZE(ip_vs_ops));
+	if (ret < 0)
+		goto hook_fail;
+	return 0;
+
+hook_fail:
+	return ret;
+}
+
 static void __net_exit __ip_vs_dev_cleanup(struct net *net)
 {
 	struct netns_ipvs *ipvs = net_ipvs(net);
@@ -2297,6 +2303,7 @@ static struct pernet_operations ipvs_core_ops = {
 };
 
 static struct pernet_operations ipvs_core_dev_ops = {
+	.init = __ip_vs_dev_init,
 	.exit = __ip_vs_dev_cleanup,
 };
 
-- 
2.20.1




  parent reply	other threads:[~2019-07-29 19:28 UTC|newest]

Thread overview: 302+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-29 19:18 [PATCH 4.14 000/293] 4.14.135-stable review Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 001/293] MIPS: ath79: fix ar933x uart parity mode Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 002/293] MIPS: fix build on non-linux hosts Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 003/293] arm64/efi: Mark __efistub_stext_offset as an absolute symbol explicitly Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 004/293] scsi: iscsi: set auth_protocol back to NULL if CHAP_A value is not supported Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 005/293] dmaengine: imx-sdma: fix use-after-free on probe error path Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 006/293] wil6210: fix potential out-of-bounds read Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 007/293] ath10k: Do not send probe response template for mesh Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 008/293] ath9k: Check for errors when reading SREV register Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 009/293] ath6kl: add some bounds checking Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 010/293] ath: DFS JP domain W56 fixed pulse type 3 RADAR detection Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 011/293] batman-adv: fix for leaked TVLV handler Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 012/293] media: dvb: usb: fix use after free in dvb_usb_device_exit Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 013/293] media: spi: IR LED: add missing of table registration Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 014/293] crypto: talitos - fix skcipher failure due to wrong output IV Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 015/293] media: marvell-ccic: fix DMA s/g desc number calculation Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 016/293] media: vpss: fix a potential NULL pointer dereference Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 017/293] media: media_device_enum_links32: clean a reserved field Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 018/293] net: stmmac: dwmac1000: Clear unused address entries Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 019/293] net: stmmac: dwmac4/5: " Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 020/293] qed: Set the doorbell address correctly Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 021/293] signal/pid_namespace: Fix reboot_pid_ns to use send_sig not force_sig Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 022/293] af_key: fix leaks in key_pol_get_resp and dump_sp Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 023/293] xfrm: Fix xfrm sel prefix length validation Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 024/293] fscrypt: clean up some BUG_ON()s in block encryption/decryption Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 025/293] media: mc-device.c: dont memset __user pointer contents Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 026/293] media: staging: media: davinci_vpfe: - Fix for memory leak if decoder initialization fails Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 027/293] net: phy: Check against net_device being NULL Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 028/293] crypto: talitos - properly handle split ICV Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 029/293] crypto: talitos - Align SEC1 accesses to 32 bits boundaries Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 030/293] tua6100: Avoid build warnings Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 031/293] locking/lockdep: Fix merging of hlocks with non-zero references Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 032/293] media: wl128x: Fix some error handling in fm_v4l2_init_video_device() Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 033/293] cpupower : frequency-set -r option misses the last cpu in related cpu list Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 034/293] net: stmmac: dwmac4: fix flow control issue Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 035/293] net: fec: Do not use netdev messages too early Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 036/293] net: axienet: Fix race condition causing TX hang Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 037/293] s390/qdio: handle PENDING state for QEBSM devices Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 038/293] RAS/CEC: Fix pfn insertion Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 039/293] net: sfp: add mutex to prevent concurrent state checks Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 040/293] ipset: Fix memory accounting for hash types on resize Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 041/293] perf cs-etm: Properly set the value of old and head in snapshot mode Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 042/293] perf test 6: Fix missing kvm module load for s390 Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 043/293] media: fdp1: Support M3N and E3 platforms Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 044/293] iommu: Fix a leak in iommu_insert_resv_region Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 045/293] gpio: omap: fix lack of irqstatus_raw0 for OMAP4 Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 046/293] gpio: omap: ensure irq is enabled before wakeup Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 047/293] regmap: fix bulk writes on paged registers Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 048/293] bpf: silence warning messages in core Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 049/293] rcu: Force inlining of rcu_read_lock() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 050/293] x86/cpufeatures: Add FDP_EXCPTN_ONLY and ZERO_FCS_FDS Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 051/293] blkcg, writeback: dead memcgs shouldnt contribute to writeback ownership arbitration Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 052/293] xfrm: fix sa selector validation Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 053/293] sched/core: Add __sched tag for io_schedule() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 054/293] sched/fair: Fix "runnable_avg_yN_inv" not used warnings Greg Kroah-Hartman
2019-07-30 18:28   ` Nathan Chancellor
2019-07-30 18:38     ` Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 055/293] x86/atomic: Fix smp_mb__{before,after}_atomic() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 056/293] perf evsel: Make perf_evsel__name() accept a NULL argument Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 057/293] vhost_net: disable zerocopy by default Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 058/293] ipoib: correcly show a VF hardware address Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 059/293] EDAC/sysfs: Fix memory leak when creating a csrow object Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 060/293] ipsec: select crypto ciphers for xfrm_algo Greg Kroah-Hartman
2019-07-29 19:19 ` Greg Kroah-Hartman [this message]
2019-07-29 19:19 ` [PATCH 4.14 062/293] media: s5p-mfc: Make additional clocks optional Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 063/293] media: i2c: fix warning same module names Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 064/293] ntp: Limit TAI-UTC offset Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 065/293] timer_list: Guard procfs specific code Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 066/293] acpi/arm64: ignore 5.1 FADTs that are reported as 5.0 Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 067/293] media: coda: fix mpeg2 sequence number handling Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 068/293] media: coda: fix last buffer handling in V4L2_ENC_CMD_STOP Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 069/293] media: coda: increment sequence offset for the last returned frame Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 070/293] media: vimc: cap: check v4l2_fill_pixfmt return value Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 071/293] media: hdpvr: fix locking and a missing msleep Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 072/293] rtlwifi: rtl8192cu: fix error handle when usb probe failed Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 073/293] mt7601u: do not schedule rx_tasklet when the device has been disconnected Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 074/293] x86/build: Add set -e to mkcapflags.sh to delete broken capflags.c Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 075/293] mt7601u: fix possible memory leak when the device is disconnected Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 076/293] ipvs: fix tinfo memory leak in start_sync_thread Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 077/293] ath10k: add missing error handling Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 078/293] ath10k: fix PCIE device wake up failed Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 079/293] perf tools: Increase MAX_NR_CPUS and MAX_CACHES Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 080/293] libata: dont request sense data on !ZAC ATA devices Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 081/293] clocksource/drivers/exynos_mct: Increase priority over ARM arch timer Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 082/293] rslib: Fix decoding of shortened codes Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 083/293] rslib: Fix handling of of caller provided syndrome Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 084/293] ixgbe: Check DDM existence in transceiver before access Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 085/293] crypto: serpent - mark __serpent_setkey_sbox noinline Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 086/293] crypto: asymmetric_keys - select CRYPTO_HASH where needed Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 087/293] EDAC: Fix global-out-of-bounds write when setting edac_mc_poll_msec Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 088/293] bcache: check c->gc_thread by IS_ERR_OR_NULL in cache_set_flush() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 089/293] net: hns3: fix a -Wformat-nonliteral compile warning Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 090/293] net: hns3: add some error checking in hclge_tm module Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 091/293] ath10k: destroy sdio workqueue while remove sdio module Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 092/293] iwlwifi: mvm: Drop large non sta frames Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 093/293] perf stat: Make metric event lookup more robust Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 094/293] net: usb: asix: init MAC address buffers Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 095/293] gpiolib: Fix references to gpiod_[gs]et_*value_cansleep() variants Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 096/293] Bluetooth: hci_bcsp: Fix memory leak in rx_skb Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 097/293] Bluetooth: 6lowpan: search for destination address in all peers Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 098/293] Bluetooth: Check state in l2cap_disconnect_rsp Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 099/293] gtp: add missing gtp_encap_disable_sock() in gtp_encap_enable() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 100/293] Bluetooth: validate BLE connection interval updates Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 101/293] gtp: fix suspicious RCU usage Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 102/293] gtp: fix Illegal context switch in RCU read-side critical section Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 103/293] gtp: fix use-after-free in gtp_encap_destroy() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 104/293] gtp: fix use-after-free in gtp_newlink() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 105/293] net: mvmdio: defer probe of orion-mdio if a clock is not ready Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 106/293] iavf: fix dereference of null rx_buffer pointer Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 107/293] floppy: fix div-by-zero in setup_format_params Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 108/293] floppy: fix out-of-bounds read in next_valid_format Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 109/293] floppy: fix invalid pointer dereference in drive_name Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 110/293] floppy: fix out-of-bounds read in copy_buffer Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 111/293] xen: let alloc_xenballooned_pages() fail if not enough memory free Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 112/293] scsi: NCR5380: Reduce goto statements in NCR5380_select() Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 113/293] scsi: NCR5380: Always re-enable reselection interrupt Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 114/293] Revert "scsi: ncr5380: Increase register polling limit" Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 115/293] scsi: core: Fix race on creating sense cache Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 116/293] scsi: megaraid_sas: Fix calculation of target ID Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 117/293] scsi: mac_scsi: Increase PIO/PDMA transfer length threshold Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 118/293] scsi: mac_scsi: Fix pseudo DMA implementation, take 2 Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 119/293] crypto: ghash - fix unaligned memory access in ghash_setkey() Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 120/293] crypto: ccp - Validate the the error value used to index error messages Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 121/293] crypto: arm64/sha1-ce - correct digest for empty data in finup Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 122/293] crypto: arm64/sha2-ce " Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 123/293] crypto: chacha20poly1305 - fix atomic sleep when using async algorithm Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 124/293] crypto: ccp - memset structure fields to zero before reuse Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 125/293] crypto: ccp/gcm - use const time tag comparison Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 126/293] crypto: crypto4xx - fix a potential double free in ppc4xx_trng_probe Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 127/293] Input: gtco - bounds check collection indent level Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 128/293] Input: alps - dont handle ALPS cs19 trackpoint-only device Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 129/293] Input: synaptics - whitelist Lenovo T580 SMBus intertouch Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 130/293] Input: alps - fix a mismatch between a condition check and its comment Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 131/293] regulator: s2mps11: Fix buck7 and buck8 wrong voltages Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 132/293] arm64: tegra: Update Jetson TX1 GPU regulator timings Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 133/293] iwlwifi: pcie: dont service an interrupt that was masked Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 134/293] iwlwifi: pcie: fix ALIVE interrupt handling for gen2 devices w/o MSI-X Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 135/293] NFSv4: Handle the special Linux file open access mode Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 136/293] pnfs/flexfiles: Fix PTR_ERR() dereferences in ff_layout_track_ds_error Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 137/293] lib/scatterlist: Fix mapping iterator when sg->offset is greater than PAGE_SIZE Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 138/293] ASoC: dapm: Adapt for debugfs API change Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 139/293] ALSA: seq: Break too long mutex context in the write loop Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 140/293] ALSA: hda/realtek: apply ALC891 headset fixup to one Dell machine Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 141/293] media: v4l2: Test type instead of cfg->type in v4l2_ctrl_new_custom() Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 142/293] media: coda: Remove unbalanced and unneeded mutex unlock Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 143/293] KVM: x86/vPMU: refine kvm_pmu err msg when event creation failed Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 144/293] arm64: tegra: Fix AGIC register range Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 145/293] fs/proc/proc_sysctl.c: fix the default values of i_uid/i_gid on /proc/sys inodes Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 146/293] drm/nouveau/i2c: Enable i2c pads & busses during preinit Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 147/293] padata: use smp_mb in padata_reorder to avoid orphaned padata jobs Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 148/293] dm zoned: fix zone state management race Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 149/293] xen/events: fix binding user event channels to cpus Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 150/293] 9p/xen: Add cleanup path in p9_trans_xen_init Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 151/293] 9p/virtio: Add cleanup path in p9_virtio_init Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 152/293] x86/boot: Fix memory leak in default_get_smp_config() Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 153/293] perf/x86/amd/uncore: Do not set ThreadMask and SliceMask for non-L3 PMCs Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 154/293] perf/x86/amd/uncore: Set the thread mask for F17h L3 PMCs Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 155/293] intel_th: pci: Add Ice Lake NNPI support Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 156/293] PCI: Do not poll for PME if the device is in D3cold Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 157/293] Btrfs: fix data loss after inode eviction, renaming it, and fsync it Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 158/293] Btrfs: fix fsync not persisting dentry deletions due to inode evictions Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 159/293] Btrfs: add missing inode version, ctime and mtime updates when punching hole Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 160/293] HID: wacom: generic: only switch the mode on devices with LEDs Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 161/293] HID: wacom: correct touch resolution x/y typo Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 162/293] libnvdimm/pfn: fix fsdax-mode namespace info-block zero-fields Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 163/293] coda: pass the host file in vma->vm_file on mmap Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 164/293] gpu: ipu-v3: ipu-ic: Fix saturation bit offset in TPMEM Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 165/293] PCI: hv: Fix a use-after-free bug in hv_eject_device_work() Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 166/293] crypto: caam - limit output IV to CBC to work around CTR mode DMA issue Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 167/293] parisc: Ensure userspace privilege for ptraced processes in regset functions Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 168/293] parisc: Fix kernel panic due invalid values in IAOQ0 or IAOQ1 Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 169/293] powerpc/32s: fix suspend/resume when IBATs 4-7 are used Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 170/293] powerpc/watchpoint: Restore NV GPRs while returning from exception Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 171/293] eCryptfs: fix a couple type promotion bugs Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 172/293] intel_th: msu: Fix single mode with disabled IOMMU Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 173/293] Bluetooth: Add SMP workaround Microsoft Surface Precision Mouse bug Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 174/293] usb: Handle USB3 remote wakeup for LPM enabled devices correctly Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 175/293] net: mvmdio: allow up to four clocks to be specified for orion-mdio Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 176/293] dt-bindings: allow up to four clocks " Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 177/293] dm bufio: fix deadlock with loop device Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 178/293] compiler.h, kasan: Avoid duplicating __read_once_size_nocheck() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 179/293] compiler.h: Add read_word_at_a_time() function Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 180/293] lib/strscpy: Shut up KASAN false-positives in strscpy() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 181/293] bnx2x: Prevent load reordering in tx completion processing Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 182/293] bnx2x: Prevent ptp_task to be rescheduled indefinitely Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 183/293] caif-hsi: fix possible deadlock in cfhsi_exit_module() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 184/293] igmp: fix memory leak in igmpv3_del_delrec() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 185/293] ipv4: dont set IPv6 only flags to IPv4 addresses Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 186/293] net: bcmgenet: use promisc for unsupported filters Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 187/293] net: dsa: mv88e6xxx: wait after reset deactivation Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 188/293] net: neigh: fix multiple neigh timer scheduling Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 189/293] net: openvswitch: fix csum updates for MPLS actions Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 190/293] nfc: fix potential illegal memory access Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 191/293] rxrpc: Fix send on a connected, but unbound socket Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 192/293] sky2: Disable MSI on ASUS P6T Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 193/293] vrf: make sure skb->data contains ip header to make routing Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 194/293] macsec: fix use-after-free of skb during RX Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 195/293] macsec: fix checksumming after decryption Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 196/293] netrom: fix a memory leak in nr_rx_frame() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 197/293] netrom: hold sock when setting skb->destructor Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 198/293] bonding: validate ip header before check IPPROTO_IGMP Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 199/293] net: make skb_dst_force return true when dst is refcounted Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 200/293] tcp: fix tcp_set_congestion_control() use from bpf hook Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 201/293] tcp: Reset bytes_acked and bytes_received when disconnecting Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 202/293] net: bridge: mcast: fix stale nsrcs pointer in igmp3/mld2 report handling Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 203/293] net: bridge: mcast: fix stale ipv6 hdr pointer when handling v6 query Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 204/293] net: bridge: stp: dont cache eth dest pointer before skb pull Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 205/293] dma-buf: balance refcount inbalance Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 206/293] dma-buf: Discard old fence_excl on retrying get_fences_rcu for realloc Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 207/293] MIPS: lb60: Fix pin mappings Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 208/293] ext4: dont allow any modifications to an immutable file Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 209/293] ext4: enforce the immutable flag on open files Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 210/293] mm: add filemap_fdatawait_range_keep_errors() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 211/293] jbd2: introduce jbd2_inode dirty range scoping Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 212/293] ext4: use " Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 213/293] ext4: allow directory holes Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 214/293] mm: vmscan: scan anonymous pages on file refaults Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 215/293] perf/events/amd/uncore: Fix amd_uncore_llc ID to use pre-defined cpu_llc_id Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 216/293] NFSv4: Fix open create exclusive when the server reboots Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 217/293] nfsd: increase DRC cache limit Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 218/293] nfsd: give out fewer session slots as limit approaches Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 219/293] nfsd: fix performance-limiting session calculation Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 220/293] nfsd: Fix overflow causing non-working mounts on 1 TB machines Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 221/293] hvsock: fix epollout hang from race condition Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 222/293] drm/panel: simple: Fix panel_simple_dsi_probe Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 223/293] usb: core: hub: Disable hub-initiated U1/U2 Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 224/293] tty: max310x: Fix invalid baudrate divisors calculator Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 225/293] pinctrl: rockchip: fix leaked of_node references Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 226/293] tty: serial: cpm_uart - fix init when SMC is relocated Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 227/293] drm/edid: Fix a missing-check bug in drm_load_edid_firmware() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 228/293] PCI: Return error if cannot probe VF Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 229/293] drm/bridge: tc358767: read display_props in get_modes() Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 230/293] drm/bridge: sii902x: pixel clock unit is 10kHz instead of 1kHz Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 231/293] drm/crc-debugfs: User irqsafe spinlock in drm_crtc_add_crc_entry Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 232/293] memstick: Fix error cleanup path of memstick_init Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 233/293] tty/serial: digicolor: Fix digicolor-usart already registered warning Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 234/293] tty: serial: msm_serial: avoid system lockup condition Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 235/293] serial: 8250: Fix TX interrupt handling condition Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 236/293] drm/virtio: Add memory barriers for capset cache Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 237/293] phy: renesas: rcar-gen2: Fix memory leak at error paths Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 238/293] powerpc/pseries/mobility: prevent cpu hotplug during DT update Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 239/293] drm/rockchip: Properly adjust to a true clock in adjusted_mode Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 240/293] tty: serial_core: Set port active bit in uart_port_activate Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 241/293] usb: gadget: Zero ffs_io_data Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 242/293] powerpc/pci/of: Fix OF flags parsing for 64bit BARs Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 243/293] drm/msm: Depopulate platform on probe failure Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 244/293] serial: mctrl_gpio: Check if GPIO property exisits before requesting it Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 245/293] PCI: sysfs: Ignore lockdep for remove attribute Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 246/293] kbuild: Add -Werror=unknown-warning-option to CLANG_FLAGS Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 247/293] PCI: xilinx-nwl: Fix Multi MSI data programming Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 248/293] iio: iio-utils: Fix possible incorrect mask calculation Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 249/293] powerpc/xmon: Fix disabling tracing while in xmon Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 250/293] recordmcount: Fix spurious mcount entries on powerpc Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 251/293] mfd: core: Set fwnode for created devices Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 252/293] mfd: arizona: Fix undefined behavior Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 253/293] mfd: hi655x-pmic: Fix missing return value check for devm_regmap_init_mmio_clk Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 254/293] um: Silence lockdep complaint about mmap_sem Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 255/293] powerpc/4xx/uic: clear pending interrupt after irq type/pol change Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 256/293] RDMA/i40iw: Set queue pair state when being queried Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 257/293] serial: sh-sci: Terminate TX DMA during buffer flushing Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 258/293] serial: sh-sci: Fix TX DMA buffer flushing and workqueue races Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 259/293] kallsyms: exclude kasan local symbols on s390 Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 260/293] perf test mmap-thread-lookup: Initialize variable to suppress memory sanitizer warning Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 261/293] perf session: Fix potential NULL pointer dereference found by the smatch tool Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 262/293] perf annotate: Fix dereferencing freed memory " Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 263/293] RDMA/rxe: Fill in wc byte_len with IB_WC_RECV_RDMA_WITH_IMM Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 264/293] PCI: dwc: pci-dra7xx: Fix compilation when !CONFIG_GPIOLIB Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 265/293] powerpc/boot: add {get, put}_unaligned_be32 to xz_config.h Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 266/293] f2fs: avoid out-of-range memory access Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 267/293] mailbox: handle failed named mailbox channel request Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 268/293] powerpc/eeh: Handle hugepages in ioremap space Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 269/293] block/bio-integrity: fix a memory leak bug Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 270/293] sh: prevent warnings when using iounmap Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 271/293] mm/kmemleak.c: fix check for softirq context Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 272/293] 9p: pass the correct prototype to read_cache_page Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 273/293] mm/gup.c: mark undo_dev_pagemap as __maybe_unused Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 274/293] mm/gup.c: remove some BUG_ONs from get_gate_page() Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 275/293] mm/mmu_notifier: use hlist_add_head_rcu() Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 276/293] locking/lockdep: Fix lock used or unused stats error Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 277/293] locking/lockdep: Hide unused class variable Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 278/293] drm/crc: Only report a single overflow when a CRC fd is opened Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 279/293] drm/crc-debugfs: Also sprinkle irqrestore over early exits Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 280/293] usb: wusbcore: fix unbalanced get/put cluster_id Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 281/293] usb: pci-quirks: Correct AMD PLL quirk detection Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 282/293] KVM: nVMX: do not use dangling shadow VMCS after guest reset Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 283/293] btrfs: inode: Dont compress if NODATASUM or NODATACOW set Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 284/293] x86/sysfb_efi: Add quirks for some devices with swapped width and height Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 285/293] x86/speculation/mds: Apply more accurate check on hypervisor platform Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 286/293] binder: prevent transactions to context manager from its own process Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 287/293] fpga-manager: altera-ps-spi: Fix build error Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 288/293] hpet: Fix division by zero in hpet_time_div() Greg Kroah-Hartman
2019-07-29 19:23 ` [PATCH 4.14 289/293] ALSA: line6: Fix wrong altsetting for LINE6_PODHD500_1 Greg Kroah-Hartman
2019-07-29 19:23 ` [PATCH 4.14 290/293] ALSA: hda - Add a conexant codec entry to let mute led work Greg Kroah-Hartman
2019-07-29 19:23 ` [PATCH 4.14 291/293] powerpc/xive: Fix loop exit-condition in xive_find_target_in_mask() Greg Kroah-Hartman
2019-07-29 19:23 ` [PATCH 4.14 292/293] powerpc/tm: Fix oops on sigreturn on systems without TM Greg Kroah-Hartman
2019-07-29 19:23 ` [PATCH 4.14 293/293] access: avoid the RCU grace period for the temporary subjective credentials Greg Kroah-Hartman
2019-07-30  3:34 ` [PATCH 4.14 000/293] 4.14.135-stable review kernelci.org bot
2019-07-30  7:13 ` Naresh Kamboju
2019-07-30 13:59 ` shuah
2019-07-30 18:42 ` Guenter Roeck
2019-07-31  5:31 ` Kelsey Skunberg
2019-07-31  9:35 ` Jon Hunter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190729190829.092678999@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=horms@verge.net.au \
    --cc=ja@ssi.bg \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pablo@netfilter.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=syzbot+722da59ccb264bc19910@syzkaller.appspotmail.com \
    /path/to/YOUR_REPLY

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

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