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,
	"Ernesto A .  Fernández" <ernesto.mnd.fernandez@gmail.com>,
	"Christoph Hellwig" <hch@lst.de>,
	"Andrew Morton" <akpm@linux-foundation.org>,
	"Linus Torvalds" <torvalds@linux-foundation.org>,
	"Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 4.19 173/306] hfs: prevent btree data loss on ENOSPC
Date: Wed, 27 Nov 2019 21:30:23 +0100	[thread overview]
Message-ID: <20191127203128.020498888@linuxfoundation.org> (raw)
In-Reply-To: <20191127203114.766709977@linuxfoundation.org>

From: Ernesto A. Fernández <ernesto.mnd.fernandez@gmail.com>

[ Upstream commit 54640c7502e5ed41fbf4eedd499e85f9acc9698f ]

Inserting a new record in a btree may require splitting several of its
nodes.  If we hit ENOSPC halfway through, the new nodes will be left
orphaned and their records will be lost.  This could mean lost inodes or
extents.

Henceforth, check the available disk space before making any changes.
This still leaves the potential problem of corruption on ENOMEM.

There is no need to reserve space before deleting a catalog record, as we
do for hfsplus.  This difference is because hfs index nodes have fixed
length keys.

Link: http://lkml.kernel.org/r/ab5fc8a7d5ffccfd5f27b1cf2cb4ceb6c110da74.1536269131.git.ernesto.mnd.fernandez@gmail.com
Signed-off-by: Ernesto A. Fernández <ernesto.mnd.fernandez@gmail.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 fs/hfs/btree.c   | 41 +++++++++++++++++++++++++----------------
 fs/hfs/btree.h   |  1 +
 fs/hfs/catalog.c | 16 ++++++++++++++++
 fs/hfs/extent.c  |  4 ++++
 4 files changed, 46 insertions(+), 16 deletions(-)

diff --git a/fs/hfs/btree.c b/fs/hfs/btree.c
index 9bdff5e406261..19017d2961734 100644
--- a/fs/hfs/btree.c
+++ b/fs/hfs/btree.c
@@ -220,25 +220,17 @@ static struct hfs_bnode *hfs_bmap_new_bmap(struct hfs_bnode *prev, u32 idx)
 	return node;
 }
 
-struct hfs_bnode *hfs_bmap_alloc(struct hfs_btree *tree)
+/* Make sure @tree has enough space for the @rsvd_nodes */
+int hfs_bmap_reserve(struct hfs_btree *tree, int rsvd_nodes)
 {
-	struct hfs_bnode *node, *next_node;
-	struct page **pagep;
-	u32 nidx, idx;
-	unsigned off;
-	u16 off16;
-	u16 len;
-	u8 *data, byte, m;
-	int i;
-
-	while (!tree->free_nodes) {
-		struct inode *inode = tree->inode;
-		u32 count;
-		int res;
+	struct inode *inode = tree->inode;
+	u32 count;
+	int res;
 
+	while (tree->free_nodes < rsvd_nodes) {
 		res = hfs_extend_file(inode);
 		if (res)
-			return ERR_PTR(res);
+			return res;
 		HFS_I(inode)->phys_size = inode->i_size =
 				(loff_t)HFS_I(inode)->alloc_blocks *
 				HFS_SB(tree->sb)->alloc_blksz;
@@ -246,9 +238,26 @@ struct hfs_bnode *hfs_bmap_alloc(struct hfs_btree *tree)
 					  tree->sb->s_blocksize_bits;
 		inode_set_bytes(inode, inode->i_size);
 		count = inode->i_size >> tree->node_size_shift;
-		tree->free_nodes = count - tree->node_count;
+		tree->free_nodes += count - tree->node_count;
 		tree->node_count = count;
 	}
+	return 0;
+}
+
+struct hfs_bnode *hfs_bmap_alloc(struct hfs_btree *tree)
+{
+	struct hfs_bnode *node, *next_node;
+	struct page **pagep;
+	u32 nidx, idx;
+	unsigned off;
+	u16 off16;
+	u16 len;
+	u8 *data, byte, m;
+	int i, res;
+
+	res = hfs_bmap_reserve(tree, 1);
+	if (res)
+		return ERR_PTR(res);
 
 	nidx = 0;
 	node = hfs_bnode_find(tree, nidx);
diff --git a/fs/hfs/btree.h b/fs/hfs/btree.h
index c8b252dbb26c0..dcc2aab1b2c43 100644
--- a/fs/hfs/btree.h
+++ b/fs/hfs/btree.h
@@ -82,6 +82,7 @@ struct hfs_find_data {
 extern struct hfs_btree *hfs_btree_open(struct super_block *, u32, btree_keycmp);
 extern void hfs_btree_close(struct hfs_btree *);
 extern void hfs_btree_write(struct hfs_btree *);
+extern int hfs_bmap_reserve(struct hfs_btree *, int);
 extern struct hfs_bnode * hfs_bmap_alloc(struct hfs_btree *);
 extern void hfs_bmap_free(struct hfs_bnode *node);
 
diff --git a/fs/hfs/catalog.c b/fs/hfs/catalog.c
index 8a66405b0f8b5..d365bf0b8c77d 100644
--- a/fs/hfs/catalog.c
+++ b/fs/hfs/catalog.c
@@ -97,6 +97,14 @@ int hfs_cat_create(u32 cnid, struct inode *dir, const struct qstr *str, struct i
 	if (err)
 		return err;
 
+	/*
+	 * Fail early and avoid ENOSPC during the btree operations. We may
+	 * have to split the root node at most once.
+	 */
+	err = hfs_bmap_reserve(fd.tree, 2 * fd.tree->depth);
+	if (err)
+		goto err2;
+
 	hfs_cat_build_key(sb, fd.search_key, cnid, NULL);
 	entry_size = hfs_cat_build_thread(sb, &entry, S_ISDIR(inode->i_mode) ?
 			HFS_CDR_THD : HFS_CDR_FTH,
@@ -295,6 +303,14 @@ int hfs_cat_move(u32 cnid, struct inode *src_dir, const struct qstr *src_name,
 		return err;
 	dst_fd = src_fd;
 
+	/*
+	 * Fail early and avoid ENOSPC during the btree operations. We may
+	 * have to split the root node at most once.
+	 */
+	err = hfs_bmap_reserve(src_fd.tree, 2 * src_fd.tree->depth);
+	if (err)
+		goto out;
+
 	/* find the old dir entry and read the data */
 	hfs_cat_build_key(sb, src_fd.search_key, src_dir->i_ino, src_name);
 	err = hfs_brec_find(&src_fd);
diff --git a/fs/hfs/extent.c b/fs/hfs/extent.c
index 5d01826545809..0c638c6121526 100644
--- a/fs/hfs/extent.c
+++ b/fs/hfs/extent.c
@@ -117,6 +117,10 @@ static int __hfs_ext_write_extent(struct inode *inode, struct hfs_find_data *fd)
 	if (HFS_I(inode)->flags & HFS_FLG_EXT_NEW) {
 		if (res != -ENOENT)
 			return res;
+		/* Fail early and avoid ENOSPC during the btree operation */
+		res = hfs_bmap_reserve(fd->tree, fd->tree->depth + 1);
+		if (res)
+			return res;
 		hfs_brec_insert(fd, HFS_I(inode)->cached_extents, sizeof(hfs_extent_rec));
 		HFS_I(inode)->flags &= ~(HFS_FLG_EXT_DIRTY|HFS_FLG_EXT_NEW);
 	} else {
-- 
2.20.1




  parent reply	other threads:[~2019-11-27 21:25 UTC|newest]

Thread overview: 359+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-27 20:27 [PATCH 4.19 000/306] 4.19.87-stable review Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 001/306] mlxsw: spectrum_router: Fix determining underlay for a GRE tunnel Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 002/306] net/mlx4_en: fix mlx4 ethtool -N insertion Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 003/306] net/mlx4_en: Fix wrong limitation for number of TX rings Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 004/306] net: rtnetlink: prevent underflows in do_setvfinfo() Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 005/306] net/sched: act_pedit: fix WARN() in the traffic path Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 006/306] net: sched: ensure opts_len <= IP_TUNNEL_OPTS_MAX in act_tunnel_key Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 007/306] sfc: Only cancel the PPS workqueue if it exists Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 008/306] net/mlx5e: Fix set vf link state error flow Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 009/306] net/mlxfw: Verify FSM error code translation doesnt exceed array size Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 010/306] net/mlx5: Fix auto group size calculation Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 011/306] vhost/vsock: split packets to send using multiple buffers Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 012/306] gpio: max77620: Fixup debounce delays Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 013/306] tools: gpio: Correctly add make dependencies for gpio_utils Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 014/306] nbd:fix memory leak in nbd_get_socket() Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 015/306] virtio_console: allocate inbufs in add_port() only if it is needed Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 016/306] Revert "fs: ocfs2: fix possible null-pointer dereferences in ocfs2_xa_prepare_entry()" Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 017/306] mm/ksm.c: dont WARN if page is still mapped in remove_stable_node() Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 018/306] drm/amd/powerplay: issue no PPSMC_MSG_GetCurrPkgPwr on unsupported ASICs Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 019/306] drm/i915/pmu: "Frequency" is reported as accumulated cycles Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 020/306] drm/i915/userptr: Try to acquire the page lock around set_page_dirty() Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 021/306] mwifiex: Fix NL80211_TX_POWER_LIMITED Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 022/306] ALSA: isight: fix leak of reference to firewire unit in error path of .probe callback Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 023/306] crypto: testmgr - fix sizeof() on COMP_BUF_SIZE Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 024/306] printk: lock/unlock console only for new logbuf entries Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 025/306] printk: fix integer overflow in setup_log_buf() Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 026/306] pinctrl: madera: Fix uninitialized variable bug in madera_mux_set_mux Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 027/306] PCI: cadence: Write MSI data with 32bits Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 028/306] gfs2: Fix marking bitmaps non-full Greg Kroah-Hartman
2019-11-27 20:27 ` [PATCH 4.19 029/306] pty: fix compat ioctls Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 030/306] synclink_gt(): fix compat_ioctl() Greg Kroah-Hartman
2019-11-30 10:28   ` Pavel Machek
2019-11-27 20:28 ` [PATCH 4.19 031/306] powerpc: Fix signedness bug in update_flash_db() Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 032/306] powerpc/boot: Fix opal console in boot wrapper Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 033/306] powerpc/boot: Disable vector instructions Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 034/306] powerpc/eeh: Fix null deref for devices removed during EEH Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 035/306] powerpc/eeh: Fix use of EEH_PE_KEEP on wrong field Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 036/306] EDAC, thunderx: Fix memory leak in thunderx_l2c_threaded_isr() Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 037/306] mt76: do not store aggregation sequence number for null-data frames Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 038/306] mt76x0: phy: fix restore phase in mt76x0_phy_recalibrate_after_assoc Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 039/306] brcmsmac: AP mode: update beacon when TIM changes Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 040/306] ath10k: set probe request oui during driver start Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 041/306] ath10k: allocate small size dma memory in ath10k_pci_diag_write_mem Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 042/306] skd: fixup usage of legacy IO API Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 043/306] cdrom: dont attempt to fiddle with cdo->capability Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 044/306] spi: sh-msiof: fix deferred probing Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 045/306] mmc: mediatek: fill the actual clock for mmc debugfs Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 046/306] mmc: mediatek: fix cannot receive new request when msdc_cmd_is_ready fail Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 047/306] PCI: mediatek: Fix class type for MT7622 to PCI_CLASS_BRIDGE_PCI Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 048/306] btrfs: defrag: use btrfs_mod_outstanding_extents in cluster_pages_for_defrag Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 049/306] btrfs: handle error of get_old_root Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 050/306] gsmi: Fix bug in append_to_eventlog sysfs handler Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 051/306] misc: mic: fix a DMA pool free failure Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 052/306] w1: IAD Register is yet readable trough iad sys file. Fix snprintf (%u for unsigned, count for max size) Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 053/306] m68k: fix command-line parsing when passed from u-boot Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 054/306] scsi: hisi_sas: Feed back linkrate(max/min) when re-attached Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 055/306] scsi: hisi_sas: Fix the race between IO completion and timeout for SMP/internal IO Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 056/306] scsi: hisi_sas: Free slot later in slot_complete_vx_hw() Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 057/306] RDMA/bnxt_re: Avoid NULL check after accessing the pointer Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 058/306] RDMA/bnxt_re: Fix qp async event reporting Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 059/306] RDMA/bnxt_re: Avoid resource leak in case the NQ registration fails Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 060/306] pinctrl: sunxi: Fix a memory leak in sunxi_pinctrl_build_state() Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 061/306] pwm: lpss: Only set update bit if we are actually changing the settings Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 062/306] amiflop: clean up on errors during setup Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 063/306] qed: Align local and global PTT to propagate through the APIs Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 064/306] scsi: ips: fix missing break in switch Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 065/306] nfp: bpf: protect against mis-initializing atomic counters Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 066/306] KVM: nVMX: reset cache/shadows when switching loaded VMCS Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 067/306] KVM: nVMX: move check_vmentry_postreqs() call to nested_vmx_enter_non_root_mode() Greg Kroah-Hartman
2019-12-02 14:40   ` Jack Wang
2019-12-02 14:51     ` Greg Kroah-Hartman
2019-12-02 15:09       ` Paolo Bonzini
2019-12-02 16:06         ` Greg Kroah-Hartman
2019-12-03  9:21         ` Jack Wang
2019-12-03  9:31           ` Paolo Bonzini
2019-12-03 12:27             ` Jack Wang
2019-12-03 12:52               ` Paolo Bonzini
2019-12-03 19:16                 ` Greg Kroah-Hartman
2019-12-04 11:42                   ` Paolo Bonzini
2019-12-05  7:46                     ` Greg Kroah-Hartman
2019-12-04 17:50     ` Dan Rue
2019-12-05  9:51       ` Jack Wang
2019-12-05 20:52         ` Dan Rue
2019-12-06  8:54           ` Jack Wang
2019-11-27 20:28 ` [PATCH 4.19 068/306] KVM/x86: Fix invvpid and invept register operand size in 64-bit mode Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 069/306] clk: tegra: Fixes for MBIST work around Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 070/306] scsi: isci: Use proper enumerated type in atapi_d2h_reg_frame_handler Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 071/306] scsi: isci: Change sci_controller_start_tasks return type to sci_status Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 072/306] scsi: bfa: Avoid implicit enum conversion in bfad_im_post_vendor_event Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 073/306] scsi: iscsi_tcp: Explicitly cast param in iscsi_sw_tcp_host_get_param Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 074/306] crypto: ccree - avoid implicit enum conversion Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 075/306] nvmet: avoid integer overflow in the discard code Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 076/306] nvmet-fcloop: suppress a compiler warning Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 077/306] nvme-pci: fix hot removal during error handling Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 078/306] PCI: mediatek: Fixup MSI enablement logic by enabling MSI before clocks Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 079/306] clk: mmp2: fix the clock id for sdh2_clk and sdh3_clk Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 080/306] clk: at91: audio-pll: fix audio pmc type Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 081/306] ASoC: tegra_sgtl5000: fix device_node refcounting Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 082/306] scsi: dc395x: fix dma API usage in srb_done Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 083/306] scsi: dc395x: fix DMA API usage in sg_update_list Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 084/306] scsi: zorro_esp: Limit DMA transfers to 65535 bytes Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 085/306] net: dsa: mv88e6xxx: Fix 88E6141/6341 2500mbps SERDES speed Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 086/306] net: fix warning in af_unix Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 087/306] net: ena: Fix Kconfig dependency on X86 Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 088/306] xfs: fix use-after-free race in xfs_buf_rele Greg Kroah-Hartman
2019-11-27 20:28 ` [PATCH 4.19 089/306] xfs: clear ail delwri queued bufs on unmount of shutdown fs Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 090/306] kprobes, x86/ptrace.h: Make regs_get_kernel_stack_nth() not fault on bad stack Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 091/306] ACPI / scan: Create platform device for INT33FE ACPI nodes Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 092/306] PM / Domains: Deal with multiple states but no governor in genpd Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 093/306] ALSA: i2c/cs8427: Fix int to char conversion Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 094/306] macintosh/windfarm_smu_sat: Fix debug output Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 095/306] PCI: vmd: Detach resources after stopping root bus Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 096/306] USB: misc: appledisplay: fix backlight update_status return code Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 097/306] usbip: tools: fix atoi() on non-null terminated string Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 098/306] sctp: use sk_wmem_queued to check for writable space Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 099/306] dm raid: avoid bitmap with raid4/5/6 journal device Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 100/306] selftests/bpf: fix file resource leak in load_kallsyms Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 101/306] SUNRPC: Fix a compile warning for cmpxchg64() Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 102/306] sunrpc: safely reallow resvport min/max inversion Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 103/306] atm: zatm: Fix empty body Clang warnings Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 104/306] s390/perf: Return error when debug_register fails Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 105/306] swiotlb: do not panic on mapping failures Greg Kroah-Hartman
2019-11-28 21:20   ` Pavel Machek
2019-11-27 20:29 ` [PATCH 4.19 106/306] spi: omap2-mcspi: Set FIFO DMA trigger level to word length Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 107/306] x86/intel_rdt: Prevent pseudo-locking from using stale pointers Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 108/306] sparc: Fix parport build warnings Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 109/306] scsi: hisi_sas: Fix NULL pointer dereference Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 110/306] powerpc/pseries: Export raw per-CPU VPA data via debugfs Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 111/306] powerpc/mm/radix: Fix off-by-one in split mapping logic Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 112/306] powerpc/mm/radix: Fix overuse of small pages in splitting logic Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 113/306] powerpc/mm/radix: Fix small page at boundary when splitting Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 114/306] powerpc/64s/radix: Fix radix__flush_tlb_collapsed_pmd double flushing pmd Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 115/306] selftests/bpf: fix return value comparison for tests in test_libbpf.sh Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 116/306] tools: bpftool: fix completion for "bpftool map update" Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 117/306] ceph: fix dentry leak in ceph_readdir_prepopulate Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 118/306] ceph: only allow punch hole mode in fallocate Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 119/306] rtc: s35390a: Change bufs type to u8 in s35390a_init Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 120/306] RISC-V: Avoid corrupting the upper 32-bit of phys_addr_t in ioremap Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 121/306] thermal: armada: fix a test in probe() Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 122/306] f2fs: fix to spread clear_cold_data() Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 123/306] f2fs: spread f2fs_set_inode_flags() Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 124/306] mISDN: Fix type of switch control variable in ctrl_teimanager Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 125/306] qlcnic: fix a return in qlcnic_dcb_get_capability() Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 126/306] net: ethernet: ti: cpsw: unsync mcast entries while switch promisc mode Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 127/306] mfd: arizona: Correct calling of runtime_put_sync Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 128/306] mfd: mc13xxx-core: Fix PMIC shutdown when reading ADC values Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 129/306] mfd: intel_soc_pmic_bxtwc: Chain power button IRQs as well Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 130/306] mfd: max8997: Enale irq-wakeup unconditionally Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 131/306] net: socionext: Stop PHY before resetting netsec Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 132/306] fs/cifs: fix uninitialised variable warnings Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 133/306] spi: uniphier: fix incorrect property items Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 134/306] selftests/ftrace: Fix to test kprobe $comm arg only if available Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 135/306] selftests: watchdog: fix message when /dev/watchdog open fails Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 136/306] selftests: watchdog: Fix error message Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 137/306] selftests: kvm: Fix -Wformat warnings Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 138/306] selftests: fix warning: "_GNU_SOURCE" redefined Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 139/306] thermal: rcar_thermal: fix duplicate IRQ request Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 140/306] thermal: rcar_thermal: Prevent hardware access during system suspend Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 141/306] net: ethernet: cadence: fix socket buffer corruption problem Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 142/306] bpf: devmap: fix wrong interface selection in notifier_call Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 143/306] bpf, btf: fix a missing check bug in btf_parse Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 144/306] powerpc/process: Fix flush_all_to_thread for SPE Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 145/306] sparc64: Rework xchg() definition to avoid warnings Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 146/306] arm64: lib: use C string functions with KASAN enabled Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 147/306] fs/ocfs2/dlm/dlmdebug.c: fix a sleep-in-atomic-context bug in dlm_print_one_mle() Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 148/306] mm/page-writeback.c: fix range_cyclic writeback vs writepages deadlock Greg Kroah-Hartman
2019-11-27 20:29 ` [PATCH 4.19 149/306] tools/testing/selftests/vm/gup_benchmark.c: fix write flag usage Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 150/306] mm: thp: fix MADV_DONTNEED vs migrate_misplaced_transhuge_page race condition Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 151/306] macsec: update operstate when lower device changes Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 152/306] macsec: let the administrator set UP state even if lowerdev is down Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 153/306] block: fix the DISCARD request merge Greg Kroah-Hartman
2019-12-14 14:13   ` [PATCH 4.19 153/306] block: fix the DISCARD request merge (4.19.87+ crash) Andre Tomt
2019-12-16  7:42     ` Jack Wang
2019-12-16  9:18       ` Andre Tomt
2019-12-16  9:25         ` Jack Wang
2019-12-16  9:28         ` Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 154/306] i2c: uniphier-f: make driver robust against concurrency Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 155/306] i2c: uniphier-f: fix occasional timeout error Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 156/306] i2c: uniphier-f: fix race condition when IRQ is cleared Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 157/306] um: Make line/tty semantics use true write IRQ Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 158/306] vfs: avoid problematic remapping requests into partial EOF block Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 159/306] ipv4/igmp: fix v1/v2 switchback timeout based on rfc3376, 8.12 Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 160/306] powerpc/xmon: Relax frame size for clang Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 161/306] selftests/powerpc/ptrace: Fix out-of-tree build Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 162/306] selftests/powerpc/signal: " Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 163/306] selftests/powerpc/switch_endian: " Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 164/306] selftests/powerpc/cache_shape: " Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 165/306] block: call rq_qos_exit() after queue is frozen Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 166/306] mm/gup_benchmark.c: prevent integer overflow in ioctl Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 167/306] linux/bitmap.h: handle constant zero-size bitmaps correctly Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 168/306] linux/bitmap.h: fix type of nbits in bitmap_shift_right() Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 169/306] lib/bitmap.c: fix remaining space computation in bitmap_print_to_pagebuf Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 170/306] hfsplus: fix BUG on bnode parent update Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 171/306] hfs: " Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 172/306] hfsplus: prevent btree data loss on ENOSPC Greg Kroah-Hartman
2019-11-27 20:30 ` Greg Kroah-Hartman [this message]
2019-11-27 20:30 ` [PATCH 4.19 174/306] hfsplus: fix return value of hfsplus_get_block() Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 175/306] hfs: fix return value of hfs_get_block() Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 176/306] hfsplus: update timestamps on truncate() Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 177/306] hfs: update timestamp " Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 178/306] fs/hfs/extent.c: fix array out of bounds read of array extent Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 179/306] kernel/panic.c: do not append newline to the stack protector panic string Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 180/306] mm/memory_hotplug: make add_memory() take the device_hotplug_lock Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 181/306] mm/memory_hotplug: fix online/offline_pages called w.o. mem_hotplug_lock Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 182/306] powerpc/powernv: hold device_hotplug_lock when calling device_online() Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 183/306] igb: shorten maximum PHC timecounter update interval Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 184/306] fm10k: ensure completer aborts are marked as non-fatal after a resume Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 185/306] net: hns3: bugfix for buffer not free problem during resetting Greg Kroah-Hartman
2019-11-29 11:00   ` Pavel Machek
2019-11-29 14:31     ` Greg Kroah-Hartman
2019-11-29 22:24       ` Pavel Machek
2019-12-03 12:27         ` Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 186/306] net: hns3: bugfix for reporting unknown vector0 interrupt repeatly problem Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 187/306] net: hns3: bugfix for is_valid_csq_clean_head() Greg Kroah-Hartman
2019-12-04 12:38   ` Pavel Machek
2019-11-27 20:30 ` [PATCH 4.19 188/306] net: hns3: bugfix for hclge_mdio_write and hclge_mdio_read Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 189/306] ntb_netdev: fix sleep time mismatch Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 190/306] ntb: intel: fix return value for ndev_vec_mask() Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 191/306] irq/matrix: Fix memory overallocation Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 192/306] nvme-pci: fix conflicting p2p resource adds Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 193/306] arm64: makefile fix build of .i file in external module case Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 194/306] tools/power turbosat: fix AMD APIC-id output Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 195/306] mm: handle no memcg case in memcg_kmem_charge() properly Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 196/306] ocfs2: without quota support, avoid calling quota recovery Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 197/306] ocfs2: dont use iocb when EIOCBQUEUED returns Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 198/306] ocfs2: dont put and assigning null to bh allocated outside Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 199/306] ocfs2: fix clusters leak in ocfs2_defrag_extent() Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 200/306] net: do not abort bulk send on BQL status Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 201/306] sched/topology: Fix off by one bug Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 202/306] sched/fair: Dont increase sd->balance_interval on newidle balance Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 203/306] openvswitch: fix linking without CONFIG_NF_CONNTRACK_LABELS Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 204/306] ARM: dts: imx6sx-sdb: Fix enet phy regulator Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 205/306] clk: sunxi-ng: enable so-said LDOs for A64 SoCs pll-mipi clock Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 206/306] soc: bcm: brcmstb: Fix re-entry point with a THUMB2_KERNEL Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 207/306] audit: print empty EXECVE args Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 208/306] sock_diag: fix autoloading of the raw_diag module Greg Kroah-Hartman
2019-11-27 20:30 ` [PATCH 4.19 209/306] net: bpfilter: fix iptables failure if bpfilter_umh is disabled Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 210/306] nds32: Fix bug in bitfield.h Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 211/306] media: ov13858: Check for possible null pointer Greg Kroah-Hartman
2019-12-03 10:22   ` Pavel Machek
2019-12-03 10:31     ` Sakari Ailus
2019-11-27 20:31 ` [PATCH 4.19 212/306] btrfs: avoid link error with CONFIG_NO_AUTO_INLINE Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 213/306] wil6210: fix debugfs memory access alignment Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 214/306] wil6210: fix L2 RX status handling Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 215/306] wil6210: fix RGF_CAF_ICR address for Talyn-MB Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 216/306] wil6210: fix locking in wmi_call Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 217/306] ath10k: snoc: fix unbalanced clock error handling Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 218/306] wlcore: Fix the return value in case of error in wlcore_vendor_cmd_smart_config_start() Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 219/306] rtl8xxxu: Fix missing break in switch Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 220/306] brcmsmac: never log "tid x is not aggable" by default Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 221/306] wireless: airo: potential buffer overflow in sprintf() Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 222/306] rtlwifi: rtl8192de: Fix misleading REG_MCUFWDL information Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 223/306] net: dsa: bcm_sf2: Turn on PHY to allow successful registration Greg Kroah-Hartman
2019-11-29 13:00   ` Pavel Machek
2019-11-27 20:31 ` [PATCH 4.19 224/306] scsi: mpt3sas: Fix Sync cache command failure during driver unload Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 225/306] scsi: mpt3sas: Dont modify EEDPTagMode field setting on SAS3.5 HBA devices Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 226/306] scsi: mpt3sas: Fix driver modifying persistent data in Manufacturing page11 Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 227/306] scsi: megaraid_sas: Fix msleep granularity Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 228/306] scsi: megaraid_sas: Fix goto labels in error handling Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 229/306] scsi: lpfc: fcoe: Fix link down issue after 1000+ link bounces Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 230/306] scsi: lpfc: Fix odd recovery in duplicate FLOGIs in point-to-point Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 231/306] scsi: lpfc: Correct loss of fc4 type on remote port address change Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 232/306] usb: typec: tcpm: charge current handling for sink during hard reset Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 233/306] dlm: fix invalid free Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 234/306] dlm: dont leak kernel pointer to userspace Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 235/306] vrf: mark skb for multicast or link-local as enslaved to VRF Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 236/306] clk: tegra20: Turn EMC clock gate into divider Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 237/306] ACPICA: Use %d for signed int print formatting instead of %u Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 238/306] net: bcmgenet: return correct value ret from bcmgenet_power_down Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 239/306] sock: Reset dst when changing sk_mark via setsockopt Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 240/306] of: unittest: allow base devicetree to have symbol metadata Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 241/306] of: unittest: initialize args before calling of_*parse_*() Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 242/306] tools: bpftool: pass an argument to silence open_obj_pinned() Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 243/306] cfg80211: Prevent regulatory restore during STA disconnect in concurrent interfaces Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 244/306] pinctrl: qcom: spmi-gpio: fix gpio-hog related boot issues Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 245/306] pinctrl: bcm2835: Use define directive for BCM2835_PINCONF_PARAM_PULL Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 246/306] pinctrl: lpc18xx: Use define directive for PIN_CONFIG_GPIO_PIN_INT Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 247/306] pinctrl: zynq: Use define directive for PIN_CONFIG_IO_STANDARD Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 248/306] PCI: keystone: Use quirk to limit MRRS for K2G Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 249/306] nvme-pci: fix surprise removal Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 250/306] spi: omap2-mcspi: Fix DMA and FIFO event trigger size mismatch Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 251/306] i2c: uniphier-f: fix timeout error after reading 8 bytes Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 252/306] mm/memory_hotplug: Do not unlock when fails to take the device_hotplug_lock Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 253/306] ipv6: Fix handling of LLA with VRF and sockets bound to VRF Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 254/306] cfg80211: call disconnect_wk when AP stops Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 255/306] mm/page_io.c: do not free shared swap slots Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 256/306] Bluetooth: Fix invalid-free in bcsp_close() Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 257/306] KVM: MMU: Do not treat ZONE_DEVICE pages as being reserved Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 258/306] ath10k: Fix a NULL-ptr-deref bug in ath10k_usb_alloc_urb_from_pipe Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 259/306] ath9k_hw: fix uninitialized variable data Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 260/306] md/raid10: prevent access of uninitialized resync_pages offset Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 262/306] net: phy: dp83867: fix speed 10 in sgmii mode Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 263/306] net: phy: dp83867: increase SGMII autoneg timer duration Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 264/306] ocfs2: remove ocfs2_is_o2cb_active() Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 265/306] ARM: 8904/1: skip nomap memblocks while finding the lowmem/highmem boundary Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 266/306] ARC: perf: Accommodate big-endian CPU Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 267/306] x86/insn: Fix awk regexp warnings Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 268/306] x86/speculation: Fix incorrect MDS/TAA mitigation status Greg Kroah-Hartman
2019-11-27 20:31 ` [PATCH 4.19 269/306] x86/speculation: Fix redundant MDS mitigation message Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 270/306] nbd: prevent memory leak Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 271/306] x86/doublefault/32: Fix stack canaries in the double fault handler Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 272/306] x86/pti/32: Size initial_page_table correctly Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 273/306] x86/cpu_entry_area: Add guard page for entry stack on 32bit Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 274/306] selftests/x86/mov_ss_trap: Fix the SYSENTER test Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 275/306] selftests/x86/sigreturn/32: Invalidate DS and ES when abusing the kernel Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 276/306] x86/pti/32: Calculate the various PTI cpu_entry_area sizes correctly, make the CPU_ENTRY_AREA_PAGES assert precise Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 277/306] x86/entry/32: Fix FIXUP_ESPFIX_STACK with user CR3 Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 278/306] y2038: futex: Move compat implementation into futex.c Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 279/306] futex: Prevent robust futex exit race Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 280/306] ALSA: usb-audio: Fix NULL dereference at parsing BADD Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 281/306] nfc: port100: handle command failure cleanly Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 282/306] net-sysfs: Fix reference count leak in rx|netdev_queue_add_kobject Greg Kroah-Hartman
2019-11-28  3:33   ` Nobuhiro Iwamatsu
2019-11-28  7:35     ` Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 283/306] media: vivid: Set vid_cap_streaming and vid_out_streaming to true Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 284/306] media: vivid: Fix wrong locking that causes race conditions on streaming stop Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 285/306] media: usbvision: Fix races among open, close, and disconnect Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 286/306] cpufreq: Add NULL checks to show() and store() methods of cpufreq Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 287/306] media: uvcvideo: Fix error path in control parsing failure Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 288/306] media: b2c2-flexcop-usb: add sanity checking Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 289/306] media: cxusb: detect cxusb_ctrl_msg error in query Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 290/306] media: imon: invalid dereference in imon_touch_event Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 291/306] virtio_ring: fix return code on DMA mapping fails Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 292/306] USBIP: add config dependency for SGL_ALLOC Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 293/306] usbip: tools: fix fd leakage in the function of read_attr_usbip_status Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 294/306] usbip: Fix uninitialized symbol nents in stub_recv_cmd_submit() Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 295/306] usb-serial: cp201x: support Mark-10 digital force gauge Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 296/306] USB: chaoskey: fix error case of a timeout Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 297/306] appledisplay: fix error handling in the scheduled work Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 298/306] USB: serial: mos7840: add USB ID to support Moxa UPort 2210 Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 299/306] USB: serial: mos7720: fix remote wakeup Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 300/306] USB: serial: mos7840: " Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 301/306] USB: serial: option: add support for DW5821e with eSIM support Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 302/306] USB: serial: option: add support for Foxconn T77W968 LTE modules Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 303/306] staging: comedi: usbduxfast: usbduxfast_ai_cmdtest rounding error Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 304/306] powerpc/64s: support nospectre_v2 cmdline option Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 305/306] powerpc/book3s64: Fix link stack flush on context switch Greg Kroah-Hartman
2019-11-27 20:32 ` [PATCH 4.19 306/306] KVM: PPC: Book3S HV: Flush link stack on guest exit to host kernel Greg Kroah-Hartman
2019-11-28  0:27 ` [PATCH 4.19 000/306] 4.19.87-stable review Daniel Díaz
2019-11-28  8:05   ` Greg Kroah-Hartman
2019-11-28  6:53 ` Naresh Kamboju
2019-11-28  7:36   ` Greg Kroah-Hartman
2019-11-28 15:56     ` shuah
2019-11-28 23:57       ` shuah
2019-11-29  6:43         ` Greg Kroah-Hartman
2019-11-29  5:46     ` Lukas Bulwahn
2019-11-29  8:58       ` Greg Kroah-Hartman
2020-01-22  7:48         ` Jouni Högander
2020-01-26 11:54           ` Lukas Bulwahn
2020-01-27  8:42             ` Jouni Högander
2020-01-27 21:16               ` Lukas Bulwahn
2020-01-28  8:46                 ` Jouni Högander
2020-01-28 10:28           ` Jouni Högander
2020-01-28 13:29             ` Greg Kroah-Hartman
2019-11-29  8:54     ` Naresh Kamboju
2019-11-28 10:56 ` Jon Hunter
2019-11-28 16:17 ` Guenter Roeck
2019-11-29 10:37 ` Greg Kroah-Hartman
2019-11-29 20:15   ` Naresh Kamboju

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=20191127203128.020498888@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=akpm@linux-foundation.org \
    --cc=ernesto.mnd.fernandez@gmail.com \
    --cc=hch@lst.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

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

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