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, Lin Zhang <xiaolou4617@gmail.com>,
	Stefan Schmidt <stefan@osg.samsung.com>,
	Marcel Holtmann <marcel@holtmann.org>,
	Sasha Levin <alexander.levin@microsoft.com>
Subject: [PATCH 4.4 067/190] net: ieee802154: fix net_device reference release too early
Date: Wed, 11 Apr 2018 20:35:13 +0200	[thread overview]
Message-ID: <20180411183554.241756604@linuxfoundation.org> (raw)
In-Reply-To: <20180411183550.114495991@linuxfoundation.org>

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

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

From: Lin Zhang <xiaolou4617@gmail.com>


[ Upstream commit a611c58b3d42a92e6b23423e166dd17c0c7fffce ]

This patch fixes the kernel oops when release net_device reference in
advance. In function raw_sendmsg(i think the dgram_sendmsg has the same
problem), there is a race condition between dev_put and dev_queue_xmit
when the device is gong that maybe lead to dev_queue_ximt to see
an illegal net_device pointer.

My test kernel is 3.13.0-32 and because i am not have a real 802154
device, so i change lowpan_newlink function to this:

        /* find and hold real wpan device */
        real_dev = dev_get_by_index(src_net, nla_get_u32(tb[IFLA_LINK]));
        if (!real_dev)
                return -ENODEV;
//      if (real_dev->type != ARPHRD_IEEE802154) {
//              dev_put(real_dev);
//              return -EINVAL;
//      }
        lowpan_dev_info(dev)->real_dev = real_dev;
        lowpan_dev_info(dev)->fragment_tag = 0;
        mutex_init(&lowpan_dev_info(dev)->dev_list_mtx);

Also, in order to simulate preempt, i change the raw_sendmsg function
to this:

        skb->dev = dev;
        skb->sk  = sk;
        skb->protocol = htons(ETH_P_IEEE802154);
        dev_put(dev);
        //simulate preempt
        schedule_timeout_uninterruptible(30 * HZ);
        err = dev_queue_xmit(skb);
        if (err > 0)
                err = net_xmit_errno(err);

and this is my userspace test code named test_send_data:

int main(int argc, char **argv)
{
        char buf[127];
        int sockfd;
        sockfd = socket(AF_IEEE802154, SOCK_RAW, 0);
        if (sockfd < 0) {
                printf("create sockfd error: %s\n", strerror(errno));
                return -1;
        }
        send(sockfd, buf, sizeof(buf), 0);
        return 0;
}

This is my test case:

root@zhanglin-x-computer:~/develop/802154# uname -a
Linux zhanglin-x-computer 3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15
03:51:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
root@zhanglin-x-computer:~/develop/802154# ip link add link eth0 name
lowpan0 type lowpan
root@zhanglin-x-computer:~/develop/802154#
//keep the lowpan0 device down
root@zhanglin-x-computer:~/develop/802154# ./test_send_data &
//wait a while
root@zhanglin-x-computer:~/develop/802154# ip link del link dev lowpan0
//the device is gone
//oops
[381.303307] general protection fault: 0000 [#1]SMP
[381.303407] Modules linked in: af_802154 6lowpan bnep rfcomm
bluetooth nls_iso8859_1 snd_hda_codec_hdmi snd_hda_codec_realtek
rts5139(C) snd_hda_intel
snd_had_codec snd_hwdep snd_pcm snd_page_alloc snd_seq_midi
snd_seq_midi_event snd_rawmidi snd_req intel_rapl snd_seq_device
coretemp i915 kvm_intel
kvm snd_timer snd crct10dif_pclmul crc32_pclmul ghash_clmulni_intel
cypted drm_kms_helper drm i2c_algo_bit soundcore video mac_hid
parport_pc ppdev ip parport hid_generic
usbhid hid ahci r8169 mii libahdi
[381.304286] CPU:1 PID: 2524 Commm: 1 Tainted: G C 0 3.13.0-32-generic
[381.304409] Hardware name: Haier Haier DT Computer/Haier DT Codputer,
BIOS FIBT19H02_X64 06/09/2014
[381.304546] tasks: ffff000096965fc0 ti: ffffB0013779c000 task.ti:
ffffB8013779c000
[381.304659] RIP: 0010:[<ffffffff01621fe1>] [<ffffffff81621fe1>]
__dev_queue_ximt+0x61/0x500
[381.304798] RSP: 0018:ffffB8013779dca0 EFLAGS: 00010202
[381.304880] RAX: 272b031d57565351 RBX: 0000000000000000 RCX: ffff8800968f1a00
[381.304987] RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff8800968f1a00
[381.305095] RBP: ffff8e013773dce0 R08: 0000000000000266 R09: 0000000000000004
[381.305202] R10: 0000000000000004 R11: 0000000000000005 R12: ffff88013902e000
[381.305310] R13: 000000000000007f R14: 000000000000007f R15: ffff8800968f1a00
[381.305418] FS:  00007fc57f50f740(0000) GS: ffff88013fc80000(0000)
knlGS: 0000000000000000
[381.305540] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
[381.305627] CR2: 00007fad0841c000 CR3: 00000001368dd000 CR4: 00000000001007e0
[361.905734] Stack:
[381.305768]  00000000002052d0 000000003facb30a ffff88013779dcc0
ffff880137764000
[381.305898]  ffff88013779de70 000000000000007f 000000000000007f
ffff88013902e000
[381.306026]  ffff88013779dcf0 ffffffff81622490 ffff88013779dd39
ffffffffa03af9f1
[381.306155] Call Trace:
[381.306202]  [<ffffffff81622490>] dev_queue_xmit+0x10/0x20
[381.306294]  [<ffffffffa03af9f1>] raw_sendmsg+0x1b1/0x270 [af_802154]
[381.306396]  [<ffffffffa03af054>] ieee802154_sock_sendmsg+0x14/0x20 [af_802154]
[381.306512]  [<ffffffff816079eb>] sock_sendmsg+0x8b/0xc0
[381.306600]  [<ffffffff811d52a5>] ? __d_alloc+0x25/0x180
[381.306687]  [<ffffffff811a1f56>] ? kmem_cache_alloc_trace+0x1c6/0x1f0
[381.306791]  [<ffffffff81607b91>] SYSC_sendto+0x121/0x1c0
[381.306878]  [<ffffffff8109ddf4>] ? vtime_account_user+x54/0x60
[381.306975]  [<ffffffff81020d45>] ? syscall_trace_enter+0x145/0x250
[381.307073]  [<ffffffff816086ae>] SyS_sendto+0xe/0x10
[381.307156]  [<ffffffff8172c87f>] tracesys+0xe1/0xe6
[381.307233] Code: c6 a1 a4 ff 41 8b 57 78 49 8b 47 20 85 d2 48 8b 80
78 07 00 00 75 21 49 8b 57 18 48 85 d2 74 18 48 85 c0 74 13 8b 92 ac
01 00 00 <3b> 50 10 73 08 8b 44 90 14 41 89 47 78 41 f6 84 24 d5 00 00
00
[381.307801] RIP [<ffffffff81621fe1>] _dev_queue_xmit+0x61/0x500
[381.307901]  RSP <ffff88013779dca0>
[381.347512] Kernel panic - not syncing: Fatal exception in interrupt
[381.347747] drm_kms_helper: panic occurred, switching back to text console

In my opinion, there is always exist a chance that the device is gong
before call dev_queue_xmit.

I think the latest kernel is have the same problem and that
dev_put should be behind of the dev_queue_xmit.

Signed-off-by: Lin Zhang <xiaolou4617@gmail.com>
Acked-by: Stefan Schmidt <stefan@osg.samsung.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 net/ieee802154/socket.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

--- a/net/ieee802154/socket.c
+++ b/net/ieee802154/socket.c
@@ -302,12 +302,12 @@ static int raw_sendmsg(struct sock *sk,
 	skb->sk  = sk;
 	skb->protocol = htons(ETH_P_IEEE802154);
 
-	dev_put(dev);
-
 	err = dev_queue_xmit(skb);
 	if (err > 0)
 		err = net_xmit_errno(err);
 
+	dev_put(dev);
+
 	return err ?: size;
 
 out_skb:
@@ -689,12 +689,12 @@ static int dgram_sendmsg(struct sock *sk
 	skb->sk  = sk;
 	skb->protocol = htons(ETH_P_IEEE802154);
 
-	dev_put(dev);
-
 	err = dev_queue_xmit(skb);
 	if (err > 0)
 		err = net_xmit_errno(err);
 
+	dev_put(dev);
+
 	return err ?: size;
 
 out_skb:

  parent reply	other threads:[~2018-04-11 18:47 UTC|newest]

Thread overview: 211+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-11 18:34 [PATCH 4.4 000/190] 4.4.128-stable review Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 001/190] cfg80211: make RATE_INFO_BW_20 the default Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 002/190] md/raid5: make use of spin_lock_irq over local_irq_disable + spin_lock Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 003/190] rtc: snvs: fix an incorrect check of return value Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 004/190] x86/asm: Dont use RBP as a temporary register in csum_partial_copy_generic() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 005/190] NFSv4.1: RECLAIM_COMPLETE must handle NFS4ERR_CONN_NOT_BOUND_TO_SESSION Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 006/190] IB/srpt: Fix abort handling Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 007/190] af_key: Fix slab-out-of-bounds in pfkey_compile_policy Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 008/190] mac80211: bail out from prep_connection() if a reconfig is ongoing Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 009/190] bna: Avoid reading past end of buffer Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 010/190] qlge: " Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 011/190] ipmi_ssif: unlock on allocation failure Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 013/190] net: ethernet: ti: cpsw: adjust cpsw fifos depth for fullduplex flow control Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 014/190] lockd: fix lockd shutdown race Greg Kroah-Hartman
2018-05-15 18:44   ` Ben Hutchings
2018-05-16 19:53     ` J. Bruce Fields
2018-05-17  9:50       ` Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 015/190] drivers/misc/vmw_vmci/vmci_queue_pair.c: fix a couple integer overflow tests Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 016/190] pidns: disable pid allocation if pid_ns_prepare_proc() is failed in alloc_pid() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 017/190] s390: move _text symbol to address higher than zero Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 018/190] net/mlx4_en: Avoid adding steering rules with invalid ring Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 019/190] NFSv4.1: Work around a Linux server bug Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 020/190] CIFS: silence lockdep splat in cifs_relock_file() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 021/190] blk-mq: NVMe 512B/4K+T10 DIF/DIX format returns I/O error on dd with split op Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 022/190] net: qca_spi: Fix alignment issues in rx path Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 023/190] netxen_nic: set rcode to the return status from the call to netxen_issue_cmd Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 024/190] Input: elan_i2c - check if device is there before really probing Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 025/190] Input: elantech - force relative mode on a certain module Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 027/190] vmxnet3: ensure that adapter is in proper state during force_close Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 028/190] SMB2: Fix share type handling Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 029/190] bus: brcmstb_gisb: Use register offsets with writes too Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 030/190] bus: brcmstb_gisb: correct support for 64-bit address output Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 031/190] PowerCap: Fix an error code in powercap_register_zone() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 032/190] ARM: dts: imx53-qsrb: Pulldown PMIC IRQ pin Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 033/190] staging: wlan-ng: prism2mgmt.c: fixed a double endian conversion before calling hfa384x_drvr_setconfig16, also fixes relative sparse warning Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 034/190] x86/tsc: Provide tsc=unstable boot parameter Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 035/190] ARM: dts: imx6qdl-wandboard: Fix audio channel swap Greg Kroah-Hartman
2018-05-15 19:35   ` Ben Hutchings
2018-05-17  9:41     ` Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 036/190] ipv6: avoid dad-failures for addresses with NODAD Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 037/190] async_tx: Fix DMA_PREP_FENCE usage in do_async_gen_syndrome() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 038/190] usb: dwc3: keystone: check return value Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 039/190] btrfs: fix incorrect error return ret being passed to mapping_set_error Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 040/190] ata: libahci: properly propagate return value of platform_get_irq() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 041/190] neighbour: update neigh timestamps iff update is effective Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 042/190] arp: honour gratuitous ARP _replies_ Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 043/190] usb: chipidea: properly handle host or gadget initialization failure Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 044/190] USB: ene_usb6250: fix first command execution Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 045/190] net: x25: fix one potential use-after-free issue Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 046/190] USB: ene_usb6250: fix SCSI residue overwriting Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 047/190] serial: 8250: omap: Disable DMA for console UART Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 048/190] serial: sh-sci: Fix race condition causing garbage during shutdown Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 049/190] sh_eth: Use platform device for printing before register_netdev() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 050/190] scsi: csiostor: fix use after free in csio_hw_use_fwconfig() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 051/190] powerpc/mm: Fix virt_addr_valid() etc. on 64-bit hash Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 052/190] ath5k: fix memory leak on buf on failed eeprom read Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.4 053/190] selftests/powerpc: Fix TM resched DSCR test with some compilers Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 054/190] xfrm: fix state migration copy replay sequence numbers Greg Kroah-Hartman
2018-05-15 20:16   ` Ben Hutchings
2018-05-17  9:41     ` Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 055/190] iio: hi8435: avoid garbage event at first enable Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 056/190] iio: hi8435: cleanup reset gpio Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 057/190] ext4: handle the rest of ext4_mb_load_buddy() ENOMEM errors Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 058/190] md-cluster: fix potential lock issue in add_new_disk Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 059/190] ARM: davinci: da8xx: Create DSP device only when assigned memory Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 060/190] ray_cs: Avoid reading past end of buffer Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 061/190] leds: pca955x: Correct I2C Functionality Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 062/190] sched/numa: Use down_read_trylock() for the mmap_sem Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 063/190] net/mlx5: Tolerate irq_set_affinity_hint() failures Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 064/190] selinux: do not check open permission on sockets Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 065/190] block: fix an error code in add_partition() Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 066/190] mlx5: fix bug reading rss_hash_type from CQE Greg Kroah-Hartman
2018-04-11 18:35 ` Greg Kroah-Hartman [this message]
2018-04-11 18:35 ` [PATCH 4.4 068/190] libceph: NULL deref on crush_decode() error path Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 069/190] netfilter: ctnetlink: fix incorrect nf_ct_put during hash resize Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 070/190] pNFS/flexfiles: missing error code in ff_layout_alloc_lseg() Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 071/190] ASoC: rsnd: SSI PIO adjust to 24bit mode Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 072/190] scsi: bnx2fc: fix race condition in bnx2fc_get_host_stats() Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 073/190] fix race in drivers/char/random.c:get_reg() Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 074/190] ext4: fix off-by-one on max nr_pages in ext4_find_unwritten_pgoff() Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 075/190] tcp: better validation of received ack sequences Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 076/190] net: move somaxconn init from sysctl code Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 077/190] Input: elan_i2c - clear INT before resetting controller Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 078/190] bonding: Dont update slave->link until ready to commit Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 080/190] net: llc: add lock_sock in llc_ui_bind to avoid a race condition Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 081/190] ARM: dts: ls1021a: add "fsl,ls1021a-esdhc" compatible string to esdhc node Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 082/190] thermal: power_allocator: fix one race condition issue for thermal_instances list Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 083/190] perf probe: Add warning message if there is unexpected event name Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 084/190] l2tp: fix missing print session offset info Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 085/190] rds; Reset rs->rs_bound_addr in rds_add_bound() failure path Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 086/190] hwmon: (ina2xx) Make calibration register value fixed Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 087/190] media: videobuf2-core: dont go out of the buffer range Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 088/190] ASoC: Intel: cht_bsw_rt5645: Analog Mic support Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 089/190] scsi: libiscsi: Allow sd_shutdown on bad transport Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 090/190] scsi: mpt3sas: Proper handling of set/clear of "ATA command pending" flag Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 091/190] vfb: fix video mode and line_length being set when loaded Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 092/190] gpio: label descriptors using the device name Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 093/190] ASoC: Intel: sst: Fix the return value of sst_send_byte_stream_mrfld() Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 094/190] wl1251: check return from call to wl1251_acx_arp_ip_filter Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 095/190] hdlcdrv: Fix divide by zero in hdlcdrv_ioctl Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 096/190] ovl: filter trusted xattr for non-admin Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 097/190] powerpc/[booke|4xx]: Dont clobber TCR[WP] when setting TCR[DIE] Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 098/190] dmaengine: imx-sdma: Handle return value of clk_prepare_enable Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 099/190] arm64: futex: Fix undefined behaviour with FUTEX_OP_OPARG_SHIFT usage Greg Kroah-Hartman
2018-05-15 23:15   ` Ben Hutchings
2018-05-17  9:24     ` Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 100/190] net/mlx5: avoid build warning for uniprocessor Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 101/190] cxgb4: FW upgrade fixes Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 102/190] rtc: opal: Handle disabled TPO in opal_get_tpo_time() Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 103/190] rtc: interface: Validate alarm-time before handling rollover Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 104/190] SUNRPC: ensure correct error is reported by xs_tcp_setup_socket() Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 105/190] net: freescale: fix potential null pointer dereference Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 107/190] clk: scpi: fix return type of __scpi_dvfs_round_rate Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 108/190] clk: Fix __set_clk_rates error print-string Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 109/190] powerpc/spufs: Fix coredump of SPU contexts Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 110/190] perf trace: Add mmap alias for s390 Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 111/190] qlcnic: Fix a sleep-in-atomic bug in qlcnic_82xx_hw_write_wx_2M and qlcnic_82xx_hw_read_wx_2M Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 112/190] mISDN: Fix a sleep-in-atomic bug Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.4 113/190] drm/omap: fix tiled buffer stride calculations Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 114/190] cxgb4: fix incorrect cim_la output for T6 Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 115/190] Fix serial console on SNI RM400 machines Greg Kroah-Hartman
2018-05-16  0:15   ` Ben Hutchings
2018-05-17  9:04     ` Greg Kroah-Hartman
2018-05-17  9:26       ` Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 116/190] bio-integrity: Do not allocate integrity context for bio w/o data Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 117/190] skbuff: return -EMSGSIZE in skb_to_sgvec to prevent overflow Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 118/190] sit: reload iphdr in ipip6_rcv Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 119/190] net/mlx4: Fix the check in attaching steering rules Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 120/190] net/mlx4: Check if Granular QoS per VF has been enabled before updating QP qos_vport Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 121/190] perf header: Set proper module name when build-id event found Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 122/190] perf report: Ensure the perf DSO mapping matches what libdw sees Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 123/190] tags: honor COMPILED_SOURCE with apart output directory Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 124/190] e1000e: fix race condition around skb_tstamp_tx() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 125/190] [media] cx25840: fix unchecked return values Greg Kroah-Hartman
2018-05-16  1:10   ` Ben Hutchings
2018-04-11 18:36 ` [PATCH 4.4 126/190] [media] mceusb: sporadic RX truncation corruption fix Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 127/190] net: phy: avoid genphy_aneg_done() for PHYs without clause 22 support Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 128/190] ARM: imx: Add MXC_CPU_IMX6ULL and cpu_is_imx6ull Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 129/190] e1000e: Undo e1000e_pm_freeze if __e1000_shutdown fails Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 130/190] perf/core: Correct event creation with PERF_FORMAT_GROUP Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 131/190] MIPS: mm: fixed mappings: correct initialisation Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 132/190] MIPS: mm: adjust PKMAP location Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 133/190] MIPS: kprobes: flush_insn_slot should flush only if probe initialised Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 134/190] Fix loop device flush before configure v3 Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 135/190] net: emac: fix reset timeout with AR8035 phy Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 136/190] perf tests: Decompress kernel module before objdump Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 137/190] skbuff: only inherit relevant tx_flags Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 138/190] xen: avoid type warning in xchg_xen_ulong Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 139/190] bnx2x: Allow vfs to disable txvlan offload Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 140/190] sctp: fix recursive locking warning in sctp_do_peeloff Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 141/190] sparc64: ldc abort during vds iso boot Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 142/190] iio: magnetometer: st_magn_spi: fix spi_device_id table Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 143/190] Bluetooth: Send HCI Set Event Mask Page 2 command only when needed Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 144/190] cpuidle: dt: Add missing of_node_put() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 145/190] ACPICA: Events: Add runtime stub support for event APIs Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 146/190] ACPICA: Disassembler: Abort on an invalid/unknown AML opcode Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 147/190] s390/dasd: fix hanging safe offline Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 148/190] vxlan: dont migrate permanent fdb entries during learn Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 149/190] bcache: stop writeback thread after detaching Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 150/190] bcache: segregate flash only volume write streams Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 151/190] scsi: libsas: fix memory leak in sas_smp_get_phy_events() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 152/190] scsi: libsas: fix error when getting phy events Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 153/190] scsi: libsas: initialize sas_phy status according to response of DISCOVER Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 154/190] blk-mq: fix kernel oops in blk_mq_tag_idle() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 155/190] tty: n_gsm: Allow ADM response in addition to UA for control dlci Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 156/190] EDAC, mv64x60: Fix an error handling path Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 157/190] cxgb4vf: Fix SGE FL buffer initialization logic for 64K pages Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 158/190] perf tools: Fix copyfile_offset update of output offset Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 159/190] ipsec: check return value of skb_to_sgvec always Greg Kroah-Hartman
2018-05-16 13:58   ` Ben Hutchings
2018-05-17  9:10     ` Greg Kroah-Hartman
2018-05-17 21:08       ` Ben Hutchings
2018-04-11 18:36 ` [PATCH 4.4 160/190] rxrpc: " Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 161/190] virtio_net: " Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 162/190] virtio_net: check return value of skb_to_sgvec in one more location Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 163/190] random: use lockless method of accessing and updating f->reg_idx Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 164/190] futex: Remove requirement for lock_page() in get_futex_key() Greg Kroah-Hartman
2018-05-16 14:38   ` Ben Hutchings
2018-05-16 14:42     ` Ben Hutchings
2018-05-17  9:05       ` Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 165/190] Kbuild: provide a __UNIQUE_ID for clang Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 166/190] arp: fix arp_filter on l3slave devices Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 167/190] net: fix possible out-of-bound read in skb_network_protocol() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 168/190] net/ipv6: Fix route leaking between VRFs Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 169/190] netlink: make sure nladdr has correct size in netlink_connect() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 170/190] net/sched: fix NULL dereference in the error path of tcf_bpf_init() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 171/190] pptp: remove a buggy dst release in pptp_connect() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 172/190] sctp: do not leak kernel memory to user space Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.4 173/190] sctp: sctp_sockaddr_af must check minimal addr length for AF_INET6 Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 174/190] sky2: Increase D3 delay to sky2 stops working after suspend Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 175/190] vhost: correctly remove wait queue during poll failure Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 176/190] vlan: also check phy_driver ts_info for vlans real device Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 177/190] bonding: fix the err path for dev hwaddr sync in bond_enslave Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 178/190] bonding: move dev_mc_sync after master_upper_dev_link " Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 179/190] bonding: process the err returned by dev_set_allmulti properly " Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 180/190] net: fool proof dev_valid_name() Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 181/190] ip_tunnel: better validate user provided tunnel names Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 182/190] ipv6: sit: " Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 183/190] ip6_gre: " Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 184/190] ip6_tunnel: " Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 185/190] vti6: " Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 186/190] r8169: fix setting driver_data after register_netdev Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 187/190] net sched actions: fix dumping which requires several messages to user space Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 188/190] net/ipv6: Increment OUTxxx counters after netfilter hook Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 189/190] ipv6: the entire IPv6 header chain must fit the first fragment Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.4 190/190] vrf: Fix use after free and double free in vrf_finish_output Greg Kroah-Hartman
2018-04-11 20:52 ` [PATCH 4.4 000/190] 4.4.128-stable review Nathan Chancellor
2018-04-12 12:31   ` Greg Kroah-Hartman
2018-04-11 22:50 ` Shuah Khan
2018-04-12 13:07 ` Naresh Kamboju
2018-04-12 13:16 ` 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=20180411183554.241756604@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.levin@microsoft.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcel@holtmann.org \
    --cc=stable@vger.kernel.org \
    --cc=stefan@osg.samsung.com \
    --cc=xiaolou4617@gmail.com \
    /path/to/YOUR_REPLY

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

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