From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Filipe Manana <fdmanana@suse.com>,
David Sterba <dsterba@suse.com>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 004/149] Btrfs: fix inode cache block reserve leak on failure to allocate data space
Date: Mon, 4 Nov 2019 22:43:17 +0100 [thread overview]
Message-ID: <20191104212128.504168524@linuxfoundation.org> (raw)
In-Reply-To: <20191104212126.090054740@linuxfoundation.org>
From: Filipe Manana <fdmanana@suse.com>
[ Upstream commit 29d47d00e0ae61668ee0c5d90bef2893c8abbafa ]
If we failed to allocate the data extent(s) for the inode space cache, we
were bailing out without releasing the previously reserved metadata. This
was triggering the following warnings when unmounting a filesystem:
$ cat -n fs/btrfs/inode.c
(...)
9268 void btrfs_destroy_inode(struct inode *inode)
9269 {
(...)
9276 WARN_ON(BTRFS_I(inode)->block_rsv.reserved);
9277 WARN_ON(BTRFS_I(inode)->block_rsv.size);
(...)
9281 WARN_ON(BTRFS_I(inode)->csum_bytes);
9282 WARN_ON(BTRFS_I(inode)->defrag_bytes);
(...)
Several fstests test cases triggered this often, such as generic/083,
generic/102, generic/172, generic/269 and generic/300 at least, producing
stack traces like the following in dmesg/syslog:
[82039.079546] WARNING: CPU: 2 PID: 13167 at fs/btrfs/inode.c:9276 btrfs_destroy_inode+0x203/0x270 [btrfs]
(...)
[82039.081543] CPU: 2 PID: 13167 Comm: umount Tainted: G W 5.2.0-rc4-btrfs-next-50 #1
[82039.081912] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.11.2-0-gf9626ccb91-prebuilt.qemu-project.org 04/01/2014
[82039.082673] RIP: 0010:btrfs_destroy_inode+0x203/0x270 [btrfs]
(...)
[82039.083913] RSP: 0018:ffffac0b426a7d30 EFLAGS: 00010206
[82039.084320] RAX: ffff8ddf77691158 RBX: ffff8dde29b34660 RCX: 0000000000000002
[82039.084736] RDX: 0000000000000000 RSI: 0000000000000001 RDI: ffff8dde29b34660
[82039.085156] RBP: ffff8ddf5fbec000 R08: 0000000000000000 R09: 0000000000000000
[82039.085578] R10: ffffac0b426a7c90 R11: ffffffffb9aad768 R12: ffffac0b426a7db0
[82039.086000] R13: ffff8ddf5fbec0a0 R14: dead000000000100 R15: 0000000000000000
[82039.086416] FS: 00007f8db96d12c0(0000) GS:ffff8de036b00000(0000) knlGS:0000000000000000
[82039.086837] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[82039.087253] CR2: 0000000001416108 CR3: 00000002315cc001 CR4: 00000000003606e0
[82039.087672] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[82039.088089] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[82039.088504] Call Trace:
[82039.088918] destroy_inode+0x3b/0x70
[82039.089340] btrfs_free_fs_root+0x16/0xa0 [btrfs]
[82039.089768] btrfs_free_fs_roots+0xd8/0x160 [btrfs]
[82039.090183] ? wait_for_completion+0x65/0x1a0
[82039.090607] close_ctree+0x172/0x370 [btrfs]
[82039.091021] generic_shutdown_super+0x6c/0x110
[82039.091427] kill_anon_super+0xe/0x30
[82039.091832] btrfs_kill_super+0x12/0xa0 [btrfs]
[82039.092233] deactivate_locked_super+0x3a/0x70
[82039.092636] cleanup_mnt+0x3b/0x80
[82039.093039] task_work_run+0x93/0xc0
[82039.093457] exit_to_usermode_loop+0xfa/0x100
[82039.093856] do_syscall_64+0x162/0x1d0
[82039.094244] entry_SYSCALL_64_after_hwframe+0x49/0xbe
[82039.094634] RIP: 0033:0x7f8db8fbab37
(...)
[82039.095876] RSP: 002b:00007ffdce35b468 EFLAGS: 00000246 ORIG_RAX: 00000000000000a6
[82039.096290] RAX: 0000000000000000 RBX: 0000560d20b00060 RCX: 00007f8db8fbab37
[82039.096700] RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000560d20b00240
[82039.097110] RBP: 0000560d20b00240 R08: 0000560d20b00270 R09: 0000000000000015
[82039.097522] R10: 00000000000006b4 R11: 0000000000000246 R12: 00007f8db94bce64
[82039.097937] R13: 0000000000000000 R14: 0000000000000000 R15: 00007ffdce35b6f0
[82039.098350] irq event stamp: 0
[82039.098750] hardirqs last enabled at (0): [<0000000000000000>] 0x0
[82039.099150] hardirqs last disabled at (0): [<ffffffffb7884ff2>] copy_process.part.33+0x7f2/0x1f00
[82039.099545] softirqs last enabled at (0): [<ffffffffb7884ff2>] copy_process.part.33+0x7f2/0x1f00
[82039.099925] softirqs last disabled at (0): [<0000000000000000>] 0x0
[82039.100292] ---[ end trace f2521afa616ddccc ]---
[82039.100707] WARNING: CPU: 2 PID: 13167 at fs/btrfs/inode.c:9277 btrfs_destroy_inode+0x1ac/0x270 [btrfs]
(...)
[82039.103050] CPU: 2 PID: 13167 Comm: umount Tainted: G W 5.2.0-rc4-btrfs-next-50 #1
[82039.103428] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.11.2-0-gf9626ccb91-prebuilt.qemu-project.org 04/01/2014
[82039.104203] RIP: 0010:btrfs_destroy_inode+0x1ac/0x270 [btrfs]
(...)
[82039.105461] RSP: 0018:ffffac0b426a7d30 EFLAGS: 00010206
[82039.105866] RAX: ffff8ddf77691158 RBX: ffff8dde29b34660 RCX: 0000000000000002
[82039.106270] RDX: 0000000000000000 RSI: 0000000000000001 RDI: ffff8dde29b34660
[82039.106673] RBP: ffff8ddf5fbec000 R08: 0000000000000000 R09: 0000000000000000
[82039.107078] R10: ffffac0b426a7c90 R11: ffffffffb9aad768 R12: ffffac0b426a7db0
[82039.107487] R13: ffff8ddf5fbec0a0 R14: dead000000000100 R15: 0000000000000000
[82039.107894] FS: 00007f8db96d12c0(0000) GS:ffff8de036b00000(0000) knlGS:0000000000000000
[82039.108309] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[82039.108723] CR2: 0000000001416108 CR3: 00000002315cc001 CR4: 00000000003606e0
[82039.109146] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[82039.109567] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[82039.109989] Call Trace:
[82039.110405] destroy_inode+0x3b/0x70
[82039.110830] btrfs_free_fs_root+0x16/0xa0 [btrfs]
[82039.111257] btrfs_free_fs_roots+0xd8/0x160 [btrfs]
[82039.111675] ? wait_for_completion+0x65/0x1a0
[82039.112101] close_ctree+0x172/0x370 [btrfs]
[82039.112519] generic_shutdown_super+0x6c/0x110
[82039.112988] kill_anon_super+0xe/0x30
[82039.113439] btrfs_kill_super+0x12/0xa0 [btrfs]
[82039.113861] deactivate_locked_super+0x3a/0x70
[82039.114278] cleanup_mnt+0x3b/0x80
[82039.114685] task_work_run+0x93/0xc0
[82039.115083] exit_to_usermode_loop+0xfa/0x100
[82039.115476] do_syscall_64+0x162/0x1d0
[82039.115863] entry_SYSCALL_64_after_hwframe+0x49/0xbe
[82039.116254] RIP: 0033:0x7f8db8fbab37
(...)
[82039.117463] RSP: 002b:00007ffdce35b468 EFLAGS: 00000246 ORIG_RAX: 00000000000000a6
[82039.117882] RAX: 0000000000000000 RBX: 0000560d20b00060 RCX: 00007f8db8fbab37
[82039.118330] RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000560d20b00240
[82039.118743] RBP: 0000560d20b00240 R08: 0000560d20b00270 R09: 0000000000000015
[82039.119159] R10: 00000000000006b4 R11: 0000000000000246 R12: 00007f8db94bce64
[82039.119574] R13: 0000000000000000 R14: 0000000000000000 R15: 00007ffdce35b6f0
[82039.119987] irq event stamp: 0
[82039.120387] hardirqs last enabled at (0): [<0000000000000000>] 0x0
[82039.120787] hardirqs last disabled at (0): [<ffffffffb7884ff2>] copy_process.part.33+0x7f2/0x1f00
[82039.121182] softirqs last enabled at (0): [<ffffffffb7884ff2>] copy_process.part.33+0x7f2/0x1f00
[82039.121563] softirqs last disabled at (0): [<0000000000000000>] 0x0
[82039.121933] ---[ end trace f2521afa616ddccd ]---
[82039.122353] WARNING: CPU: 2 PID: 13167 at fs/btrfs/inode.c:9278 btrfs_destroy_inode+0x1bc/0x270 [btrfs]
(...)
[82039.124606] CPU: 2 PID: 13167 Comm: umount Tainted: G W 5.2.0-rc4-btrfs-next-50 #1
[82039.125008] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.11.2-0-gf9626ccb91-prebuilt.qemu-project.org 04/01/2014
[82039.125801] RIP: 0010:btrfs_destroy_inode+0x1bc/0x270 [btrfs]
(...)
[82039.126998] RSP: 0018:ffffac0b426a7d30 EFLAGS: 00010202
[82039.127399] RAX: ffff8ddf77691158 RBX: ffff8dde29b34660 RCX: 0000000000000002
[82039.127803] RDX: 0000000000000001 RSI: 0000000000000001 RDI: ffff8dde29b34660
[82039.128206] RBP: ffff8ddf5fbec000 R08: 0000000000000000 R09: 0000000000000000
[82039.128611] R10: ffffac0b426a7c90 R11: ffffffffb9aad768 R12: ffffac0b426a7db0
[82039.129020] R13: ffff8ddf5fbec0a0 R14: dead000000000100 R15: 0000000000000000
[82039.129428] FS: 00007f8db96d12c0(0000) GS:ffff8de036b00000(0000) knlGS:0000000000000000
[82039.129846] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[82039.130261] CR2: 0000000001416108 CR3: 00000002315cc001 CR4: 00000000003606e0
[82039.130684] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[82039.131142] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[82039.131561] Call Trace:
[82039.131990] destroy_inode+0x3b/0x70
[82039.132417] btrfs_free_fs_root+0x16/0xa0 [btrfs]
[82039.132844] btrfs_free_fs_roots+0xd8/0x160 [btrfs]
[82039.133262] ? wait_for_completion+0x65/0x1a0
[82039.133688] close_ctree+0x172/0x370 [btrfs]
[82039.134157] generic_shutdown_super+0x6c/0x110
[82039.134575] kill_anon_super+0xe/0x30
[82039.134997] btrfs_kill_super+0x12/0xa0 [btrfs]
[82039.135415] deactivate_locked_super+0x3a/0x70
[82039.135832] cleanup_mnt+0x3b/0x80
[82039.136239] task_work_run+0x93/0xc0
[82039.136637] exit_to_usermode_loop+0xfa/0x100
[82039.137029] do_syscall_64+0x162/0x1d0
[82039.137418] entry_SYSCALL_64_after_hwframe+0x49/0xbe
[82039.137812] RIP: 0033:0x7f8db8fbab37
(...)
[82039.139059] RSP: 002b:00007ffdce35b468 EFLAGS: 00000246 ORIG_RAX: 00000000000000a6
[82039.139475] RAX: 0000000000000000 RBX: 0000560d20b00060 RCX: 00007f8db8fbab37
[82039.139890] RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000560d20b00240
[82039.140302] RBP: 0000560d20b00240 R08: 0000560d20b00270 R09: 0000000000000015
[82039.140719] R10: 00000000000006b4 R11: 0000000000000246 R12: 00007f8db94bce64
[82039.141138] R13: 0000000000000000 R14: 0000000000000000 R15: 00007ffdce35b6f0
[82039.141597] irq event stamp: 0
[82039.142043] hardirqs last enabled at (0): [<0000000000000000>] 0x0
[82039.142443] hardirqs last disabled at (0): [<ffffffffb7884ff2>] copy_process.part.33+0x7f2/0x1f00
[82039.142839] softirqs last enabled at (0): [<ffffffffb7884ff2>] copy_process.part.33+0x7f2/0x1f00
[82039.143220] softirqs last disabled at (0): [<0000000000000000>] 0x0
[82039.143588] ---[ end trace f2521afa616ddcce ]---
[82039.167472] WARNING: CPU: 3 PID: 13167 at fs/btrfs/extent-tree.c:10120 btrfs_free_block_groups+0x30d/0x460 [btrfs]
(...)
[82039.173800] CPU: 3 PID: 13167 Comm: umount Tainted: G W 5.2.0-rc4-btrfs-next-50 #1
[82039.174847] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.11.2-0-gf9626ccb91-prebuilt.qemu-project.org 04/01/2014
[82039.177031] RIP: 0010:btrfs_free_block_groups+0x30d/0x460 [btrfs]
(...)
[82039.180397] RSP: 0018:ffffac0b426a7dd8 EFLAGS: 00010206
[82039.181574] RAX: ffff8de010a1db40 RBX: ffff8de010a1db40 RCX: 0000000000170014
[82039.182711] RDX: ffff8ddff4380040 RSI: ffff8de010a1da58 RDI: 0000000000000246
[82039.183817] RBP: ffff8ddf5fbec000 R08: 0000000000000000 R09: 0000000000000000
[82039.184925] R10: ffff8de036404380 R11: ffffffffb8a5ea00 R12: ffff8de010a1b2b8
[82039.186090] R13: ffff8de010a1b2b8 R14: 0000000000000000 R15: dead000000000100
[82039.187208] FS: 00007f8db96d12c0(0000) GS:ffff8de036b80000(0000) knlGS:0000000000000000
[82039.188345] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[82039.189481] CR2: 00007fb044005170 CR3: 00000002315cc006 CR4: 00000000003606e0
[82039.190674] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[82039.191829] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[82039.192978] Call Trace:
[82039.194160] close_ctree+0x19a/0x370 [btrfs]
[82039.195315] generic_shutdown_super+0x6c/0x110
[82039.196486] kill_anon_super+0xe/0x30
[82039.197645] btrfs_kill_super+0x12/0xa0 [btrfs]
[82039.198696] deactivate_locked_super+0x3a/0x70
[82039.199619] cleanup_mnt+0x3b/0x80
[82039.200559] task_work_run+0x93/0xc0
[82039.201505] exit_to_usermode_loop+0xfa/0x100
[82039.202436] do_syscall_64+0x162/0x1d0
[82039.203339] entry_SYSCALL_64_after_hwframe+0x49/0xbe
[82039.204091] RIP: 0033:0x7f8db8fbab37
(...)
[82039.206360] RSP: 002b:00007ffdce35b468 EFLAGS: 00000246 ORIG_RAX: 00000000000000a6
[82039.207132] RAX: 0000000000000000 RBX: 0000560d20b00060 RCX: 00007f8db8fbab37
[82039.207906] RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000560d20b00240
[82039.208621] RBP: 0000560d20b00240 R08: 0000560d20b00270 R09: 0000000000000015
[82039.209285] R10: 00000000000006b4 R11: 0000000000000246 R12: 00007f8db94bce64
[82039.209984] R13: 0000000000000000 R14: 0000000000000000 R15: 00007ffdce35b6f0
[82039.210642] irq event stamp: 0
[82039.211306] hardirqs last enabled at (0): [<0000000000000000>] 0x0
[82039.211971] hardirqs last disabled at (0): [<ffffffffb7884ff2>] copy_process.part.33+0x7f2/0x1f00
[82039.212643] softirqs last enabled at (0): [<ffffffffb7884ff2>] copy_process.part.33+0x7f2/0x1f00
[82039.213304] softirqs last disabled at (0): [<0000000000000000>] 0x0
[82039.213875] ---[ end trace f2521afa616ddccf ]---
Fix this by releasing the reserved metadata on failure to allocate data
extent(s) for the inode cache.
Fixes: 69fe2d75dd91d0 ("btrfs: make the delalloc block rsv per inode")
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
fs/btrfs/inode-map.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fs/btrfs/inode-map.c b/fs/btrfs/inode-map.c
index ffca2abf13d0c..0141fc08d317e 100644
--- a/fs/btrfs/inode-map.c
+++ b/fs/btrfs/inode-map.c
@@ -484,6 +484,7 @@ again:
prealloc, prealloc, &alloc_hint);
if (ret) {
btrfs_delalloc_release_extents(BTRFS_I(inode), prealloc, true);
+ btrfs_delalloc_release_metadata(BTRFS_I(inode), prealloc, true);
goto out_put;
}
--
2.20.1
next prev parent reply other threads:[~2019-11-04 21:58 UTC|newest]
Thread overview: 169+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-04 21:43 [PATCH 4.19 000/149] 4.19.82-stable review Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 001/149] zram: fix race between backing_dev_show and backing_dev_store Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 002/149] dm snapshot: introduce account_start_copy() and account_end_copy() Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 003/149] dm snapshot: rework COW throttling to fix deadlock Greg Kroah-Hartman
2019-11-04 21:43 ` Greg Kroah-Hartman [this message]
2019-11-04 21:43 ` [PATCH 4.19 005/149] Btrfs: fix memory leak due to concurrent append writes with fiemap Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 006/149] btrfs: qgroup: Always free PREALLOC META reserve in btrfs_delalloc_release_extents() Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 007/149] btrfs: tracepoints: Fix wrong parameter order for qgroup events Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 008/149] wil6210: fix freeing of rx buffers in EDMA mode Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 009/149] f2fs: flush quota blocks after turnning it off Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 010/149] scsi: lpfc: Fix a duplicate 0711 log message number Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 011/149] sc16is7xx: Fix for "Unexpected interrupt: 8" Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 012/149] powerpc/powernv: hold device_hotplug_lock when calling memtrace_offline_pages() Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 013/149] f2fs: fix to recover inodes i_gc_failures during POR Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 014/149] f2fs: fix to recover inode->i_flags of inode block " Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 015/149] HID: i2c-hid: add Direkt-Tek DTLAPY133-1 to descriptor override Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 016/149] usb: dwc2: fix unbalanced use of external vbus-supply Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 017/149] tools/power turbostat: fix goldmont C-state limit decoding Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 018/149] x86/cpu: Add Atom Tremont (Jacobsville) Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 019/149] drm/msm/dpu: handle failures while initializing displays Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 020/149] bcache: fix input overflow to writeback_rate_minimum Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 021/149] PCI: Fix Switchtec DMA aliasing quirk dmesg noise Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 022/149] Btrfs: fix deadlock on tree root leaf when finding free extent Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 023/149] netfilter: ipset: Make invalid MAC address checks consistent Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 024/149] HID: i2c-hid: Disable runtime PM for LG touchscreen Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 025/149] HID: i2c-hid: Ignore input report if theres no data present on Elan touchpanels Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 026/149] HID: i2c-hid: Add Odys Winbook 13 to descriptor override Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 027/149] platform/x86: Add the VLV ISP PCI ID to atomisp2_pm Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 028/149] platform/x86: Fix config space access for intel_atomisp2_pm Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 029/149] ath10k: assign n_cipher_suites = 11 for WCN3990 to enable WPA3 Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 030/149] clk: boston: unregister clks on failure in clk_boston_setup() Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 031/149] scripts/setlocalversion: Improve -dirty check with git-status --no-optional-locks Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 032/149] staging: mt7621-pinctrl: use pinconf-generic for dt_node_to_map and dt_free_map Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 033/149] HID: Add ASUS T100CHI keyboard dock battery quirks Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 034/149] NFSv4: Ensure that the state manager exits the loop on SIGKILL Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 035/149] HID: steam: fix boot loop with bluetooth firmware Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 036/149] HID: steam: fix deadlock with input devices Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 037/149] samples: bpf: fix: seg fault with NULL pointer arg Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 038/149] usb: dwc3: gadget: early giveback if End Transfer already completed Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 039/149] usb: dwc3: gadget: clear DWC3_EP_TRANSFER_STARTED on cmd complete Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 040/149] ALSA: usb-audio: Cleanup DSD whitelist Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 041/149] usb: handle warm-reset port requests on hub resume Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 042/149] rtc: pcf8523: set xtal load capacitance from DT Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 043/149] arm64: Add MIDR encoding for HiSilicon Taishan CPUs Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 044/149] arm64: kpti: Whitelist HiSilicon Taishan v110 CPUs Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 045/149] mlxsw: spectrum: Set LAG port collector only when active Greg Kroah-Hartman
2019-11-04 21:43 ` [PATCH 4.19 046/149] net: stmmac: Fix NAPI poll in TX path when in multi-queue Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 047/149] scsi: lpfc: Correct localport timeout duration error Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 048/149] CIFS: Respect SMB2 hdr preamble size in read responses Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 049/149] cifs: add credits from unmatched responses/messages Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 050/149] ALSA: hda/realtek - Apply ALC294 hp init also for S4 resume Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 051/149] media: vimc: Remove unused but set variables Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 052/149] ext4: disallow files with EXT4_JOURNAL_DATA_FL from EXT4_IOC_SWAP_BOOT Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 053/149] exec: load_script: Do not exec truncated interpreter path Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 054/149] net: dsa: mv88e6xxx: Release lock while requesting IRQ Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 055/149] PCI/PME: Fix possible use-after-free on remove Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 056/149] drm/amd/display: fix odm combine pipe reset Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 057/149] power: supply: max14656: fix potential use-after-free Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 058/149] iio: adc: meson_saradc: Fix memory allocation order Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 059/149] iio: fix center temperature of bmc150-accel-core Greg Kroah-Hartman
2019-11-06 9:41 ` Pavel Machek
2019-11-06 10:44 ` Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 060/149] libsubcmd: Make _FORTIFY_SOURCE defines dependent on the feature Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 061/149] perf tests: Avoid raising SEGV using an obvious NULL dereference Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 062/149] perf map: Fix overlapped map handling Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 063/149] perf script brstackinsn: Fix recovery from LBR/binary mismatch Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 064/149] perf jevents: Fix period for Intel fixed counters Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 065/149] perf tools: Propagate get_cpuid() error Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 066/149] perf annotate: Propagate perf_env__arch() error Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 067/149] perf annotate: Fix the signedness of failure returns Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 068/149] perf annotate: Propagate the symbol__annotate() error return Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 069/149] perf annotate: Return appropriate error code for allocation failures Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 070/149] staging: rtl8188eu: fix null dereference when kzalloc fails Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 071/149] RDMA/hfi1: Prevent memory leak in sdma_init Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 072/149] RDMA/iwcm: Fix a lock inversion issue Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 073/149] HID: hyperv: Use in-place iterator API in the channel callback Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 074/149] nfs: Fix nfsi->nrequests count error on nfs_inode_remove_request Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 075/149] arm64: ftrace: Ensure synchronisation in PLT setup for Neoverse-N1 #1542419 Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 076/149] tty: serial: owl: Fix the link time qualifier of owl_uart_exit() Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 077/149] tty: n_hdlc: fix build on SPARC Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 078/149] gpio: max77620: Use correct unit for debounce times Greg Kroah-Hartman
2019-11-06 19:01 ` Pavel Machek
2019-11-04 21:44 ` [PATCH 4.19 079/149] fs: cifs: mute -Wunused-const-variable message Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 080/149] serial: mctrl_gpio: Check for NULL pointer Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 081/149] efi/cper: Fix endianness of PCIe class code Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 082/149] efi/x86: Do not clean dummy variable in kexec path Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 083/149] MIPS: include: Mark __cmpxchg as __always_inline Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 084/149] x86/xen: Return from panic notifier Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 085/149] ocfs2: clear zero in unaligned direct IO Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 086/149] fs: ocfs2: fix possible null-pointer dereferences in ocfs2_xa_prepare_entry() Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 087/149] fs: ocfs2: fix a possible null-pointer dereference in ocfs2_write_end_nolock() Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 088/149] fs: ocfs2: fix a possible null-pointer dereference in ocfs2_info_scan_inode_alloc() Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 089/149] arm64: armv8_deprecated: Checking return value for memory allocation Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 090/149] x86/cpu: Add Comet Lake to the Intel CPU models header Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 091/149] sched/vtime: Fix guest/system mis-accounting on task switch Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 092/149] perf/x86/amd: Change/fix NMI latency mitigation to use a timestamp Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 093/149] drm/amdgpu: fix memory leak Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 094/149] iio: imu: adis16400: release allocated memory on failure Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 095/149] MIPS: include: Mark __xchg as __always_inline Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 096/149] MIPS: fw: sni: Fix out of bounds init of o32 stack Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 097/149] virt: vbox: fix memory leak in hgcm_call_preprocess_linaddr Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 098/149] nbd: fix possible sysfs duplicate warning Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 099/149] NFSv4: Fix leak of clp->cl_acceptor string Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 100/149] s390/uaccess: avoid (false positive) compiler warnings Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 101/149] tracing: Initialize iter->seq after zeroing in tracing_read_pipe() Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 102/149] ARM: 8914/1: NOMMU: Fix exc_ret for XIP Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 103/149] ALSA: hda/realtek: Reduce the Headphone static noise on XPS 9350/9360 Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 104/149] iwlwifi: exclude GEO SAR support for 3168 Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 105/149] nbd: verify socket is supported during setup Greg Kroah-Hartman
2019-11-04 21:44 ` [PATCH 4.19 106/149] USB: legousbtower: fix a signedness bug in tower_probe() Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 107/149] thunderbolt: Use 32-bit writes when writing ring producer/consumer Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 108/149] ath6kl: fix a NULL-ptr-deref bug in ath6kl_usb_alloc_urb_from_pipe() Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 109/149] fuse: flush dirty data/metadata before non-truncate setattr Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 110/149] fuse: truncate pending writes on O_TRUNC Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 111/149] ALSA: bebob: Fix prototype of helper function to return negative value Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 112/149] ALSA: hda/realtek - Fix 2 front mics of codec 0x623 Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 113/149] ALSA: hda/realtek - Add support for ALC623 Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 114/149] UAS: Revert commit 3ae62a42090f ("UAS: fix alignment of scatter/gather segments") Greg Kroah-Hartman
2019-11-05 14:36 ` Oliver Neukum
2019-11-05 15:09 ` Alan Stern
2019-11-05 15:41 ` Oliver Neukum
2019-11-05 16:38 ` Greg Kroah-Hartman
2019-11-07 11:32 ` Oliver Neukum
2019-11-08 7:23 ` Greg Kroah-Hartman
2019-11-08 15:35 ` Alan Stern
2019-11-10 14:27 ` Oliver Neukum
2019-11-10 15:34 ` Alan Stern
2019-11-11 9:36 ` Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 115/149] USB: gadget: Reject endpoints with 0 maxpacket value Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 116/149] usb-storage: Revert commit 747668dbc061 ("usb-storage: Set virt_boundary_mask to avoid SG overflows") Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 117/149] USB: ldusb: fix ring-buffer locking Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 118/149] USB: ldusb: fix control-message timeout Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 119/149] usb: xhci: fix __le32/__le64 accessors in debugfs code Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 120/149] USB: serial: whiteheat: fix potential slab corruption Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 121/149] USB: serial: whiteheat: fix line-speed endianness Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 122/149] scsi: target: cxgbit: Fix cxgbit_fw4_ack() Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 123/149] HID: i2c-hid: add Trekstor Primebook C11B to descriptor override Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 124/149] HID: Fix assumption that devices have inputs Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 125/149] HID: fix error message in hid_open_report() Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 126/149] nl80211: fix validation of mesh path nexthop Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 127/149] s390/cmm: fix information leak in cmm_timeout_handler() Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 128/149] s390/idle: fix cpu idle time calculation Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 129/149] arm64: Ensure VM_WRITE|VM_SHARED ptes are clean by default Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 130/149] rtlwifi: Fix potential overflow on P2P code Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 131/149] dmaengine: qcom: bam_dma: Fix resource leak Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 132/149] dmaengine: cppi41: Fix cppi41_dma_prep_slave_sg() when idle Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 133/149] drm/amdgpu/powerplay/vega10: allow undervolting in p7 Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 134/149] NFS: Fix an RCU lock leak in nfs4_refresh_delegation_stateid() Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 135/149] batman-adv: Avoid free/alloc race when handling OGM buffer Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 136/149] llc: fix sk_buff leak in llc_sap_state_process() Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 137/149] llc: fix sk_buff leak in llc_conn_service() Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 138/149] rxrpc: Fix call ref leak Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 139/149] rxrpc: rxrpc_peer needs to hold a ref on the rxrpc_local record Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 140/149] rxrpc: Fix trace-after-put looking at the put peer record Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 141/149] NFC: pn533: fix use-after-free and memleaks Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 142/149] bonding: fix potential NULL deref in bond_update_slave_arr Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 143/149] net: usb: sr9800: fix uninitialized local variable Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 144/149] sch_netem: fix rcu splat in netem_enqueue() Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 145/149] ALSA: timer: Simplify error path in snd_timer_open() Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 146/149] ALSA: timer: Fix mutex deadlock at releasing card Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 147/149] ALSA: usb-audio: DSD auto-detection for Playback Designs Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 148/149] ALSA: usb-audio: Update DSD support quirks for Oppo and Rotel Greg Kroah-Hartman
2019-11-04 21:45 ` [PATCH 4.19 149/149] ALSA: usb-audio: Add DSD support for Gustard U16/X26 USB Interface Greg Kroah-Hartman
2019-11-05 5:36 ` [PATCH 4.19 000/149] 4.19.82-stable review kernelci.org bot
2019-11-05 6:14 ` Naresh Kamboju
2019-11-05 14:25 ` Guenter Roeck
2019-11-05 16:52 ` shuah
2019-11-05 23:46 ` Jon Hunter
2019-11-06 10:49 ` 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=20191104212128.504168524@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=dsterba@suse.com \
--cc=fdmanana@suse.com \
--cc=linux-kernel@vger.kernel.org \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.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
Powered by JetHome