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,
	Sergey Senozhatsky <sergey.senozhatsky@gmail.com>,
	Minchan Kim <minchan@kernel.org>,
	Kyeongdon Kim <kyeongdon.kim@lge.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linus Torvalds <torvalds@linux-foundation.org>
Subject: [PATCH 4.3 195/200] zram/zcomp: use GFP_NOIO to allocate streams
Date: Sun, 14 Feb 2016 14:23:22 -0800	[thread overview]
Message-ID: <20160214222224.288288440@linuxfoundation.org> (raw)
In-Reply-To: <20160214222217.084543173@linuxfoundation.org>

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

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

From: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>

commit 3d5fe03a3ea013060ebba2a811aeb0f23f56aefa upstream.

We can end up allocating a new compression stream with GFP_KERNEL from
within the IO path, which may result is nested (recursive) IO
operations.  That can introduce problems if the IO path in question is a
reclaimer, holding some locks that will deadlock nested IOs.

Allocate streams and working memory using GFP_NOIO flag, forbidding
recursive IO and FS operations.

An example:

  inconsistent {IN-RECLAIM_FS-W} -> {RECLAIM_FS-ON-W} usage.
  git/20158 [HC0[0]:SC0[0]:HE1:SE1] takes:
   (jbd2_handle){+.+.?.}, at:  start_this_handle+0x4ca/0x555
  {IN-RECLAIM_FS-W} state was registered at:
     __lock_acquire+0x8da/0x117b
     lock_acquire+0x10c/0x1a7
     start_this_handle+0x52d/0x555
     jbd2__journal_start+0xb4/0x237
     __ext4_journal_start_sb+0x108/0x17e
     ext4_dirty_inode+0x32/0x61
     __mark_inode_dirty+0x16b/0x60c
     iput+0x11e/0x274
     __dentry_kill+0x148/0x1b8
     shrink_dentry_list+0x274/0x44a
     prune_dcache_sb+0x4a/0x55
     super_cache_scan+0xfc/0x176
     shrink_slab.part.14.constprop.25+0x2a2/0x4d3
     shrink_zone+0x74/0x140
     kswapd+0x6b7/0x930
     kthread+0x107/0x10f
     ret_from_fork+0x3f/0x70
  irq event stamp: 138297
  hardirqs last  enabled at (138297):  debug_check_no_locks_freed+0x113/0x12f
  hardirqs last disabled at (138296):  debug_check_no_locks_freed+0x33/0x12f
  softirqs last  enabled at (137818):  __do_softirq+0x2d3/0x3e9
  softirqs last disabled at (137813):  irq_exit+0x41/0x95

               other info that might help us debug this:
   Possible unsafe locking scenario:
         CPU0
         ----
    lock(jbd2_handle);
    <Interrupt>
      lock(jbd2_handle);

                *** DEADLOCK ***
  5 locks held by git/20158:
   #0:  (sb_writers#7){.+.+.+}, at: [<ffffffff81155411>] mnt_want_write+0x24/0x4b
   #1:  (&type->i_mutex_dir_key#2/1){+.+.+.}, at: [<ffffffff81145087>] lock_rename+0xd9/0xe3
   #2:  (&sb->s_type->i_mutex_key#11){+.+.+.}, at: [<ffffffff8114f8e2>] lock_two_nondirectories+0x3f/0x6b
   #3:  (&sb->s_type->i_mutex_key#11/4){+.+.+.}, at: [<ffffffff8114f909>] lock_two_nondirectories+0x66/0x6b
   #4:  (jbd2_handle){+.+.?.}, at: [<ffffffff811e31db>] start_this_handle+0x4ca/0x555

               stack backtrace:
  CPU: 2 PID: 20158 Comm: git Not tainted 4.1.0-rc7-next-20150615-dbg-00016-g8bdf555-dirty #211
  Call Trace:
    dump_stack+0x4c/0x6e
    mark_lock+0x384/0x56d
    mark_held_locks+0x5f/0x76
    lockdep_trace_alloc+0xb2/0xb5
    kmem_cache_alloc_trace+0x32/0x1e2
    zcomp_strm_alloc+0x25/0x73 [zram]
    zcomp_strm_multi_find+0xe7/0x173 [zram]
    zcomp_strm_find+0xc/0xe [zram]
    zram_bvec_rw+0x2ca/0x7e0 [zram]
    zram_make_request+0x1fa/0x301 [zram]
    generic_make_request+0x9c/0xdb
    submit_bio+0xf7/0x120
    ext4_io_submit+0x2e/0x43
    ext4_bio_write_page+0x1b7/0x300
    mpage_submit_page+0x60/0x77
    mpage_map_and_submit_buffers+0x10f/0x21d
    ext4_writepages+0xc8c/0xe1b
    do_writepages+0x23/0x2c
    __filemap_fdatawrite_range+0x84/0x8b
    filemap_flush+0x1c/0x1e
    ext4_alloc_da_blocks+0xb8/0x117
    ext4_rename+0x132/0x6dc
    ? mark_held_locks+0x5f/0x76
    ext4_rename2+0x29/0x2b
    vfs_rename+0x540/0x636
    SyS_renameat2+0x359/0x44d
    SyS_rename+0x1e/0x20
    entry_SYSCALL_64_fastpath+0x12/0x6f

[minchan@kernel.org: add stable mark]
Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Acked-by: Minchan Kim <minchan@kernel.org>
Cc: Kyeongdon Kim <kyeongdon.kim@lge.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/block/zram/zcomp.c     |    4 ++--
 drivers/block/zram/zcomp_lz4.c |    2 +-
 drivers/block/zram/zcomp_lzo.c |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

--- a/drivers/block/zram/zcomp.c
+++ b/drivers/block/zram/zcomp.c
@@ -76,7 +76,7 @@ static void zcomp_strm_free(struct zcomp
  */
 static struct zcomp_strm *zcomp_strm_alloc(struct zcomp *comp)
 {
-	struct zcomp_strm *zstrm = kmalloc(sizeof(*zstrm), GFP_KERNEL);
+	struct zcomp_strm *zstrm = kmalloc(sizeof(*zstrm), GFP_NOIO);
 	if (!zstrm)
 		return NULL;
 
@@ -85,7 +85,7 @@ static struct zcomp_strm *zcomp_strm_all
 	 * allocate 2 pages. 1 for compressed data, plus 1 extra for the
 	 * case when compressed size is larger than the original one
 	 */
-	zstrm->buffer = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, 1);
+	zstrm->buffer = (void *)__get_free_pages(GFP_NOIO | __GFP_ZERO, 1);
 	if (!zstrm->private || !zstrm->buffer) {
 		zcomp_strm_free(comp, zstrm);
 		zstrm = NULL;
--- a/drivers/block/zram/zcomp_lz4.c
+++ b/drivers/block/zram/zcomp_lz4.c
@@ -15,7 +15,7 @@
 
 static void *zcomp_lz4_create(void)
 {
-	return kzalloc(LZ4_MEM_COMPRESS, GFP_KERNEL);
+	return kzalloc(LZ4_MEM_COMPRESS, GFP_NOIO);
 }
 
 static void zcomp_lz4_destroy(void *private)
--- a/drivers/block/zram/zcomp_lzo.c
+++ b/drivers/block/zram/zcomp_lzo.c
@@ -15,7 +15,7 @@
 
 static void *lzo_create(void)
 {
-	return kzalloc(LZO1X_MEM_COMPRESS, GFP_KERNEL);
+	return kzalloc(LZO1X_MEM_COMPRESS, GFP_NOIO);
 }
 
 static void lzo_destroy(void *private)



  parent reply	other threads:[~2016-02-14 22:54 UTC|newest]

Thread overview: 217+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-14 22:20 [PATCH 4.3 000/200] 4.3.6-stable review Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 001/200] crypto: crc32c-pclmul - use .rodata instead of .rotata Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 002/200] crypto: caam - fix non-block aligned hash calculation Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 003/200] f2fs crypto: allocate buffer for decrypting filename Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 004/200] crypto: algif_hash - Only export and import on sockets with data Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 005/200] crypto: qat - dont use userspace pointer Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 006/200] crypto: nx - Fix timing leak in GCM and CCM decryption Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 007/200] crypto: talitos - Fix timing leak in ESP ICV verification Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 008/200] crypto: skcipher - Copy iv from desc even for 0-len walks Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 009/200] crypto: algif_skcipher - Use new skcipher interface Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 010/200] crypto: sun4i-ss - add missing statesize Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 011/200] block: Always check queue limits for cloned requests Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 012/200] dm btree: fix leak of bufio-backed block in btree_split_sibling error path Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 013/200] drivers/base/memory.c: prohibit offlining of memory blocks with missing sections Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 014/200] block: ensure to split after potentially bouncing a bio Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 015/200] NFSv4.1/pnfs: Fixup an lo->plh_block_lgets imbalance in layoutreturn Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 016/200] ocfs2: NFS hangs in __ocfs2_cluster_lock due to race with ocfs2_unblock_lock Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 017/200] HID: usbhid: fix recursive deadlock Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 018/200] ALSA: hda - Implement loopback control switch for Realtek and other codecs Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 019/200] proc: actually make proc_fd_permission() thread-friendly Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 020/200] remoteproc: avoid stack overflow in debugfs file Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 021/200] proc: fix -ESRCH error when writing to /proc/$pid/coredump_filter Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 022/200] mm: slab: only move management objects off-slab for sizes larger than KMALLOC_MIN_SIZE Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 023/200] mm/oom_kill.c: reverse the order of setting TIF_MEMDIE and sending SIGKILL Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 024/200] lib/hexdump.c: truncate output in case of overflow Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 025/200] fs, seqfile: always allow oom killer Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 026/200] memcg: fix thresholds for 32b architectures Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 027/200] mm: hugetlb: fix hugepage memory leak caused by wrong reserve count Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 028/200] mm, vmstat: allow WQ concurrency to discover memory reclaim doesnt make any progress Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 029/200] mm/hugetlbfs: fix bugs in fallocate hole punch of areas with holes Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 030/200] fat: fix fake_offset handling on error path Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 031/200] mm: hugetlb: call huge_pte_alloc() only if ptep is null Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 032/200] kernel/signal.c: unexport sigsuspend() Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 033/200] mm/hugetlb.c: fix resv map memory leak for placeholder entries Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 034/200] ocfs2: fix SGID not inherited issue Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 035/200] ocfs2: fix BUG when calculate new backup super Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 036/200] ocfs2/dlm: ignore cleaning the migration mle that is inuse Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 037/200] ocfs2/dlm: clear refmap bit of recovery lock while doing local recovery cleanup Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 038/200] sh64: fix __NR_fgetxattr Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 039/200] dm: initialize non-blk-mq queue data before queue is used Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 040/200] Revert "dm mpath: fix stalls when handling invalid ioctls" Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 041/200] spi: omap2-mcspi: disable other channels CHCONF_FORCE in prepare_message Greg Kroah-Hartman
2016-02-14 22:50   ` Michael Welling
2016-02-14 23:17     ` Greg Kroah-Hartman
2016-02-15  3:08       ` Michael Welling
2016-02-15 18:15         ` Greg Kroah-Hartman
2016-02-15 18:50           ` Michael Welling
2016-02-15 19:36             ` Greg Kroah-Hartman
2016-02-15 20:02               ` Michael Welling
2016-02-15 11:03     ` Mark Brown
2016-02-15 15:23       ` Michael Welling
2016-02-15 18:13         ` Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 042/200] spi: atmel: Fix DMA-setup for transfers with more than 8 bits per word Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 043/200] spi: ti-qspi: Fix data corruption seen on r/w stress test Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 044/200] spi: fix parent-device reference leak Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 045/200] wlcore/wl12xx: spi: fix oops on firmware load Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 046/200] wlcore/wl12xx: spi: fix NULL pointer dereference (Oops) Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 047/200] spi/spi-xilinx: Fix race condition on last word read Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 048/200] tpm, tpm_crb: fix unaligned read of the command buffer address Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 049/200] vTPM: fix memory allocation flag for rtce buffer at kernel boot Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 050/200] tpm_tis: free irq after probing Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 051/200] TPM: revert the list handling logic fixed in 398a1e7 Greg Kroah-Hartman
2016-02-14 22:20 ` [PATCH 4.3 052/200] integrity: prevent loading untrusted certificates on the IMA trusted keyring Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 053/200] mtd: mtdpart: fix add_mtd_partitions error path Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 054/200] mtd: blkdevs: fix potential deadlock + lockdep warnings Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 055/200] mtd: nand: fix shutdown/reboot for multi-chip systems Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 056/200] mtd: jz4740_nand: fix build on jz4740 after removing gpio.h Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 057/200] mtd: ubi: fixup error correction in do_sync_erase() Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 058/200] mtd: ubi: dont leak e if schedule_erase() fails Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 059/200] PCI: spear: Fix dw_pcie_cfg_read/write() usage Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 060/200] PCI: Set SR-IOV NumVFs to zero after enumeration Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 061/200] PCI: Prevent out of bounds access in numa_node override Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 063/200] PCI: Fix minimum allocation address overwrite Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 064/200] tracing: Update instance_rmdir() to use tracefs_remove_recursive Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 065/200] tracing: Fix setting of start_index in find_next() Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 066/200] tracing/stacktrace: Show entire trace if passed in function not found Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 067/200] tracefs: Fix refcount imbalance in start_creating() Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 068/200] jbd2: fix checkpoint list cleanup Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 069/200] jbd2: Fix unreclaimed pages after truncate in data=journal mode Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 070/200] jbd2: fix null committed data return in undo_access Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 071/200] [PATCH] fix calculation of meta_bg descriptor backups Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 072/200] printk: prevent userland from spoofing kernel messages Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 073/200] parisc: Fixes and cleanups in kernel uapi header files Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 074/200] parisc: Drop unused MADV_xxxK_PAGES flags from asm/mman.h Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 075/200] parisc: Fix syscall restarts Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 076/200] parisc: Fix __ARCH_SI_PREAMBLE_SIZE Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 077/200] xtensa: fixes for configs without loop option Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 078/200] xtensa: fix secondary core boot in SMP Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 079/200] i2c: at91: fix write transfers by clearing pending interrupt first Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 080/200] i2c: at91: manage unexpected RXRDY flag when starting a transfer Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 081/200] i2c: fix wakeup irq parsing Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 082/200] [media] media: i2c: Dont export ir-kbd-i2c module alias Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 084/200] i2c: rk3x: populate correct variable for sda_falling_time Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 085/200] i2c: rcar: disable runtime PM correctly in slave mode Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 086/200] [media] vivid: Fix iteration in driver removal path Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 087/200] [media] v4l2-compat-ioctl32: fix alignment for ARM64 Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 088/200] [media] c8sectpfe: Remove select on CONFIG_FW_LOADER_USER_HELPER_FALLBACK Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 089/200] [media] v4l2-ctrls: arrays are also considered compound controls Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 090/200] [media] media: v4l2-ctrls: Fix 64bit support in get_ctrl() Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 091/200] [media] media: vb2 dma-contig: Fully cache synchronise buffers in prepare and finish Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 092/200] [media] media: vb2 dma-sg: " Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 093/200] [media] media/v4l2-ctrls: fix setting autocluster to manual with VIDIOC_S_CTRL Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 094/200] [media] Revert "[media] ivtv: avoid going past input/audio array" Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 095/200] mm: memcontrol: fix possible memcg leak due to interrupted reclaim Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 096/200] md/raid10: fix data corruption and crash during resync Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 097/200] fix sysvfs symlinks Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 098/200] hrtimer: Handle remaining time proper for TIME_LOW_RES Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 099/200] ALSA: usb-audio: Fix TEAC UD-501/UD-503/NT-503 usb delay Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 100/200] ALSA: usb-audio: Add quirk for Microsoft LifeCam HD-6000 Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 101/200] ALSA: usb-audio: Fix OPPO HA-1 vendor ID Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 102/200] ALSA: usb-audio: Add native DSD support for PS Audio NuWave DAC Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 103/200] ALSA: usb-audio: avoid freeing umidi object twice Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 104/200] ALSA: bebob: Use a signed return type for get_formation_index Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 105/200] ALSA: compress: Disable GET_CODEC_CAPS ioctl for some architectures Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 106/200] ALSA: dummy: Disable switching timer backend via sysfs Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 107/200] ALSA: seq: Fix incorrect sanity check at snd_seq_oss_synth_cleanup() Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 108/200] ALSA: seq: Degrade the error message for too many opens Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 109/200] ALSA: rawmidi: Make snd_rawmidi_transmit() race-free Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 110/200] ALSA: rawmidi: Remove kernel WARNING for NULL user-space buffer check Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 111/200] ALSA: rawmidi: Fix race at copying & updating the position Greg Kroah-Hartman
2016-02-14 22:21 ` [PATCH 4.3 112/200] ALSA: pcm: Fix potential deadlock in OSS emulation Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 113/200] ASoC: dpcm: fix the BE state on hw_free Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 114/200] ALSA: seq: Fix yet another races among ALSA timer accesses Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 115/200] ALSA: seq: Fix race at closing in virmidi driver Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 116/200] ALSA: seq: Fix lockdep warnings due to double mutex locks Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 117/200] ALSA: timer: Code cleanup Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 118/200] ALSA: timer: Fix leftover link at closing Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 119/200] ALSA: timer: Fix link corruption due to double start or stop Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 120/200] ALSA: timer: Fix race at concurrent reads Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 121/200] ALSA: timer: Fix wrong instance passed to slave callbacks Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 122/200] ALSA: timer: Fix race between stop and interrupt Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 123/200] ALSA: hda - Add fixup for Mac Mini 7,1 model Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 124/200] ALSA: hda - Fix static checker warning in patch_hdmi.c Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 125/200] Revert "ALSA: hda - Fix noise on Gigabyte Z170X mobo" Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 126/200] ALSA: hda - Fix speaker output from VAIO AiO machines Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 127/200] ALSA: hda - Fix bad dereference of jack object Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 128/200] ALSA: dummy: Implement timer backend switching more safely Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 129/200] [media] saa7134-alsa: Only frees registered sound cards Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 130/200] ASoC: rt5645: fix the shift bit of IN1 boost Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 131/200] USB: serial: visor: fix crash on detecting device without write_urbs Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 132/200] USB: visor: fix null-deref at probe Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 133/200] usb: hub: do not clear BOS field during reset device Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 134/200] USB: serial: ftdi_sio: add support for Yaesu SCU-18 cable Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 135/200] USB: cp210x: add ID for IAI USB to RS485 adaptor Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 136/200] USB: serial: option: Adding support for Telit LE922 Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 137/200] USB: option: fix Cinterion AHxx enumeration Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 138/200] usb: cdc-acm: handle unlinked urb in acm read callback Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 139/200] usb: cdc-acm: send zero packet for intel 7260 modem Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 140/200] usb: phy: msm: fix error handling in probe Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 141/200] usb: xhci: handle both SSIC ports in PME stuck quirk Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 142/200] usb: xhci: apply XHCI_PME_STUCK_QUIRK to Intel Broxton-M platforms Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 143/200] n_tty: Fix poll() after buffer-limited eof push read Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 144/200] n_tty: Fix unsafe reference to "other" ldisc Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 145/200] tty: Fix GPF in flush_to_ldisc() Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 146/200] tty: Retry failed reopen if tty teardown in-progress Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 147/200] tty: Fix unsafe ldisc reference via ioctl(TIOCGETD) Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 148/200] iommu/io-pgtable-arm: Ensure we free the final level on teardown Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 149/200] arm64: mm: use correct mapping granularity under DEBUG_RODATA Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 150/200] xhci: fix usb2 resume timing and races Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 151/200] crypto: fix test vector for rsa Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 152/200] ext2, ext4: warn when mounting with dax enabled Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 153/200] ext4: Fix handling of extended tv_sec Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 154/200] ext4: fix an endianness bug in ext4_encrypted_zeroout() Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 155/200] ext4: fix an endianness bug in ext4_encrypted_follow_link() Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 156/200] sched: Fix crash in sched_init_numa() Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 157/200] crypto: algif_skcipher - Require setkey before accept(2) Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 158/200] crypto: af_alg - Disallow bind/setkey/... after accept(2) Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 159/200] crypto: af_alg - Fix socket double-free when accept fails Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 160/200] crypto: af_alg - Add nokey compatibility path Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 161/200] crypto: algif_skcipher " Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 162/200] crypto: hash - Add crypto_ahash_has_setkey Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 163/200] crypto: algif_hash - Require setkey before accept(2) Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 164/200] crypto: skcipher - Add crypto_skcipher_has_setkey Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 165/200] crypto: algif_skcipher - Add key check exception for cipher_null Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 166/200] AHCI: Fix softreset failed issue of Port Multiplier Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 167/200] libata: disable forced PORTS_IMPL for >= AHCI 1.3 Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 168/200] ahci: Intel DNV device IDs SATA Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 169/200] crypto: af_alg - Allow af_af_alg_release_parent to be called on nokey path Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 170/200] crypto: algif_hash - Remove custom release parent function Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 171/200] crypto: algif_skcipher " Greg Kroah-Hartman
2016-02-14 22:22 ` [PATCH 4.3 172/200] crypto: af_alg - Forbid bind(2) when nokey child sockets are present Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 173/200] crypto: algif_hash - Fix race condition in hash_check_key Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 174/200] crypto: algif_skcipher - Fix race condition in skcipher_check_key Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 175/200] crypto: crc32c - Fix crc32c soft dependency Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 176/200] crypto: algif_skcipher - Load TX SG list after waiting Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 177/200] crypto: algif_skcipher - sendmsg SG marking is off by one Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 178/200] crypto: caam - make write transactions bufferable on PPC platforms Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 179/200] crypto: chacha20-ssse3 - Align stack pointer to 64 bytes Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 180/200] crypto: shash - Fix has_key setting Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 181/200] crypto: algif_hash - wait for crypto_ahash_init() to complete Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 182/200] EVM: Use crypto_memneq() for digest comparisons Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 183/200] crypto: user - lock crypto_alg_list on alg dump Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 184/200] crypto: algif_skcipher - Do not assume that req is unchanged Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 185/200] crypto: algif_skcipher - Do not dereference ctx without socket lock Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 186/200] crypto: algif_skcipher - Do not set MAY_BACKLOG on the async path Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 187/200] crypto: marvell/cesa - fix test in mv_cesa_dev_dma_init() Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 188/200] FS-Cache: Increase reference of parent after registering, netfs success Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 189/200] FS-Cache: Dont override netfss primary_index if registering failed Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 190/200] FS-Cache: Handle a write to the page immediately beyond the EOF marker Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 192/200] rtlwifi: rtl8821ae: Fix lockups on boot Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 193/200] HID: multitouch: Fetch feature reports on demand for Win8 devices Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 194/200] drm/nouveau/pmu: do not assume a PMU is present Greg Kroah-Hartman
2016-02-14 22:23 ` Greg Kroah-Hartman [this message]
2016-02-14 22:23 ` [PATCH 4.3 196/200] zram: try vmalloc() after kmalloc() Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 197/200] zram: dont call idr_remove() from zram_remove() Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 198/200] zsmalloc: fix migrate_zspage-zs_free race condition Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 199/200] fs/pipe.c: return error code rather than 0 in pipe_write() Greg Kroah-Hartman
2016-02-14 22:23 ` [PATCH 4.3 200/200] binfmt_elf: Dont clobber passed executables file header Greg Kroah-Hartman
2016-02-15  0:47 ` [PATCH 4.3 000/200] 4.3.6-stable review Guenter Roeck
2016-02-15  0:56   ` Greg Kroah-Hartman
2016-02-15 15:16 ` Shuah Khan
2016-02-15 17:11   ` Shuah Khan
2016-02-17 20:39     ` Greg Kroah-Hartman
2016-02-17 20:41       ` Shuah Khan
2016-02-18  3:14         ` Shuah Khan
2016-02-19 22:25           ` Greg Kroah-Hartman
2016-02-15 15:48 ` Guenter Roeck

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=20160214222224.288288440@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=akpm@linux-foundation.org \
    --cc=kyeongdon.kim@lge.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=minchan@kernel.org \
    --cc=sergey.senozhatsky@gmail.com \
    --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).