public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Ben Hutchings <ben@decadent.org.uk>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: akpm@linux-foundation.org,
	"Willem de Bruijn" <willemb@google.com>,
	"David S. Miller" <davem@davemloft.net>,
	"Eric Dumazet" <edumazet@google.com>,
	"Dmitry Vyukov" <dvyukov@google.com>
Subject: [PATCH 3.16 358/370] tun: read vnet_hdr_sz once
Date: Fri, 10 Mar 2017 11:46:23 +0000	[thread overview]
Message-ID: <lsq.1489146383.343518196@decadent.org.uk> (raw)
In-Reply-To: <lsq.1489146380.780052105@decadent.org.uk>

3.16.42-rc1 review patch.  If anyone has any objections, please let me know.

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

From: Willem de Bruijn <willemb@google.com>

[ Upstream commit e1edab87faf6ca30cd137e0795bc73aa9a9a22ec ]

When IFF_VNET_HDR is enabled, a virtio_net header must precede data.
Data length is verified to be greater than or equal to expected header
length tun->vnet_hdr_sz before copying.

Read this value once and cache locally, as it can be updated between
the test and use (TOCTOU).

Signed-off-by: Willem de Bruijn <willemb@google.com>
Reported-by: Dmitry Vyukov <dvyukov@google.com>
CC: Eric Dumazet <edumazet@google.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
[bwh: Backported to 3.16:
 - Use ACCESS_ONCE() instead of READ_ONCE()
 - Adjust context]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
 drivers/net/tun.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -1037,9 +1037,11 @@ static ssize_t tun_get_user(struct tun_s
 	}
 
 	if (tun->flags & TUN_VNET_HDR) {
-		if (len < tun->vnet_hdr_sz)
+		int vnet_hdr_sz = ACCESS_ONCE(tun->vnet_hdr_sz);
+
+		if (len < vnet_hdr_sz)
 			return -EINVAL;
-		len -= tun->vnet_hdr_sz;
+		len -= vnet_hdr_sz;
 
 		if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
 			return -EFAULT;
@@ -1050,7 +1052,7 @@ static ssize_t tun_get_user(struct tun_s
 
 		if (gso.hdr_len > len)
 			return -EINVAL;
-		offset += tun->vnet_hdr_sz;
+		offset += vnet_hdr_sz;
 	}
 
 	if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
@@ -1233,7 +1235,7 @@ static ssize_t tun_put_user(struct tun_s
 		vlan_hlen = VLAN_HLEN;
 
 	if (tun->flags & TUN_VNET_HDR)
-		vnet_hdr_sz = tun->vnet_hdr_sz;
+		vnet_hdr_sz = ACCESS_ONCE(tun->vnet_hdr_sz);
 
 	if (!(tun->flags & TUN_NO_PI)) {
 		if ((len -= sizeof(pi)) < 0)

  parent reply	other threads:[~2017-03-10 12:30 UTC|newest]

Thread overview: 382+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-10 11:46 [PATCH 3.16 000/370] 3.16.42-rc1 review Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 070/370] mmc: sdhci: Fix recovery from tuning timeout Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 096/370] kconfig/nconf: Fix hang when editing symbol with a long prompt Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 024/370] USB: UHCI: report non-PME wakeup signalling for Intel hardware Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 132/370] net/mlx4: Remove BUG_ON from ICM allocation routine Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 084/370] dm space map metadata: fix 'struct sm_metadata' leak on failed create Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 133/370] ARM: dts: imx31: fix AVIC base address Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 088/370] USB: serial: option: add dlink dwm-158 Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 052/370] [media] staging: media: davinci_vpfe: unlock on error in vpfe_reqbufs() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 160/370] USB: serial: iuu_phoenix: fix NULL-deref at open Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 163/370] USB: serial: mos7720: " Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 134/370] mtd: nand: xway: disable module support Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 049/370] ext4: add sanity checking to count_overhead() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 155/370] USB: serial: cyberjack: fix NULL-deref at open Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 051/370] dm crypt: mark key as invalid until properly loaded Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 136/370] usb: dwc3: ep0: explicitly call dwc3_ep0_prepare_one_trb() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 125/370] clk: renesas: mstp: Support 8-bit registers for r7s72100 Ben Hutchings
2017-03-10 12:10   ` Geert Uytterhoeven
2017-03-11 23:50     ` Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 066/370] block: protect iterate_bdevs() against concurrent close Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 035/370] ext4: fix stack memory corruption with 64k block size Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 078/370] drm/radeon: Hide the HW cursor while it's out of bounds Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 022/370] scsi: megaraid_sas: For SRIOV enabled firmware, ensure VF driver waits for 30secs before reset Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 171/370] USB: serial: pl2303: fix NULL-deref at open Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 097/370] sparc: leon: Fix a retry loop in leon_init_timers() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 181/370] x86/cpu: Fix bootup crashes by sanitizing the argument of the 'clearcpuid=' command-line option Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 152/370] xhci: Handle command completion and timeout race Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 044/370] ssb: Fix error routine when fallback SPROM fails Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 121/370] fs: exec: apply CLOEXEC before changing dumpable task flags Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 028/370] powerpc/ibmebus: Fix device reference leaks in sysfs interface Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 138/370] usb: gadget: composite: Test get_alt() presence instead of set_alt() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 111/370] IB/multicast: Check ib_find_pkey() return value Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 092/370] fgraph: Handle a case where a tracer ignores set_graph_notrace Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 073/370] CIFS: Fix a possible memory corruption in push locks Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 154/370] usb: xhci: apply XHCI_PME_STUCK_QUIRK to Intel Apollo Lake Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 006/370] crypto: arm64/aes-neon - fix for big endian Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 059/370] thermal: hwmon: Properly report critical temperature in sysfs Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 005/370] crypto: arm64/aes-ccm-ce: fix for big endian Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 153/370] usb: xhci: hold lock over xhci_abort_cmd_ring() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 075/370] ALSA: hda - Add inverted internal mic for Asus Aspire 4830T Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 169/370] USB: serial: omninet: fix NULL-derefs at open and disconnect Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 142/370] USB: gadgetfs: fix use-after-free bug Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 098/370] s390/vmlogrdr: fix IUCV buffer allocation Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 187/370] selftests: do not require bash to run netsocktests testcase Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 102/370] fs/notify/inode_mark.c: use list_next_entry in fsnotify_unmount_inodes Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 130/370] net/mlx4_core: Use-after-free causes a resource leak in flow-steering detach Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 166/370] USB: serial: mos7720: fix parallel probe Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 149/370] xhci: free xhci virtual devices with leaf nodes first Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 050/370] KVM: PPC: Book3S HV: Save/restore XER in checkpointed register state Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 026/370] crypto: caam - fix AEAD givenc descriptors Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 143/370] USB: gadgetfs: fix checks of wTotalLength in config descriptors Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 082/370] hotplug: Make register and unregister notifier API symmetric Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 010/370] [media] ite-cir: initialize use_demodulator before using it Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 087/370] USB: serial: option: add support for Telit LE922A PIDs 0x1040, 0x1041 Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 141/370] USB: gadgetfs: fix unbounded memory allocation bug Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 188/370] HID: hid-cypress: validate length of report Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 055/370] f2fs: set ->owner for debugfs status file's file_operations Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 162/370] USB: serial: kobil_sct: fix NULL-deref in write Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 183/370] usb: musb: Fix trying to free already-free IRQ 4 Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 176/370] iommu/amd: Fix the left value check of cmd buffer Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 131/370] net/mlx4_en: Fix bad WQE issue Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 033/370] dm rq: fix a race condition in rq_completed() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 002/370] crypto: arm64/ghash-ce - fix for big endian Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 068/370] xfs: set AGI buffer type in xlog_recover_clear_agi_bucket Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 020/370] cris: Only build flash rescue image if CONFIG_ETRAX_AXISFLASHMAP is selected Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 029/370] powerpc/ibmebus: Fix further device reference leaks Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 086/370] ALSA: usb-audio: Add QuickCam Communicate Deluxe/S7500 to volume_control_quirks Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 089/370] cfg80211/mac80211: fix BSS leaks when abandoning assoc attempts Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 101/370] libceph: verify authorize reply on connect Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 009/370] perf trace: Use the syscall raw_syscalls:sys_enter timestamp Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 015/370] usb: dwc3: gadget: set PCM1 field of isochronous-first TRBs Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 071/370] USB: cdc-acm: add device id for GW Instek AFG-125 Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 095/370] ext4: return -ENOMEM instead of success Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 021/370] xfs: fix up xfs_swap_extent_forks inline extent handling Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 060/370] USB: serial: kl5kusb105: fix open error path Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 037/370] IB/mlx5: Put non zero value in max_ah Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 119/370] NFSv4.1: nfs4_fl_prepare_ds must be careful about reporting success Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 150/370] usb: xhci: fix possible wild pointer Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 129/370] net: stmmac: Fix error path after register_netdev move Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 115/370] scsi: avoid a permanent stop of the scsi device's request queue Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 128/370] net: stmmac: Fix race between stmmac_drv_probe and stmmac_open Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 003/370] crypto: arm64/sha1-ce - fix for big endian Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 165/370] USB: serial: mos7720: fix parport use-after-free on probe errors Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 123/370] Input: i8042 - add Pegatron touchpad to noloop table Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 085/370] md: MD_RECOVERY_NEEDED is set for mddev->recovery Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 072/370] CIFS: Fix missing nls unload in smb2_reconnect() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 161/370] USB: serial: keyspan_pda: verify endpoints at probe Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 043/370] scsi: mvsas: fix command_active typo Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 061/370] USB: serial: kl5kusb105: abort on open exception path Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 157/370] USB: serial: io_edgeport: fix NULL-deref at open Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 106/370] Btrfs: delayed-inode: replace root args iff only fs_info used Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 042/370] IB/mlx4: Fix port query for 56Gb Ethernet links Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 173/370] USB: serial: spcp8x5: fix NULL-deref at open Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 174/370] USB: serial: ti_usb_3410_5052: " Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 041/370] IB/mlx4: Put non zero value in max_ah device attribute Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 144/370] ARM: davinci: da850: don't add emac clock to lookup table twice Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 093/370] nfs_write_end(): fix handling of short copies Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 013/370] usb: add helper to extract bits 12:11 of wMaxPacketSize Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 017/370] ARM: dts: imx31: move CCM device node to AIPS2 bus devices Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 158/370] USB: serial: io_ti: fix NULL-deref at open Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 039/370] IB/IPoIB: Remove can't use GFP_NOIO warning Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 030/370] powerpc/pci/rpadlpar: Fix device reference leaks Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 018/370] drm/gma500: Add compat ioctl Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 103/370] fsnotify: Fix possible use-after-free in inode iteration on umount Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 105/370] IB/mlx4: Fix out-of-range array index in destroy qp flow Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 001/370] staging: iio: ad7606: fix improper setting of oversampling pins Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 034/370] ext4: fix mballoc breakage with 64k block size Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 140/370] usb: gadgetfs: restrict upper bound on device configuration size Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 079/370] drm/radeon: add additional pci revision to dpm workaround Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 076/370] ALSA: hda - Add the top speaker pin config for HP Spectre x360 Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 045/370] usb: hub: Fix auto-remount of safely removed or ejected USB-3 devices Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 164/370] USB: serial: mos7720: fix use-after-free on probe errors Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 077/370] ALSA: hda - Gate the mic jack on HP Z1 Gen3 AiO Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 004/370] crypto: arm64/sha2-ce - fix for big endian Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 063/370] powerpc/ps3: Fix system hang with GCC 5 builds Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 178/370] net: systemport: Pad packet before inserting TSB Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 159/370] USB: serial: io_ti: fix another NULL-deref at open Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 179/370] ALSA: hda - Apply asus-mode8 fixup to ASUS X71SL Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 046/370] USB: phy: am335x-control: fix device and of_node leaks Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 182/370] KVM: MIPS: Flush KVM entry code from icache globally Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 053/370] [media] DaVinci-VPFE-Capture: fix error handling Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 090/370] hwmon: (ds620) Fix overflows seen when writing temperature limits Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 116/370] target/iscsi: Fix double free in lio_target_tiqn_addtpg() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 040/370] IB/mlx4: Set traffic class in AH Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 107/370] btrfs: limit async_work allocation and worker func duration Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 008/370] net/sched: em_meta: Fix 'meta vlan' to correctly recognize zero VID frames Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 135/370] usb: dwc3: ep0: add dwc3_ep0_prepare_one_trb() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 114/370] scsi: zfcp: fix rport unblock race with LUN recovery Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 036/370] IB/core: Save QP in ib_flow structure Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 016/370] ARM: dts: imx31: fix clock control module interrupts description Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 031/370] usb: xhci-mem: use passed in GFP flags instead of GFP_KERNEL Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 027/370] ARM: dts: imx6q-cm-fx6: fix fec pinctrl Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 083/370] iw_cxgb4: Fix error return code in c4iw_rdev_open() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 167/370] USB: serial: mos7840: fix NULL-deref at open Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 148/370] btrfs: fix locking when we put back a delayed ref that's too new Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 011/370] perf scripting: Avoid leaking the scripting_context variable Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 025/370] regulator: stw481x-vmmc: fix ages old enable error Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 147/370] btrfs: fix error handling when run_delayed_extent_op fails Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 168/370] USB: serial: mos7840: fix misleading interrupt-URB comment Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 109/370] IB/mad: Fix an array index check Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 056/370] xen/gntdev: Use VM_MIXEDMAP instead of VM_IO to avoid NUMA balancing Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 058/370] md/raid5: limit request size according to implementation limits Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 185/370] usb: storage: unusual_uas: Add JMicron JMS56x to unusual device Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 104/370] IB/mlx4: When no DMFS for IPoIB, don't allow NET_IF QPs Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 064/370] Btrfs: fix tree search logic when replaying directory entry deletes Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 145/370] PM / devfreq: Add proper locking around list_del() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 170/370] USB: serial: oti6858: fix NULL-deref at open Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 108/370] block_dev: don't test bdev->bd_contains when it is not stable Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 137/370] usb: dwc3: gadget: always unmap EP0 requests Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 023/370] PCI: Check for PME in targeted sleep state Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 032/370] ARM: zynq: Reserve correct amount of non-DMA RAM Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 184/370] usb: hub: Move hub_port_disable() to fix warning if PM is disabled Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 080/370] arm/xen: Use alloc_percpu rather than __alloc_percpu Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 069/370] powerpc/boot: Request no dynamic linker for boot wrapper Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 175/370] ALSA: hda - Fix up GPIO for ASUS ROG Ranger Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 180/370] sh_eth: enable RX descriptor word 0 shift on SH7734 Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 074/370] CIFS: Fix a possible memory corruption during reconnect Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 151/370] usb: host: xhci: Fix possible wild pointer when handling abort command Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 139/370] USB: dummy-hcd: fix bug in stop_activity (handle ep0) Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 112/370] scsi: zfcp: fix use-after-"free" in FC ingress path after TMF Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 081/370] clk: clk-wm831x: fix a logic error Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 120/370] drm/i915/dsi: Do not clear DPOUNIT_CLOCK_GATE_DISABLE from vlv_init_display_clock_gating Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 062/370] drivers: base: dma-mapping: Fix typo in dmam_alloc_non_coherent comments Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 118/370] drivers/gpu/drm/ast: Fix infinite loop if read fails Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 156/370] USB: serial: garmin_gps: fix memory leak on failed URB submit Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 126/370] net, sched: fix soft lockup in tc_classify Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 127/370] net: korina: Fix NAPI versus resources freeing Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 057/370] ALSA: usb-audio: Fix bogus error return in snd_usb_create_stream() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 047/370] ext4: fix in-superblock mount options processing Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 094/370] ext4: reject inodes with negative size Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 117/370] i2c: mux: pca954x: fix i2c mux selection caching Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 122/370] powerpc: Fix build warning on 32-bit PPC Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 113/370] scsi: zfcp: do not trace pure benign residual HBA responses at default level Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 099/370] hwmon: (g762) Fix overflows and crash seen when writing limit attributes Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 038/370] IB/mlx5: Wait for all async command completions to complete Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 048/370] ext4: use more strict checks for inodes_per_block on mount Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 177/370] mei: move write cb to completion on credentials failures Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 007/370] crypto: arm64/aes-xts-ce: fix for big endian Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 012/370] usb: gadget: composite: correctly initialize ep->maxpacket Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 172/370] USB: serial: quatech2: fix sleep-while-atomic in close Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 186/370] USB: fix problems with duplicate endpoint addresses Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 054/370] regmap: cache: Remove unused 'blksize' variable Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 100/370] ALSA: hiface: Fix M2Tech hiFace driver sampling rate change Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 146/370] PM / devfreq: Fix the bug of devfreq_add_device when governor is NULL Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 067/370] NFS: Fix a performance regression in readdir Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 065/370] bus: vexpress-config: fix device reference leak Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 019/370] enic: set skb->hash type properly Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 124/370] [media] s5k4ecgx: select CRC32 helper Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 091/370] ftrace/x86_32: Set ftrace_stub to weak to prevent gcc from using short jumps to it Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 110/370] IPoIB: Avoid reading an uninitialized member variable Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 014/370] usb: gadget: composite: always set ep->mult to a sensible value Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 365/370] igmp, mld: Fix memory leak in igmpv3/mld_del_delrec() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 252/370] powerpc: Add missing error check to prom_find_boot_cpu() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 310/370] lib/vsprintf.c: improve sanity check in vsnprintf() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 230/370] ubifs: Fix journal replay wrt. xattr nodes Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 278/370] pegasus: Use heap buffers for all register access Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 263/370] ISDN: eicon: silence misleading array-bounds warning Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 238/370] arm64/ptrace: Reject attempts to set incomplete hardware breakpoint fields Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 212/370] vme: Fix wrong pointer utilization in ca91cx42_slave_get Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 333/370] dccp: do not send reset to already closed sockets Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 355/370] ipv6: pointer math error in ip6_tnl_parse_tlv_enc_lim() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 286/370] target: Fix early transport_generic_handle_tmr abort scenario Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 302/370] drm/radeon: Use mode h/vdisplay fields to hide out of bounds HW cursor Ben Hutchings
2017-03-13  3:35   ` Michel Dänzer
2017-03-14 16:50     ` Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 189/370] tile/ptrace: Preserve previous registers for short regset write Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 347/370] igmp: Make igmp group member RFC 3376 compliant Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 325/370] net: fix sk_mem_reclaim_partial() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 240/370] USB: serial: qcserial: add Dell DW5570 QDL Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 208/370] ocfs2: fix crash caused by stale lvb with fsdlm plugin Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 221/370] i2c: fix kernel memory disclosure in dev interface Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 367/370] kvm: fix page struct leak in handle_vmon Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 293/370] l2tp: do not use udp_ioctl() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 198/370] USB: serial: ch341: reinitialize chip on reconfiguration Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 351/370] qmi_wwan/cdc_ether: add device ID for HP lt2523 (Novatel E371) WWAN card Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 297/370] mmc: core: fix multi-bit bus width without high-speed mode Ben Hutchings
2017-03-10 11:46 ` Ben Hutchings [this message]
2017-03-10 11:46 ` [PATCH 3.16 339/370] ip6_tunnel: disable caching when the traffic class is inherited Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 308/370] irda: Fix lockdep annotations in hashbin_delete() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 295/370] net/llc: avoid BUG_ON() in skb_orphan() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 249/370] iio: dht11: Use usleep_range instead of msleep for start signal Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 327/370] net: avoid sk_forward_alloc overflows Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 194/370] x86/boot: Add missing declaration of string functions Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 226/370] net/mlx4_core: Fix racy CQ (Completion Queue) free Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 266/370] can: bcm: fix hrtimer/tasklet termination in bcm op removal Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 215/370] x86/PCI: Ignore _CRS on Supermicro X8DTH-i/6/iF/6F Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 362/370] xfs: update MAINTAINERS Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 214/370] gro: use min_t() in skb_gro_reset_offset() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 340/370] net: sky2: Fix shutdown crash Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 318/370] udp: prevent skbs lingering in tunnel socket queues Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 210/370] tty/serial: atmel: RS485 half duplex w/DMA: enable RX after TX is done Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 211/370] sysrq: attach sysrq handler correctly for 32-bit kernel Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 233/370] can: c_can_pci: fix null-pointer-deref in c_can_start() - set device pointer Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 274/370] mm, fs: check for fatal signals in do_generic_file_read() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 364/370] mld: do not remove mld souce list info when set link down Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 363/370] igmp: do not remove igmp " Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 257/370] netfilter: nft_log: restrict the log prefix length to 127 Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 276/370] mac80211: Fix adding of mesh vendor IEs Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 199/370] USB: serial: ch341: fix initial modem-control state Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 223/370] net: systemport: Decouple flow control from __bcm_sysport_tx_reclaim Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 359/370] macvtap: read vnet_hdr_size once Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 232/370] selftest/powerpc: Wrong PMC initialized in pmc56_overflow test Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 209/370] mm/hugetlb.c: fix reservation race when freeing surplus pages Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 350/370] ipv6: addrconf: Avoid addrconf_disable_change() using RCU read-side lock Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 193/370] drm/radeon: drop verde dpm quirks Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 312/370] route: do not cache fib route info on local routes with oif Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 207/370] gro: Disable frag0 optimization on IPv6 ext headers Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 361/370] sit: fix a double free on error path Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 328/370] tcp: fix wrong checksum calculation on MTU probing Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 213/370] USB: serial: ch341: fix control-message error handling Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 237/370] arm64/ptrace: Avoid uninitialised struct padding in fpr_set() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 241/370] arm64: avoid returning from bad_mode Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 321/370] ipmr/ip6mr: Initialize the last assert time of mfc entries Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 195/370] USB: ch341: remove redundant close from open error path Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 349/370] tcp: fix tcp_fastopen unaligned access complaints on sparc Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 255/370] ip6_tunnel: must reload ipv6h in ip6ip6_tnl_xmit() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 236/370] arm64/ptrace: Preserve previous registers for short regset write Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 317/370] net: bridge: fix old ioctl unlocked net device walk Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 314/370] sch_dsmark: update backlog as well Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 284/370] ALSA: seq: Fix race at creating a queue Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 345/370] drop_monitor: add missing call to genlmsg_end Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 281/370] catc: Use heap buffer for memory size test Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 259/370] USB: Add quirk for WORLDE easykey.25 MIDI keyboard Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 243/370] nbd: fix use-after-free of rq/bio in the xmit path Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 319/370] ipv6: Skip XFRM lookup if dst_entry in socket cache is valid Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 324/370] bonding: set carrier off for devices created through netlink Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 309/370] sched/cputime: Fix invalid gtime in proc Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 329/370] net: Add netdev all_adj_list refcnt propagation to fix panic Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 311/370] decnet: Do not build routes to devices without decnet private data Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 217/370] mmc: mxs-mmc: Fix additional cycles after transmission stop Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 196/370] USB: ch341: set tty baud speed according to tty struct Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 346/370] drop_monitor: consider inserted data in genlmsg_end Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 283/370] drm/i915: fix use-after-free in page_flip_completed() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 191/370] sh_eth: R8A7740 supports packet shecksumming Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 360/370] mlx4: Invoke softirqs after napi_reschedule Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 197/370] USB: serial: ch341: add register and USB request definitions Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 290/370] ALSA: hda - adding a new NV HDMI/DP codec ID in the driver Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 239/370] net: fix harmonize_features() vs NETIF_F_HIGHDMA Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 229/370] clocksource/exynos_mct: Clear interrupt when cpu is shut down Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 267/370] perf/core: Fix PERF_RECORD_MMAP2 prot/flags for anonymous memory Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 341/370] net/sched: pedit: make sure that offset is valid Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 220/370] KVM: x86: flush pending lapic jump label updates on module unload Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 192/370] ata: sata_mv:- Handle return value of devm_ioremap Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 204/370] USB: serial: ch341: fix baud rate and line-control handling Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 356/370] tcp: fix 0 divide in __tcp_select_window() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 227/370] net/mlx4_core: Fix when to save some qp context flags for dynamic VST to VGT transitions Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 366/370] Revert "KVM: x86: expose MSR_TSC_AUX to userspace" Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 264/370] ARC: [arcompact] handle unaligned access delay slot corner case Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 303/370] vfs: fix uninitialized flags in splice_to_pipe() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 225/370] be2net: fix status check in be_cmd_pmac_add() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 190/370] sh_eth: fix EESIPR values for SH77{34|63} Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 304/370] packet: call fanout_release, while UNREGISTERING a netdev Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 353/370] can: Fix kernel panic at security_sock_rcv_skb Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 294/370] net/sock: Add sock_efree() function Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 301/370] net: xilinx_emaclite: fix freezes due to unordered I/O Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 265/370] parisc: Don't use BITS_PER_LONG in userspace-exported swab.h header Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 275/370] netlabel: out of bound access in cipso_v4_validate() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 202/370] USB: serial: ch341: fix open error handling Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 354/370] ipv6: fix ip6_tnl_parse_tlv_enc_lim() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 222/370] svcrpc: don't leak contexts on PROC_DESTROY Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 244/370] nbd: only set MSG_MORE when we have more to send Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 260/370] drm/i915: Don't leak edid in intel_crt_detect_ddc() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 299/370] [media] siano: make it work again with CONFIG_VMAP_STACK Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 280/370] catc: Combine failure cleanup code in catc_probe() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 320/370] sit: correct IP protocol used in ipip6_err Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 205/370] ARM: 8634/1: hw_breakpoint: blacklist Scorpion CPUs Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 242/370] tcp: initialize max window for a new fastopen socket Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 343/370] netvsc: reduce maximum GSO size Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 270/370] mmc: sdhci: Ignore unexpected CARD_INT interrupts Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 322/370] net: alx: Work around the DMA RX overflow issue Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 256/370] SUNRPC: cleanup ida information when removing sunrpc module Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 323/370] cdc_ncm: workaround for EM7455 "silent" data interface Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 306/370] printk: use rcuidle console tracepoint Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 313/370] sch_htb: update backlog as well Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 287/370] target: Fix COMPARE_AND_WRITE ref leak for non GOOD status Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 289/370] ping: fix a null pointer dereference Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 292/370] xen-netfront: Delete rx_refill_timer in xennet_disconnect_backend() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 369/370] sctp: avoid BUG_ON on sctp_wait_for_sndbuf Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 253/370] USB: serial: option: add device ID for HP lt2523 (Novatel E371) Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 258/370] mm/huge_memory.c: respect FOLL_FORCE/FOLL_COW for thp Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 277/370] ALSA: seq: Don't handle loop timeout at snd_seq_pool_done() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 334/370] dccp: fix out of bound access in dccp_v4_err() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 231/370] qla2xxx: Fix crash due to null pointer access Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 251/370] crypto: arm64/aes-blk - honour iv_out requirement in CBC and CTR modes Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 279/370] rtl8150: Use heap buffers for all register access Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 245/370] ARM: dts: da850-evm: fix read access to SPI flash Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 203/370] USB: serial: ch341: fix resume after reset Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 291/370] scsi: zfcp: fix use-after-free by not tracing WKA port open/close on failed send Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 216/370] xhci: fix deadlock at host remove by running watchdog correctly Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 206/370] gro: Enter slow-path if there is no tailroom Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 234/370] can: ti_hecc: add missing prepare and unprepare of the clock Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 298/370] packet: fix races in fanout_add() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 285/370] target: Use correct SCSI status during EXTENDED_COPY exception Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 248/370] platform/x86: intel_mid_powerbtn: Set IRQ_ONESHOT Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 288/370] btrfs: fix btrfs_compat_ioctl failures on non-compat ioctls Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 357/370] tun: Fix TUN_PKT_STRIP setting Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 219/370] jump_labels: API for flushing deferred jump label updates Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 200/370] USB: serial: ch341: fix open and resume after B0 Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 300/370] net: xilinx_emaclite: fix receive buffer overflow Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 201/370] USB: serial: ch341: fix modem-control and B0 handling Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 268/370] ARM: 8643/3: arm/ptrace: Preserve previous registers for short regset write Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 342/370] net/dccp: fix use-after-free in dccp_invalid_packet Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 228/370] net/mlx4_core: Eliminate warning messages for SRQ_LIMIT under SRIOV Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 262/370] nfs: Fix "Don't increment lock sequence ID after NFS4ERR_MOVED" Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 272/370] svcrpc: fix oops in absence of krb5 module Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 368/370] ipc/shm: Fix shmat mmap nil-page protection Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 247/370] powerpc: Ignore reserved field in DCSR and PVR reads and writes Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 352/370] net: socket: fix recvmmsg not returning error from sock_error Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 331/370] net: clear sk_err_soft in sk_clone_lock() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 348/370] r8152: fix the sw rx checksum is unavailable Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 250/370] crypto: api - Clear CRYPTO_ALG_DEAD bit before registering an alg Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 254/370] nfs: Don't increment lock sequence ID after NFS4ERR_MOVED Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 246/370] powerpc/ptrace: Preserve previous fprs/vsrs on short regset write Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 224/370] netfilter: rpfilter: fix incorrect loopback packet judgment Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 305/370] packet: Do not call fanout_release from atomic contexts Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 336/370] ipv6: dccp: add missing bind_conflict to dccp_ipv6_mapped Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 273/370] net: use a work queue to defer net_disable_timestamp() work Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 271/370] USB: serial: pl2303: add ATEN device ID Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 307/370] Fix missing sanity check in /dev/sg Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 370/370] sctp: deny peeloff operation on asocs with threads sleeping on it Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 344/370] ipv6: handle -EFAULT from skb_copy_bits Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 269/370] drm/nouveau/nv1a,nv1f/disp: fix memory clock rate retrieval Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 296/370] futex: Move futex_init() to core_initcall Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 218/370] ARM: ux500: fix prcmu_is_cpu_in_wfi() calculation Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 315/370] netem: Segment GSO packets on enqueue Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 335/370] ipv6: dccp: fix out of bound access in dccp_v6_err() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 282/370] ARC: [arcompact] brown paper bag bug in unaligned access delay slot fixup Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 326/370] tcp: fix overflow in __tcp_retransmit_skb() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 337/370] sctp: assign assoc_id earlier in __sctp_connect Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 316/370] VSOCK: do not disconnect socket when peer has shutdown SEND only Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 261/370] sysctl: fix proc_doulongvec_ms_jiffies_minmax() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 235/370] ceph: fix bad endianness handling in parse_reply_info_extra Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 338/370] sock: fix sendmmsg for partial sendmsg Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 332/370] net: mangle zero checksum in skb_checksum_help() Ben Hutchings
2017-03-10 11:46 ` [PATCH 3.16 330/370] net: sctp, forbid negative length Ben Hutchings
2017-03-10 12:49 ` [PATCH 3.16 000/370] 3.16.42-rc1 review Guenter Roeck
2017-03-10 13:04   ` Ben Hutchings
2017-03-11 15:15 ` [PATCH 3.16 000/372] 3.16.42-rc2 review Ben Hutchings
2017-03-11 15:15   ` [PATCH 3.16 371/372] TTY: n_hdlc, fix lockdep false positive Ben Hutchings
2017-03-11 15:15   ` [PATCH 3.16 372/372] tty: n_hdlc: get rid of racy n_hdlc.tbuf Ben Hutchings
2017-03-11 16:53   ` [PATCH 3.16 000/372] 3.16.42-rc2 review Ben Hutchings
2017-03-12 18:18   ` 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=lsq.1489146383.343518196@decadent.org.uk \
    --to=ben@decadent.org.uk \
    --cc=akpm@linux-foundation.org \
    --cc=davem@davemloft.net \
    --cc=dvyukov@google.com \
    --cc=edumazet@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=willemb@google.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