stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: jouni.hogander@unikie.com (Jouni Högander)
To: Lukas Bulwahn <lukas.bulwahn@gmail.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	open list <linux-kernel@vger.kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Ben Hutchings <ben.hutchings@codethink.co.uk>,
	linux- stable <stable@vger.kernel.org>,
	Netdev <netdev@vger.kernel.org>,
	Al Viro <viro@zeniv.linux.org.uk>,
	linux-fsdevel@vger.kernel.org, Eric Dumazet <edumazet@google.com>,
	"David S. Miller" <davem@davemloft.net>,
	syzkaller@googlegroups.com
Subject: Re: [PATCH 4.19 000/306] 4.19.87-stable review
Date: Tue, 28 Jan 2020 10:46:29 +0200	[thread overview]
Message-ID: <874kwg2cka.fsf@unikie.com> (raw)
In-Reply-To: <alpine.DEB.2.21.2001272145260.2951@felia> (Lukas Bulwahn's message of "Mon, 27 Jan 2020 22:16:04 +0100 (CET)")

Lukas Bulwahn <lukas.bulwahn@gmail.com> writes:

> On Mon, 27 Jan 2020, Jouni Högander wrote:
>
>> Lukas Bulwahn <lukas.bulwahn@gmail.com> writes:
>> 
>> > On Wed, 22 Jan 2020, Jouni Högander wrote:
>> >
>> >> Greg Kroah-Hartman <gregkh@linuxfoundation.org> writes:
>> >> >> > Now queued up, I'll push out -rc2 versions with this fix.
>> >> >> >
>> >> >> > greg k-h
>> >> >> 
>> >> >> We have also been informed about another regression these two commits
>> >> >> are causing:
>> >> >> 
>> >> >> https://lore.kernel.org/lkml/ace19af4-7cae-babd-bac5-cd3505dcd874@I-love.SAKURA.ne.jp/
>> >> >> 
>> >> >> I suggest to drop these two patches from this queue, and give us a
>> >> >> week to shake out the regressions of the change, and once ready, we
>> >> >> can include the complete set of fixes to stable (probably in a week or
>> >> >> two).
>> >> >
>> >> > Ok, thanks for the information, I've now dropped them from all of the
>> >> > queues that had them in them.
>> >> >
>> >> > greg k-h
>> >> 
>> >> I have now run more extensive Syzkaller testing on following patches:
>> >> 
>> >> cb626bf566eb net-sysfs: Fix reference count leak
>> >> ddd9b5e3e765 net-sysfs: Call dev_hold always in rx_queue_add_kobject
>> >> e0b60903b434 net-sysfs: Call dev_hold always in netdev_queue_add_kobje
>> >> 48a322b6f996 net-sysfs: fix netdev_queue_add_kobject() breakage
>> >> b8eb718348b8 net-sysfs: Fix reference count leak in rx|netdev_queue_add_kobject
>> >> 
>> >> These patches are fixing couple of memory leaks including this one found
>> >> by Syzbot: https://syzkaller.appspot.com/bug?extid=ad8ca40ecd77896d51e2
>> >> 
>> >> I can reproduce these memory leaks in following stable branches: 4.14,
>> >> 4.19, and 5.4.
>> >> 
>> >> These are all now merged into net/master tree and based on my testing
>> >> they are ready to be taken into stable branches as well.
>> >>
>> >
>> > + syzkaller list
>> > Jouni et. al, please drop Linus in further responses; Linus, it was wrong 
>> > to add you to this thread in the first place (reason is explained below)
>> >
>> > Jouni, thanks for investigating.
>> >
>> > It raises the following questions and comments:
>> >
>> > - Does the memory leak NOT appear on 4.9 and earlier LTS branches (or did 
>> > you not check that)? If it does not appear, can you bisect it with the 
>> > reproducer to the commit between 4.14 and 4.9?
>> 
>> I tested and these memory leaks are not reproucible in 4.9 and earlier.
>> 
>> >
>> > - Do the reproducers you found with your syzkaller testing show the same 
>> > behaviour (same bisection) as the reproducers from syzbot?
>> 
>> Yes, they are same.
>> 
>> >
>> > - I fear syzbot's automatic bisection on is wrong, and Linus' commit 
>> > 0e034f5c4bc4 ("iwlwifi: fix mis-merge that breaks the driver") is not to 
>> > blame here; that commit did not cause the memory leak, but fixed some 
>> > unrelated issue that simply confuses syzbot's automatic bisection.
>> >
>> > Just FYI: Dmitry Vyukov's evaluation of the syzbot bisection shows that 
>> > about 50% are wrong, e.g., due to multiple bugs being triggered with one 
>> > reproducer and the difficulty of automatically identifying them of being 
>> > different due to different root causes (despite the smart heuristics of 
>> > syzkaller & syzbot). So, to identify the actual commit on which the memory 
>> > leak first appeared, you need to bisect manually with your own judgement 
>> > if the reported bug stack trace fits to the issue you investigating. Or 
>> > you use syzbot's automatic bisection but then with a reduced kernel config 
>> > that cannot be confused by other issues. You might possibly also hit a 
>> > "beginning of time" in your bisection, where KASAN was simply not 
>> > supported, then the initially causing commit can simply not determined by 
>> > bisection with the reproducer and needs some code inspection and 
>> > archaeology with git. Can you go ahead try to identify the correct commit 
>> > for this issue?
>> 
>> These two commits (that are not in 4.9 and earlier) are intorducing these leaks:
>> 
>> commit e331c9066901dfe40bea4647521b86e9fb9901bb
>> Author: YueHaibing <yuehaibing@huawei.com>
>> Date:   Tue Mar 19 10:16:53 2019 +0800
>> 
>>     net-sysfs: call dev_hold if kobject_init_and_add success
>>     
>>     [ Upstream commit a3e23f719f5c4a38ffb3d30c8d7632a4ed8ccd9e ]
>>     
>>     In netdev_queue_add_kobject and rx_queue_add_kobject,
>>     if sysfs_create_group failed, kobject_put will call
>>     netdev_queue_release to decrease dev refcont, however
>>     dev_hold has not be called. So we will see this while
>>     unregistering dev:
>>     
>>     unregister_netdevice: waiting for bcsh0 to become free. Usage count = -1
>>     
>>     Reported-by: Hulk Robot <hulkci@huawei.com>
>>     Fixes: d0d668371679 ("net: don't decrement kobj reference count on init fail
>> ure")
>>     Signed-off-by: YueHaibing <yuehaibing@huawei.com>
>>     Signed-off-by: David S. Miller <davem@davemloft.net>
>>     Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>> 
>> commit d0d6683716791b2a2761a1bb025c613eb73da6c3
>> Author: stephen hemminger <stephen@networkplumber.org>
>> Date:   Fri Aug 18 13:46:19 2017 -0700
>> 
>>     net: don't decrement kobj reference count on init failure
>>     
>>     If kobject_init_and_add failed, then the failure path would
>>     decrement the reference count of the queue kobject whose reference
>>     count was already zero.
>>     
>>     Fixes: 114cf5802165 ("bql: Byte queue limits")
>>     Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
>>     Signed-off-by: David S. Miller <davem@davemloft.net>
>> 
>
> But, it seems that we now have just a long sequences of fix patches.
>
> This commit from 2011 seems to be the initial buggy one:
>
> commit 114cf5802165ee93e3ab461c9c505cd94a08b800
> Author: Tom Herbert <therbert@google.com>
> Date:   Mon Nov 28 16:33:09 2011 +0000
>
>     bql: Byte queue limits
>
> And then we just have fixes over fixes:
>
> 114cf5802165ee93e3ab461c9c505cd94a08b800
> fixed by d0d6683716791b2a2761a1bb025c613eb73da6c3
> fixed by a3e23f719f5c4a38ffb3d30c8d7632a4ed8ccd9e
> fixed by the sequence of your five patches, mentioned above
>
>
> If that is right, we should be able to find a reproducer with syzkaller on 
> the versions before d0d668371679 ("net: don't decrement kobj reference 
> count on init failure") with fault injection enabled or some manually 
> injected fault by modifying the source code to always fail on init to 
> really trigger the init failure, and see the reference count go below 
> zero.
>
> All further issues should also have reproducers found with syzkaller.
> If we have a good feeling on the reproducers and this series of fixes 
> really fixed the issue now here for all cases, we should suggest to 
> backport all of the fixes to 4.4 and 4.9.
>
> We should NOT just have Greg pick up a subset of the patches and backport 
> them to 4.4 and 4.9, that will likely break more than it fixes.

Yes, this is the case.

>
> Jouni, did you see Greg's bot inform you that he would pick up your latest 
> patch for 4.4 and 4.9? Please respond to those emails to make sure a 
> complete set of patches is picked up, which we tested with all those 
> intermediate reproducers and an extensive syzkaller run hitting the 
> net-sysfs interface (e.g., by configuring the corpus and check
> coverage).

I already responded to not pick these patches into 4.4 and 4.9. 

>
> If you cannot do this testing for 4.4 and 4.9 now quickly (you 
> potentially have less than 24 hours), we should hold those new patches 
> back for 4.4 and 4.9, as none of the fixes seem to be applied at all right 
> now and the users have not complained yet on 4.4 and 4.9.
> Once testing of the whole fix sequence is done, we request to backport all 
> patches at once for 4.4 and 4.9.

If we want to pick whole set including older patches I think I need more
time for identifying which older patches (apart from these two I
identified causing the memory leak) should be taken in and for testing.

>
> Lukas

BR,

Jouni Högander

  reply	other threads:[~2020-01-28  8:46 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 ` [PATCH 4.19 173/306] hfs: " Greg Kroah-Hartman
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 [this message]
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=874kwg2cka.fsf@unikie.com \
    --to=jouni.hogander@unikie.com \
    --cc=akpm@linux-foundation.org \
    --cc=ben.hutchings@codethink.co.uk \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lukas.bulwahn@gmail.com \
    --cc=netdev@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=syzkaller@googlegroups.com \
    --cc=viro@zeniv.linux.org.uk \
    /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).