public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Zhikang Zhang <zhangzhikang1@huawei.com>,
	Chao Yu <yuchao0@huawei.com>, Jaegeuk Kim <jaegeuk@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 183/361] f2fs: avoid sleeping under spin_lock
Date: Sun, 11 Nov 2018 14:18:50 -0800	[thread overview]
Message-ID: <20181111221645.948775322@linuxfoundation.org> (raw)
In-Reply-To: <20181111221619.915519183@linuxfoundation.org>

4.19-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Zhikang Zhang <zhangzhikang1@huawei.com>

[ Upstream commit b430f7263673eab1dc40e662ae3441a9619d16b8 ]

In the call trace below, we might sleep in function dput().

So in order to avoid sleeping under spin_lock, we remove f2fs_mark_inode_dirty_sync
from __try_update_largest_extent && __drop_largest_extent.

BUG: sleeping function called from invalid context at fs/dcache.c:796
Call trace:
	dump_backtrace+0x0/0x3f4
	show_stack+0x24/0x30
	dump_stack+0xe0/0x138
	___might_sleep+0x2a8/0x2c8
	__might_sleep+0x78/0x10c
	dput+0x7c/0x750
	block_dump___mark_inode_dirty+0x120/0x17c
	__mark_inode_dirty+0x344/0x11f0
	f2fs_mark_inode_dirty_sync+0x40/0x50
	__insert_extent_tree+0x2e0/0x2f4
	f2fs_update_extent_tree_range+0xcf4/0xde8
	f2fs_update_extent_cache+0x114/0x12c
	f2fs_update_data_blkaddr+0x40/0x50
	write_data_page+0x150/0x314
	do_write_data_page+0x648/0x2318
	__write_data_page+0xdb4/0x1640
	f2fs_write_cache_pages+0x768/0xafc
	__f2fs_write_data_pages+0x590/0x1218
	f2fs_write_data_pages+0x64/0x74
	do_writepages+0x74/0xe4
	__writeback_single_inode+0xdc/0x15f0
	writeback_sb_inodes+0x574/0xc98
	__writeback_inodes_wb+0x190/0x204
	wb_writeback+0x730/0xf14
	wb_check_old_data_flush+0x1bc/0x1c8
	wb_workfn+0x554/0xf74
	process_one_work+0x440/0x118c
	worker_thread+0xac/0x974
	kthread+0x1a0/0x1c8
	ret_from_fork+0x10/0x1c

Signed-off-by: Zhikang Zhang <zhangzhikang1@huawei.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 fs/f2fs/extent_cache.c |   51 ++++++++++++++++++++++++++++++-------------------
 fs/f2fs/f2fs.h         |    7 +++---
 2 files changed, 36 insertions(+), 22 deletions(-)

--- a/fs/f2fs/extent_cache.c
+++ b/fs/f2fs/extent_cache.c
@@ -308,14 +308,13 @@ static unsigned int __free_extent_tree(s
 	return count - atomic_read(&et->node_cnt);
 }
 
-static void __drop_largest_extent(struct inode *inode,
+static void __drop_largest_extent(struct extent_tree *et,
 					pgoff_t fofs, unsigned int len)
 {
-	struct extent_info *largest = &F2FS_I(inode)->extent_tree->largest;
-
-	if (fofs < largest->fofs + largest->len && fofs + len > largest->fofs) {
-		largest->len = 0;
-		f2fs_mark_inode_dirty_sync(inode, true);
+	if (fofs < et->largest.fofs + et->largest.len &&
+			fofs + len > et->largest.fofs) {
+		et->largest.len = 0;
+		et->largest_updated = true;
 	}
 }
 
@@ -416,12 +415,11 @@ out:
 	return ret;
 }
 
-static struct extent_node *__try_merge_extent_node(struct inode *inode,
+static struct extent_node *__try_merge_extent_node(struct f2fs_sb_info *sbi,
 				struct extent_tree *et, struct extent_info *ei,
 				struct extent_node *prev_ex,
 				struct extent_node *next_ex)
 {
-	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
 	struct extent_node *en = NULL;
 
 	if (prev_ex && __is_back_mergeable(ei, &prev_ex->ei)) {
@@ -443,7 +441,7 @@ static struct extent_node *__try_merge_e
 	if (!en)
 		return NULL;
 
-	__try_update_largest_extent(inode, et, en);
+	__try_update_largest_extent(et, en);
 
 	spin_lock(&sbi->extent_lock);
 	if (!list_empty(&en->list)) {
@@ -454,12 +452,11 @@ static struct extent_node *__try_merge_e
 	return en;
 }
 
-static struct extent_node *__insert_extent_tree(struct inode *inode,
+static struct extent_node *__insert_extent_tree(struct f2fs_sb_info *sbi,
 				struct extent_tree *et, struct extent_info *ei,
 				struct rb_node **insert_p,
 				struct rb_node *insert_parent)
 {
-	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
 	struct rb_node **p;
 	struct rb_node *parent = NULL;
 	struct extent_node *en = NULL;
@@ -476,7 +473,7 @@ do_insert:
 	if (!en)
 		return NULL;
 
-	__try_update_largest_extent(inode, et, en);
+	__try_update_largest_extent(et, en);
 
 	/* update in global extent list */
 	spin_lock(&sbi->extent_lock);
@@ -497,6 +494,7 @@ static void f2fs_update_extent_tree_rang
 	struct rb_node **insert_p = NULL, *insert_parent = NULL;
 	unsigned int end = fofs + len;
 	unsigned int pos = (unsigned int)fofs;
+	bool updated = false;
 
 	if (!et)
 		return;
@@ -517,7 +515,7 @@ static void f2fs_update_extent_tree_rang
 	 * drop largest extent before lookup, in case it's already
 	 * been shrunk from extent tree
 	 */
-	__drop_largest_extent(inode, fofs, len);
+	__drop_largest_extent(et, fofs, len);
 
 	/* 1. lookup first extent node in range [fofs, fofs + len - 1] */
 	en = (struct extent_node *)f2fs_lookup_rb_tree_ret(&et->root,
@@ -550,7 +548,7 @@ static void f2fs_update_extent_tree_rang
 				set_extent_info(&ei, end,
 						end - dei.fofs + dei.blk,
 						org_end - end);
-				en1 = __insert_extent_tree(inode, et, &ei,
+				en1 = __insert_extent_tree(sbi, et, &ei,
 							NULL, NULL);
 				next_en = en1;
 			} else {
@@ -570,7 +568,7 @@ static void f2fs_update_extent_tree_rang
 		}
 
 		if (parts)
-			__try_update_largest_extent(inode, et, en);
+			__try_update_largest_extent(et, en);
 		else
 			__release_extent_node(sbi, et, en);
 
@@ -590,15 +588,16 @@ static void f2fs_update_extent_tree_rang
 	if (blkaddr) {
 
 		set_extent_info(&ei, fofs, blkaddr, len);
-		if (!__try_merge_extent_node(inode, et, &ei, prev_en, next_en))
-			__insert_extent_tree(inode, et, &ei,
+		if (!__try_merge_extent_node(sbi, et, &ei, prev_en, next_en))
+			__insert_extent_tree(sbi, et, &ei,
 						insert_p, insert_parent);
 
 		/* give up extent_cache, if split and small updates happen */
 		if (dei.len >= 1 &&
 				prev.len < F2FS_MIN_EXTENT_LEN &&
 				et->largest.len < F2FS_MIN_EXTENT_LEN) {
-			__drop_largest_extent(inode, 0, UINT_MAX);
+			et->largest.len = 0;
+			et->largest_updated = true;
 			set_inode_flag(inode, FI_NO_EXTENT);
 		}
 	}
@@ -606,7 +605,15 @@ static void f2fs_update_extent_tree_rang
 	if (is_inode_flag_set(inode, FI_NO_EXTENT))
 		__free_extent_tree(sbi, et);
 
+	if (et->largest_updated) {
+		et->largest_updated = false;
+		updated = true;
+	}
+
 	write_unlock(&et->lock);
+
+	if (updated)
+		f2fs_mark_inode_dirty_sync(inode, true);
 }
 
 unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *sbi, int nr_shrink)
@@ -705,6 +712,7 @@ void f2fs_drop_extent_tree(struct inode
 {
 	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
 	struct extent_tree *et = F2FS_I(inode)->extent_tree;
+	bool updated = false;
 
 	if (!f2fs_may_extent_tree(inode))
 		return;
@@ -713,8 +721,13 @@ void f2fs_drop_extent_tree(struct inode
 
 	write_lock(&et->lock);
 	__free_extent_tree(sbi, et);
-	__drop_largest_extent(inode, 0, UINT_MAX);
+	if (et->largest.len) {
+		et->largest.len = 0;
+		updated = true;
+	}
 	write_unlock(&et->lock);
+	if (updated)
+		f2fs_mark_inode_dirty_sync(inode, true);
 }
 
 void f2fs_destroy_extent_tree(struct inode *inode)
--- a/fs/f2fs/f2fs.h
+++ b/fs/f2fs/f2fs.h
@@ -572,6 +572,7 @@ struct extent_tree {
 	struct list_head list;		/* to be used by sbi->zombie_list */
 	rwlock_t lock;			/* protect extent info rb-tree */
 	atomic_t node_cnt;		/* # of extent node in rb-tree*/
+	bool largest_updated;		/* largest extent updated */
 };
 
 /*
@@ -754,12 +755,12 @@ static inline bool __is_front_mergeable(
 }
 
 extern void f2fs_mark_inode_dirty_sync(struct inode *inode, bool sync);
-static inline void __try_update_largest_extent(struct inode *inode,
-			struct extent_tree *et, struct extent_node *en)
+static inline void __try_update_largest_extent(struct extent_tree *et,
+						struct extent_node *en)
 {
 	if (en->ei.len > et->largest.len) {
 		et->largest = en->ei;
-		f2fs_mark_inode_dirty_sync(inode, true);
+		et->largest_updated = true;
 	}
 }
 



  parent reply	other threads:[~2018-11-12  0:03 UTC|newest]

Thread overview: 384+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-11 22:15 [PATCH 4.19 000/361] 4.19.2-stable review Greg Kroah-Hartman
2018-11-11 22:15 ` [PATCH 4.19 001/361] bpf: fix partial copy of map_ptr when dst is scalar Greg Kroah-Hartman
2018-11-11 22:15 ` [PATCH 4.19 002/361] MIPS: VDSO: Reduce VDSO_RANDOMIZE_SIZE to 64MB for 64bit Greg Kroah-Hartman
2018-11-11 22:15 ` [PATCH 4.19 003/361] gpio: mxs: Get rid of external API call Greg Kroah-Hartman
2018-11-11 22:15 ` [PATCH 4.19 004/361] mtd: rawnand: marvell: fix the IRQ handler complete() condition Greg Kroah-Hartman
2018-11-11 22:15 ` [PATCH 4.19 005/361] mtd: maps: gpio-addr-flash: Fix ioremapped size Greg Kroah-Hartman
2018-11-11 22:15 ` [PATCH 4.19 006/361] mtd: spi-nor: fsl-quadspi: fix read error for flash size larger than 16MB Greg Kroah-Hartman
2018-11-11 22:15 ` [PATCH 4.19 007/361] mtd: spi-nor: intel-spi: Add support for Intel Ice Lake SPI serial flash Greg Kroah-Hartman
2018-11-11 22:15 ` [PATCH 4.19 008/361] mtd: spi-nor: fsl-quadspi: Dont let -EINVAL on the bus Greg Kroah-Hartman
2018-11-11 22:15 ` [PATCH 4.19 009/361] spi: spi-mem: Adjust op len based on message/transfer size limitations Greg Kroah-Hartman
2018-11-11 22:15 ` [PATCH 4.19 010/361] spi: bcm-qspi: switch back to reading flash using smaller chunks Greg Kroah-Hartman
2018-11-11 22:15 ` [PATCH 4.19 011/361] spi: bcm-qspi: fix calculation of address length Greg Kroah-Hartman
2018-11-11 22:15 ` [PATCH 4.19 012/361] bcache: trace missed reading by cache_missed Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 013/361] bcache: fix ioctl in flash device Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 014/361] bcache: correct dirty data statistics Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 015/361] bcache: fix miss key refill->end in writeback Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 016/361] hwmon: (pmbus) Fix page count auto-detection Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 017/361] jffs2: free jffs2_sb_info through jffs2_kill_sb() Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 018/361] block: setup bounce bio_sets properly Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 019/361] block: make sure discard bio is aligned with logical block size Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 020/361] block: make sure writesame " Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 021/361] cpufreq: conservative: Take limits changes into account properly Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 022/361] dma-mapping: fix panic caused by passing empty cma command line argument Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 023/361] pcmcia: Implement CLKRUN protocol disabling for Ricoh bridges Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 024/361] ACPI / OSL: Use jiffies as the time bassis for acpi_os_get_timer() Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 025/361] ACPICA: AML interpreter: add region addresses in global list during initialization Greg Kroah-Hartman
2018-11-12 18:30   ` Holger Hoffstätte
2018-11-12 19:01     ` Schmauss, Erik
2018-11-12 19:41       ` Holger Hoffstätte
2018-11-12 20:12         ` Schmauss, Erik
2018-11-12 19:25     ` Greg Kroah-Hartman
2018-11-12 20:03       ` Holger Hoffstätte
2018-11-11 22:16 ` [PATCH 4.19 026/361] ACPICA: AML Parser: fix parse loop to correctly skip erroneous extended opcodes Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 027/361] acpi, nfit: Fix Address Range Scrub completion tracking Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 028/361] kprobes/x86: Use preempt_enable() in optimized_callback() Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 029/361] ipmi: Fix timer race with module unload Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 030/361] mailbox: PCC: handle parse error Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 031/361] parisc: Fix address in HPMC IVA Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 032/361] parisc: Fix map_pages() to not overwrite existing pte entries Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 033/361] parisc: Fix exported address of os_hpmc handler Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 034/361] ALSA: hda - Add quirk for ASUS G751 laptop Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 035/361] ALSA: hda - Fix headphone pin config for ASUS G751 Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 036/361] ALSA: hda/realtek - Fix the problem of the front MIC on the Lenovo M715 Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 037/361] ALSA: hda - Add mic quirk for the Lenovo G50-30 (17aa:3905) Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 038/361] ALSA: hda: Add 2 more models to the power_save blacklist Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 039/361] ALSA: ca0106: Disable IZD on SB0570 DAC to fix audio pops Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 040/361] ALSA: hda - Fix incorrect clearance of thinkpad_acpi hooks Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 041/361] x86/speculation: Enable cross-hyperthread spectre v2 STIBP mitigation Greg Kroah-Hartman
2018-11-21 13:21   ` Jiri Kosina
2018-11-21 13:56     ` Greg Kroah-Hartman
2018-11-21 17:47       ` Tim Chen
2018-11-21 18:15         ` Greg Kroah-Hartman
2018-11-21 18:21         ` Jiri Kosina
2018-11-21 18:59           ` Tim Chen
2018-11-11 22:16 ` [PATCH 4.19 042/361] x86/xen: Fix boot loader version reported for PVH guests Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 043/361] x86/corruption-check: Fix panic in memory_corruption_check() when boot option without value is provided Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 044/361] x86/kvm/nVMX: allow bare VMXON state migration Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 045/361] x86/mm/pat: Disable preemption around __flush_tlb_all() Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 046/361] x86/numa_emulation: Fix uniform-split numa emulation Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 047/361] ARM: dts: exynos: Disable pull control for MAX8997 interrupts on Origen Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 048/361] net: socionext: Reset tx queue in ndo_stop Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 049/361] net: loopback: clear skb->tstamp before netif_rx() Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 050/361] locking/lockdep: Fix debug_locks off performance problem Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 051/361] netfilter: xt_nat: fix DNAT target for shifted portmap ranges Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 052/361] ataflop: fix error handling during setup Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 053/361] swim: fix cleanup on setup error Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 054/361] arm64: cpufeature: ctr: Fix cpu capability check for late CPUs Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 055/361] hv_netvsc: fix vf serial matching with pci slot info Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 056/361] nfp: devlink port split support for 1x100G CXP NIC Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 057/361] tun: Consistently configure generic netdev params via rtnetlink Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 058/361] s390/sthyi: Fix machine name validity indication Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 059/361] hwmon: (pwm-fan) Set fan speed to 0 on suspend Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 060/361] lightnvm: pblk: fix race on sysfs line state Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 061/361] lightnvm: pblk: fix two sleep-in-atomic-context bugs Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 062/361] lightnvm: pblk: fix race condition on metadata I/O Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 063/361] spi: spi-ep93xx: Use dma_data_direction for ep93xx_spi_dma_{finish,prepare} Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 064/361] perf tools: Free temporary sys string in read_event_files() Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 065/361] perf tools: Cleanup trace-event-info tdata leak Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 066/361] perf tools: Free printk string in parse_ftrace_printk() Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 067/361] perf strbuf: Match va_{add,copy} with va_end Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 068/361] cpupower: Fix coredump on VMWare Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 069/361] bcache: Populate writeback_rate_minimum attribute Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 070/361] mmc: sdhci-pci-o2micro: Add quirk for O2 Micro dev 0x8620 rev 0x01 Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 071/361] sdhci: acpi: add free_slot callback Greg Kroah-Hartman
2018-11-11 22:16 ` [PATCH 4.19 072/361] mtd: rawnand: denali: set SPARE_AREA_SKIP_BYTES register to 8 if unset Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 073/361] iwlwifi: pcie: avoid empty free RB queue Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 074/361] iwlwifi: mvm: clear HW_RESTART_REQUESTED when stopping the interface Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 075/361] iwlwifi: mvm: check for n_profiles validity in EWRD ACPI Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 076/361] x86/olpc: Indicate that legacy PC XO-1 platform should not register RTC Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 077/361] wlcore: Fix BUG with clear completion on timeout Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 078/361] nvmet-rdma: use a private workqueue for delete Greg Kroah-Hartman
2018-11-12  1:27   ` Bart Van Assche
2018-11-12  2:32     ` Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 079/361] ACPI/PPTT: Handle architecturally unknown cache types Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 080/361] ACPI / PM: LPIT: Register sysfs attributes based on FADT Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 081/361] ACPI / processor: Fix the return value of acpi_processor_ids_walk() Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 082/361] cpufreq: dt: Try freeing static OPPs only if we have added them Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 083/361] x86/intel_rdt: Show missing resctrl mount options Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 084/361] mtd: rawnand: atmel: Fix potential NULL pointer dereference Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 085/361] nvme: call nvme_complete_rq when nvmf_check_ready fails for mpath I/O Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 086/361] ath10k: fix tx status flag setting for management frames Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 087/361] signal: Introduce COMPAT_SIGMINSTKSZ for use in compat_sys_sigaltstack Greg Kroah-Hartman
2018-11-12 11:49   ` Steve McIntyre
2018-11-19 15:15     ` Greg Kroah-Hartman
2018-12-17 17:52       ` Steve McIntyre
2018-11-11 22:17 ` [PATCH 4.19 088/361] ice: fix changing of ring descriptor size (ethtool -G) Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 089/361] ice: update fw version check logic Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 090/361] net: hns3: Fix for packet buffer setting bug Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 091/361] Bluetooth: btbcm: Add entry for BCM4335C0 UART bluetooth Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 092/361] Bluetooth: hci_qca: Remove hdev dereference in qca_close() Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 093/361] efi/x86: Call efi_parse_options() from efi_main() Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 094/361] x86: boot: Fix EFI stub alignment Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 095/361] net: hns3: Add nic state check before calling netif_tx_wake_queue Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 096/361] net: hns3: Fix ets validate issue Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 097/361] pinctrl: sunxi: fix pctrl->functions allocation in sunxi_pinctrl_build_state Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 098/361] pinctrl: qcom: spmi-mpp: Fix err handling of pmic_mpp_set_mux Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 099/361] brcmfmac: fix for proper support of 160MHz bandwidth Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 100/361] net: hns3: Check hdev state when getting link status Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 101/361] net: hns3: Set STATE_DOWN bit of hdev state when stopping net Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 102/361] net: phy: phylink: ensure the carrier is off when starting phylink Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 103/361] block, bfq: correctly charge and reset entity service in all cases Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 104/361] arm64: entry: Allow handling of undefined instructions from EL1 Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 105/361] kprobes: Return error if we fail to reuse kprobe instead of BUG_ON() Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 106/361] spi: gpio: No MISO does not imply no RX Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 107/361] ACPI / LPSS: Add alternative ACPI HIDs for Cherry Trail DMA controllers Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 108/361] pinctrl: qcom: spmi-mpp: Fix drive strength setting Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 109/361] bpf/verifier: fix verifier instability Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 110/361] failover: Add missing check to validate slave_dev in net_failover_slave_unregister Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 111/361] perf tests: Fix record+probe_libc_inet_pton.sh without pings debuginfo Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 112/361] pinctrl: spmi-mpp: Fix pmic_mpp_config_get() to be compliant Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 113/361] pinctrl: ssbi-gpio: Fix pm8xxx_pin_config_get() " Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 114/361] net: hns3: Preserve vlan 0 in hardware table Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 115/361] net: hns3: Fix ping exited problem when doing lp selftest Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 116/361] net: hns3: Fix for vf vlan delete failed problem Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 117/361] net: dsa: mv88e6xxx: Fix writing to a PHY page Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 118/361] mt76x2u: run device cleanup routine if resume fails Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 119/361] rsi: fix memory alignment issue in ARM32 platforms Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 120/361] libertas_tf: prevent underflow in process_cmdrequest() Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 121/361] iwlwifi: mvm: fix BAR seq ctrl reporting Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 122/361] gpio: brcmstb: allow 0 width GPIO banks Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 123/361] ixgbe: disallow IPsec Tx offload when in SR-IOV mode Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 124/361] ixgbevf: VF2VF TCP RSS Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 125/361] wil6210: fix RX buffers release and unmap Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 126/361] ath10k: schedule hardware restart if WMI command times out Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 127/361] libata: Apply NOLPM quirk for SAMSUNG MZ7TD256HAFV-000L9 Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 128/361] thermal: rcar_thermal: Prevent doing work after unbind Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 129/361] thermal: da9062/61: Prevent hardware access during system suspend Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 130/361] cifs: fix a credits leak for compund commands Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 131/361] cgroup, netclassid: add a preemption point to write_classid Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.19 132/361] net: stmmac: dwmac-sun8i: fix OF child-node lookup Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 133/361] f2fs: fix to account IO correctly for cgroup writeback Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 134/361] MD: Memory leak when flush bio size is zero Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 135/361] md: fix memleak for mempool Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 136/361] of: Add missing exports of node name compare functions Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 137/361] scsi: esp_scsi: Track residual for PIO transfers Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 138/361] scsi: ufs: Schedule clk gating work on correct queue Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 139/361] UAPI: ndctl: Fix g++-unsupported initialisation in headers Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 140/361] KVM: nVMX: Clear reserved bits of #DB exit qualification Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 141/361] scsi: megaraid_sas: fix a missing-check bug Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 142/361] RDMA/core: Do not expose unsupported counters Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 143/361] RDMA/cm: Respect returned status of cm_init_av_by_path Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 144/361] IB/ipoib: Clear IPCB before icmp_send Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 145/361] RDMA/bnxt_re: Avoid accessing nq->bar_reg_iomem in failure case Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 146/361] RDMA/bnxt_re: Fix recursive lock warning in debug kernel Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 147/361] usb: host: ohci-at91: fix request of irq for optional gpio Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 148/361] PCI: mediatek: Fix mtk_pcie_find_port() endpoint/port matching logic Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 149/361] PCI: cadence: Use AXI region 0 to signal interrupts from EP Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 150/361] usb: typec: tcpm: Report back negotiated PPS voltage and current Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 151/361] tpm: suppress transmit cmd error logs when TPM 1.2 is disabled/deactivated Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 152/361] f2fs: clear PageError on the read path Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 153/361] Drivers: hv: vmbus: Use cpumask_var_t for on-stack cpu mask Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 154/361] VMCI: Resource wildcard match fixed Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 155/361] PCI / ACPI: Enable wake automatically for power managed bridges Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 156/361] xprtrdma: Reset credit grant properly after a disconnect Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 157/361] irqchip/pdc: Setup all edge interrupts as rising edge at GIC Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 158/361] usb: dwc2: fix call to vbus supply exit routine, call it unlocked Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 159/361] usb: dwc2: fix a race with external vbus supply Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 160/361] usb: gadget: udc: atmel: handle at91sam9rl PMC Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 161/361] ext4: fix argument checking in EXT4_IOC_MOVE_EXT Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 162/361] MD: fix invalid stored role for a disk Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 163/361] PCI: cadence: Correct probe behaviour when failing to get PHY Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 164/361] nvmem: check the return value of nvmem_add_cells() Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 165/361] xhci: Avoid USB autosuspend when resuming USB2 ports Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 166/361] scsi: qla2xxx: Fix recursive mailbox timeout Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 167/361] f2fs: fix to recover inodes crtime during POR Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 168/361] f2fs: fix to recover inodes i_flags " Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 169/361] PCI/MSI: Warn and return error if driver enables MSI/MSI-X twice Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 170/361] coresight: etb10: Fix handling of perf mode Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 171/361] PCI: dwc: pci-dra7xx: Enable errata i870 for both EP and RC mode Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 172/361] crypto: caam - fix implicit casts in endianness helpers Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 173/361] usb: chipidea: Prevent unbalanced IRQ disable Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 174/361] Smack: ptrace capability use fixes Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 175/361] driver/dma/ioat: Call del_timer_sync() without holding prep_lock Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 176/361] ASoC: AMD: Fix capture unstable in beginning for some runs Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 177/361] firmware: coreboot: Unmap ioregion after device population Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 178/361] IB/ipoib: Use dev_port to expose network interface port numbers Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 179/361] IB/mlx5: Allow transition of DCI QP to reset Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 180/361] uio: ensure class is registered before devices Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 181/361] scsi: lpfc: Correct soft lockup when running mds diagnostics Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 182/361] scsi: lpfc: Correct race with abort on completion path Greg Kroah-Hartman
2018-11-11 22:18 ` Greg Kroah-Hartman [this message]
2018-11-11 22:18 ` [PATCH 4.19 184/361] f2fs: report error if quota off error during umount Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 185/361] signal: Always deliver the kernels SIGKILL and SIGSTOP to a pid namespace init Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 186/361] f2fs: fix to flush all dirty inodes recovered in readonly fs Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 187/361] mfd: menelaus: Fix possible race condition and leak Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 188/361] dmaengine: dma-jz4780: Return error if not probed from DT Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 189/361] IB/rxe: fix for duplicate request processing and ack psns Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 190/361] ALSA: hda: Check the non-cached stream buffers more explicitly Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 191/361] cpupower: Fix AMD Family 0x17 msr_pstate size Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.19 192/361] Revert "f2fs: fix to clear PG_checked flag in set_page_dirty()" Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 193/361] f2fs: fix missing up_read Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 194/361] f2fs: fix to recover cold bit of inode block during POR Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 195/361] f2fs: fix to account IO correctly Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 196/361] OPP: Free OPP table properly on performance state irregularities Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 197/361] ARM: dts: exynos: Convert exynos5250.dtsi to opp-v2 bindings Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 198/361] ARM: dts: exynos: Mark 1 GHz CPU OPP as suspend OPP on Exynos5250 Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 199/361] xen-swiotlb: use actually allocated size on check physical continuous Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 200/361] tpm: Restore functionality to xen vtpm driver Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 201/361] xen/blkfront: avoid NULL blkfront_info dereference on device removal Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 202/361] xen/balloon: Support xend-based toolstack Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 203/361] xen: fix race in xen_qlock_wait() Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 204/361] xen: make xen_qlock_wait() nestable Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 205/361] xen/pvh: increase early stack size Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 206/361] xen/pvh: dont try to unplug emulated devices Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 207/361] libertas: dont set URB_ZERO_PACKET on IN USB transfer Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 208/361] usbip:vudc: BUG kmalloc-2048 (Not tainted): Poison overwritten Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 209/361] usb: typec: tcpm: Fix APDO PPS order checking to be based on voltage Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 210/361] usb: gadget: udc: renesas_usb3: Fix b-device mode for "workaround" Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 211/361] mt76: mt76x2: fix multi-interface beacon configuration Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 212/361] iwlwifi: mvm: check return value of rs_rate_from_ucode_rate() Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 213/361] net/ipv4: defensive cipso option parsing Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 214/361] dmaengine: ppc4xx: fix off-by-one build failure Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 215/361] scsi: sched/wait: Add wait_event_lock_irq_timeout for TASK_UNINTERRUPTIBLE usage Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 216/361] scsi: target: Fix target_wait_for_sess_cmds breakage with active signals Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 217/361] libnvdimm: Hold reference on parent while scheduling async init Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 218/361] libnvdimm, region: Fail badblocks listing for inactive regions Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 219/361] libnvdimm, pmem: Fix badblocks population for raw namespaces Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 220/361] ASoC: intel: skylake: Add missing break in skl_tplg_get_token() Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 221/361] ASoC: sta32x: set ->component pointer in private struct Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 222/361] IB/mlx5: Fix MR cache initialization Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 223/361] IB/rxe: Revise the ib_wr_opcode enum Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 224/361] jbd2: fix use after free in jbd2_log_do_checkpoint() Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 225/361] gfs2_meta: ->mount() can get NULL dev_name Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 226/361] ext4: fix EXT4_IOC_SWAP_BOOT Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 227/361] ext4: initialize retries variable in ext4_da_write_inline_data_begin() Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 228/361] ext4: fix setattr project check in fssetxattr ioctl Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 229/361] ext4: propagate error from dquot_initialize() in EXT4_IOC_FSSETXATTR Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 230/361] ext4: fix use-after-free race in ext4_remount()s error path Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 231/361] selinux: fix mounting of cgroup2 under older policies Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 232/361] HID: wacom: Work around HID descriptor bug in DTK-2451 and DTH-2452 Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 233/361] HID: hiddev: fix potential Spectre v1 Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 234/361] EDAC, amd64: Add Family 17h, models 10h-2fh support Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 235/361] EDAC, {i7core,sb,skx}_edac: Fix uncorrected error counting Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 236/361] EDAC, skx_edac: Fix logical channel intermediate decoding Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 237/361] ARM: dts: dra7: Fix up unaligned access setting for PCIe EP Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 238/361] PCI/ASPM: Fix link_state teardown on device removal Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 239/361] PCI: Add Device IDs for Intel GPU "spurious interrupt" quirk Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 240/361] signal/GenWQE: Fix sending of SIGKILL Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 241/361] signal: Guard against negative signal numbers in copy_siginfo_from_user32 Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 242/361] crypto: lrw - Fix out-of bounds access on counter overflow Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 243/361] crypto: tcrypt - fix ghash-generic speed test Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 244/361] crypto: aesni - dont use GFP_ATOMIC allocation if the request doesnt cross a page in gcm Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 245/361] crypto: morus/generic - fix for big endian systems Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 246/361] crypto: aegis/generic " Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 247/361] crypto: speck - remove Speck Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 248/361] mm: /proc/pid/smaps_rollup: fix NULL pointer deref in smaps_pte_range() Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 249/361] userfaultfd: disable irqs when taking the waitqueue lock Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 250/361] ima: fix showing large violations or runtime_measurements_count Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 251/361] ima: open a new file instance if no read permissions Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.19 252/361] hugetlbfs: dirty pages as they are added to pagecache Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 253/361] mm/rmap: map_pte() was not handling private ZONE_DEVICE page properly Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 254/361] mm/hmm: fix race between hmm_mirror_unregister() and mmu_notifier callback Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 255/361] KVM: arm/arm64: Ensure only THP is candidate for adjustment Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 256/361] KVM: arm64: Fix caching of host MDCR_EL2 value Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 257/361] kbuild: fix kernel/bounds.c W=1 warning Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 258/361] iio: ad5064: Fix regulator handling Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 259/361] iio: adc: imx25-gcq: Fix leak of device_node in mx25_gcq_setup_cfgs() Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 260/361] iio: adc: at91: fix acking DRDY irq on simple conversions Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 261/361] iio: adc: at91: fix wrong channel number in triggered buffer mode Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 262/361] w1: omap-hdq: fix missing bus unregister at removal Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 263/361] smb3: allow stats which track session and share reconnects to be reset Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 264/361] smb3: do not attempt cifs operation in smb3 query info error path Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 265/361] smb3: on kerberos mount if server doesnt specify auth type use krb5 Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 266/361] printk: Fix panic caused by passing log_buf_len to command line Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 267/361] genirq: Fix race on spurious interrupt detection Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 268/361] tpm: fix response size validation in tpm_get_random() Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 269/361] NFC: nfcmrvl_uart: fix OF child-node lookup Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 270/361] NFSv4.1: Fix the r/wsize checking Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 271/361] nfs: Fix a missed page unlock after pg_doio() Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 272/361] nfsd: correctly decrement odstate refcount in error path Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 273/361] nfsd: Fix an Oops in free_session() Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 274/361] lockd: fix access beyond unterminated strings in prints Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 275/361] dm ioctl: harden copy_params()s copy_from_user() from malicious users Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 276/361] dm zoned: fix metadata block ref counting Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 277/361] dm zoned: fix various dmz_get_mblock() issues Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 278/361] media: ov7670: make "xclk" clock optional Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 279/361] fsnotify: Fix busy inodes during unmount Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 280/361] powerpc64/module elfv1: Set opd addresses after module relocation Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 281/361] powerpc/msi: Fix compile error on mpc83xx Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 282/361] powerpc/tm: Fix HFSCR bit for no suspend case Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 283/361] powerpc/64s/hash: Do not use PPC_INVALIDATE_ERAT on CPUs before POWER9 Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 284/361] MIPS: OCTEON: fix out of bounds array access on CN68XX Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 285/361] rtc: ds1307: fix ds1339 wakealarm support Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 286/361] rtc: cmos: Fix non-ACPI undefined reference to `hpet_rtc_interrupt Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 287/361] rtc: cmos: Remove the `use_acpi_alarm module parameter for !ACPI Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 288/361] power: supply: twl4030-charger: fix OF sibling-node lookup Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 289/361] ocxl: Fix access to the AFU Descriptor Data Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 290/361] iommu/arm-smmu: Ensure that page-table updates are visible before TLBI Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 291/361] TC: Set DMA masks for devices Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 292/361] net: bcmgenet: fix OF child-node lookup Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 293/361] media: v4l2-tpg: fix kernel oops when enabling HFLIP and OSD Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 294/361] Revert "media: dvbsky: use just one mutex for serializing device R/W ops" Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 295/361] kgdboc: Passing ekgdboc to command line causes panic Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 296/361] remoteproc: qcom: q6v5: Propagate EPROBE_DEFER Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 297/361] media: cec: make cec_get_edid_spa_location() an inline function Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 298/361] media: cec: integrate cec_validate_phys_addr() in cec-api.c Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 299/361] xen: fix xen_qlock_wait() Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 300/361] xen: remove size limit of privcmd-buf mapping interface Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 301/361] xen-blkfront: fix kernel panic with negotiate_mq error path Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 302/361] media: cec: add new tx/rx status bits to detect aborts/timeouts Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 303/361] media: cec: fix the Signal Free Time calculation Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 304/361] media: cec: forgot to cancel delayed work Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 305/361] media: em28xx: use a default format if TRY_FMT fails Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 306/361] media: tvp5150: avoid going past array on v4l2_querymenu() Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 307/361] media: em28xx: fix input name for Terratec AV 350 Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 308/361] media: em28xx: make v4l2-compliance happier by starting sequence on zero Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 309/361] media: em28xx: fix handler for vidioc_s_input() Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 310/361] media: adv7604: when the EDID is cleared, unconfigure CEC as well Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 311/361] media: adv7842: " Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.19 312/361] drm/mediatek: fix OF sibling-node lookup Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 313/361] media: media colorspaces*.rst: rename AdobeRGB to opRGB Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 314/361] media: replace ADOBERGB by OPRGB Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 315/361] media: hdmi.h: rename ADOBE_RGB to OPRGB and ADOBE_YCC to OPYCC Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 316/361] arm64: lse: remove -fcall-used-x0 flag Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 317/361] rpmsg: smd: fix memory leak on channel create Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 318/361] Cramfs: fix abad comparison when wrap-arounds occur Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 319/361] ARM: dts: socfpga: Fix SDRAM node address for Arria10 Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 320/361] arm64: dts: stratix10: Correct System Manager register size Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 321/361] soc: qcom: rmtfs-mem: Validate that scm is available Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 322/361] soc/tegra: pmc: Fix child-node lookup Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 323/361] selftests/ftrace: Fix synthetic event test to delete event correctly Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 324/361] selftests/powerpc: Fix ptrace tm failure Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 325/361] tracing: Return -ENOENT if there is no target synthetic event Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 326/361] btrfs: qgroup: Avoid calling qgroup functions if qgroup is not enabled Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 327/361] btrfs: Handle owner mismatch gracefully when walking up tree Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 328/361] btrfs: locking: Add extra check in btrfs_init_new_buffer() to avoid deadlock Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 329/361] btrfs: fix error handling in free_log_tree Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 330/361] btrfs: fix error handling in btrfs_dev_replace_start Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 331/361] btrfs: Enhance btrfs_trim_fs function to handle error better Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 332/361] btrfs: Ensure btrfs_trim_fs can trim the whole filesystem Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 333/361] btrfs: iterate all devices during trim, instead of fs_devices::alloc_list Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 334/361] btrfs: dont attempt to trim devices that dont support it Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 335/361] btrfs: keep trim from interfering with transaction commits Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 336/361] btrfs: wait on caching when putting the bg cache Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 337/361] Btrfs: dont clean dirty pages during buffered writes Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 338/361] btrfs: release metadata before running delayed refs Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 339/361] btrfs: protect space cache inode alloc with GFP_NOFS Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 340/361] btrfs: reset max_extent_size on clear in a bitmap Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 341/361] btrfs: make sure we create all new block groups Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 342/361] Btrfs: fix warning when replaying log after fsync of a tmpfile Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 343/361] Btrfs: fix wrong dentries after fsync of file that got its parent replaced Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 344/361] btrfs: qgroup: Dirty all qgroups before rescan Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 345/361] Btrfs: fix null pointer dereference on compressed write path error Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 346/361] Btrfs: fix assertion on fsync of regular file when using no-holes feature Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 347/361] Btrfs: fix deadlock when writing out free space caches Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 348/361] btrfs: reset max_extent_size properly Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 349/361] btrfs: set " Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 350/361] btrfs: dont use ctl->free_space for max_extent_size Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 351/361] btrfs: only free reserved extent if we didnt insert it Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 352/361] btrfs: fix insert_reserved error handling Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 353/361] btrfs: dont run delayed_iputs in commit Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 354/361] btrfs: move the dio_sem higher up the callchain Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 355/361] Btrfs: fix use-after-free during inode eviction Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 356/361] Btrfs: fix use-after-free when dumping free space Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 357/361] net: sched: Remove TCA_OPTIONS from policy Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 358/361] vt: fix broken display when running aptitude Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 359/361] userns: also map extents in the reverse map to kernel IDs Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 360/361] bpf: wait for running BPF programs when updating map-in-map Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.19 361/361] vga_switcheroo: Fix missing gpu_bound call at audio client registration Greg Kroah-Hartman
2018-11-12  4:10 ` [PATCH 4.19 000/361] 4.19.2-stable review kernelci.org bot
2018-11-12 14:00 ` Naresh Kamboju
2018-11-12 20:11   ` Greg Kroah-Hartman
2018-11-13  0:58 ` Guenter Roeck
2018-11-13  5:06   ` 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=20181111221645.948775322@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jaegeuk@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=yuchao0@huawei.com \
    --cc=zhangzhikang1@huawei.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