Linux kernel -stable discussions
 help / color / mirror / Atom feed
From: Luis Henriques <luis.henriques@canonical.com>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org,
	kernel-team@lists.ubuntu.com
Cc: Benjamin Poirier <bpoirier@suse.com>,
	"David S. Miller" <davem@davemloft.net>,
	Luis Henriques <luis.henriques@canonical.com>
Subject: [PATCH 3.16.y-ckt 126/142] mld, igmp: Fix reserved tailroom calculation
Date: Tue, 22 Mar 2016 10:40:55 +0000	[thread overview]
Message-ID: <1458643271-4227-127-git-send-email-luis.henriques@canonical.com> (raw)
In-Reply-To: <1458643271-4227-1-git-send-email-luis.henriques@canonical.com>

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

---8<------------------------------------------------------------

From: Benjamin Poirier <bpoirier@suse.com>

commit 1837b2e2bcd23137766555a63867e649c0b637f0 upstream.

The current reserved_tailroom calculation fails to take hlen and tlen into
account.

skb:
[__hlen__|__data____________|__tlen___|__extra__]
^                                               ^
head                                            skb_end_offset

In this representation, hlen + data + tlen is the size passed to alloc_skb.
"extra" is the extra space made available in __alloc_skb because of
rounding up by kmalloc. We can reorder the representation like so:

[__hlen__|__data____________|__extra__|__tlen___]
^                                               ^
head                                            skb_end_offset

The maximum space available for ip headers and payload without
fragmentation is min(mtu, data + extra). Therefore,
reserved_tailroom
= data + extra + tlen - min(mtu, data + extra)
= skb_end_offset - hlen - min(mtu, skb_end_offset - hlen - tlen)
= skb_tailroom - min(mtu, skb_tailroom - tlen) ; after skb_reserve(hlen)

Compare the second line to the current expression:
reserved_tailroom = skb_end_offset - min(mtu, skb_end_offset)
and we can see that hlen and tlen are not taken into account.

The min() in the third line can be expanded into:
if mtu < skb_tailroom - tlen:
	reserved_tailroom = skb_tailroom - mtu
else:
	reserved_tailroom = tlen

Depending on hlen, tlen, mtu and the number of multicast address records,
the current code may output skbs that have less tailroom than
dev->needed_tailroom or it may output more skbs than needed because not all
space available is used.

Fixes: 4c672e4b ("ipv6: mld: fix add_grhead skb_over_panic for devs with large MTUs")
Signed-off-by: Benjamin Poirier <bpoirier@suse.com>
Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
[ luis: backported to 3.16: adjusted context ]
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
---
 include/linux/skbuff.h | 24 ++++++++++++++++++++++++
 net/ipv4/igmp.c        |  3 +--
 net/ipv6/mcast.c       |  3 +--
 3 files changed, 26 insertions(+), 4 deletions(-)

diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index c046cb92172e..629f519224ee 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -1671,6 +1671,30 @@ static inline void skb_reserve(struct sk_buff *skb, int len)
 	skb->tail += len;
 }
 
+/**
+ *	skb_tailroom_reserve - adjust reserved_tailroom
+ *	@skb: buffer to alter
+ *	@mtu: maximum amount of headlen permitted
+ *	@needed_tailroom: minimum amount of reserved_tailroom
+ *
+ *	Set reserved_tailroom so that headlen can be as large as possible but
+ *	not larger than mtu and tailroom cannot be smaller than
+ *	needed_tailroom.
+ *	The required headroom should already have been reserved before using
+ *	this function.
+ */
+static inline void skb_tailroom_reserve(struct sk_buff *skb, unsigned int mtu,
+					unsigned int needed_tailroom)
+{
+	SKB_LINEAR_ASSERT(skb);
+	if (mtu < skb_tailroom(skb) - needed_tailroom)
+		/* use at most mtu */
+		skb->reserved_tailroom = skb_tailroom(skb) - mtu;
+	else
+		/* use up to all available space */
+		skb->reserved_tailroom = needed_tailroom;
+}
+
 static inline void skb_reset_inner_headers(struct sk_buff *skb)
 {
 	skb->inner_mac_header = skb->mac_header;
diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c
index 719c3d707327..727447c17954 100644
--- a/net/ipv4/igmp.c
+++ b/net/ipv4/igmp.c
@@ -352,9 +352,8 @@ static struct sk_buff *igmpv3_newpack(struct net_device *dev, unsigned int mtu)
 	skb_dst_set(skb, &rt->dst);
 	skb->dev = dev;
 
-	skb->reserved_tailroom = skb_end_offset(skb) -
-				 min(mtu, skb_end_offset(skb));
 	skb_reserve(skb, hlen);
+	skb_tailroom_reserve(skb, mtu, tlen);
 
 	skb_reset_network_header(skb);
 	pip = ip_hdr(skb);
diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c
index e33349701050..ad84e7dec433 100644
--- a/net/ipv6/mcast.c
+++ b/net/ipv6/mcast.c
@@ -1571,9 +1571,8 @@ static struct sk_buff *mld_newpack(struct inet6_dev *idev, unsigned int mtu)
 		return NULL;
 
 	skb->priority = TC_PRIO_CONTROL;
-	skb->reserved_tailroom = skb_end_offset(skb) -
-				 min(mtu, skb_end_offset(skb));
 	skb_reserve(skb, hlen);
+	skb_tailroom_reserve(skb, mtu, tlen);
 
 	if (__ipv6_get_lladdr(idev, &addr_buf, IFA_F_TENTATIVE)) {
 		/* <draft-ietf-magma-mld-source-05.txt>:

  parent reply	other threads:[~2016-03-22 10:43 UTC|newest]

Thread overview: 144+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-22 10:38 [3.16.y-ckt stable] Linux 3.16.7-ckt26 stable review Luis Henriques
2016-03-22 10:38 ` [PATCH 3.16.y-ckt 001/142] Revert "firmware: dmi_scan: Fix UUID endianness for SMBIOS >= 2.6" Luis Henriques
2016-03-22 10:38 ` [PATCH 3.16.y-ckt 002/142] iommu/vt-d: Fix 64-bit accesses to 32-bit DMAR_GSTS_REG Luis Henriques
2016-03-22 10:38 ` [PATCH 3.16.y-ckt 003/142] drm/i915/dsi: defend gpio table against out of bounds access Luis Henriques
2016-03-22 10:38 ` [PATCH 3.16.y-ckt 004/142] drm/i915/dsi: don't pass arbitrary data to sideband Luis Henriques
2016-03-22 10:38 ` [PATCH 3.16.y-ckt 005/142] powerpc: Fix dedotify for binutils >= 2.26 Luis Henriques
2016-03-22 10:38 ` [PATCH 3.16.y-ckt 006/142] drm/i915: fix error path in intel_setup_gmbus() Luis Henriques
2016-03-22 10:38 ` [PATCH 3.16.y-ckt 007/142] cifs: fix erroneous return value Luis Henriques
2016-03-22 10:38 ` [PATCH 3.16.y-ckt 008/142] s390/dasd: prevent incorrect length error under z/VM after PAV changes Luis Henriques
2016-03-22 10:38 ` [PATCH 3.16.y-ckt 009/142] s390/dasd: fix refcount for PAV reassignment Luis Henriques
2016-03-22 10:38 ` [PATCH 3.16.y-ckt 010/142] scsi: fix soft lockup in scsi_remove_target() on module removal Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 011/142] ext4: fix potential integer overflow Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 012/142] ext4: don't read blocks from disk after extents being swapped Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 013/142] bio: return EINTR if copying to user space got interrupted Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 014/142] ALSA: seq: Drop superfluous error/debug messages after malloc failures Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 015/142] ALSA: seq: Fix leak of pool buffer at concurrent writes Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 016/142] dmaengine: dw: disable BLOCK IRQs for non-cyclic xfer Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 017/142] tracepoints: Do not trace when cpu is offline Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 018/142] tracing: Fix freak link error caused by branch tracer Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 019/142] ALSA: seq: Fix double port list deletion Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 020/142] drm/radeon: use post-decrement in error handling Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 021/142] drm/qxl: use kmalloc_array to alloc reloc_info in qxl_process_single_command Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 022/142] ext4: fix bh->b_state corruption Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 023/142] ext4: fix crashes in dioread_nolock mode Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 024/142] kernel/resource.c: fix muxed resource handling in __request_region() Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 025/142] x86/entry/compat: Add missing CLAC to entry_INT80_32 Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 026/142] crypto: {blk,giv}cipher: Set has_setkey Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 027/142] nfs: fix nfs_size_to_loff_t Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 028/142] xen/pciback: Check PF instead of VF for PCI_COMMAND_MEMORY Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 029/142] xen/pciback: Save the number of MSI-X entries to be copied later Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 030/142] xen/pcifront: Fix mysterious crashes when NUMA locality information was extracted Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 031/142] usb: dwc3: Fix assignment of EP transfer resources Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 032/142] NFSv4: Fix a dentry leak on alias use Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 033/142] USB: option: add support for SIM7100E Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 034/142] USB: cp210x: add IDs for GE B650V3 and B850V3 boards Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 035/142] USB: option: add "4G LTE usb-modem U901" Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 036/142] hwmon: (ads1015) Handle negative conversion values correctly Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 037/142] drivers: android: correct the size of struct binder_uintptr_t for BC_DEAD_BINDER_DONE Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 038/142] can: ems_usb: Fix possible tx overflow Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 039/142] drm/radeon/pm: adjust display configuration after powerstate Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 040/142] sunrpc/cache: fix off-by-one in qword_get() Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 041/142] KVM: async_pf: do not warn on page allocation failures Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 042/142] tracing: Fix showing function event in available_events Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 043/142] libceph: don't bail early from try_read() when skipping a message Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 044/142] ALSA: hda - Fixing background noise on Dell Inspiron 3162 Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 045/142] KVM: x86: MMU: fix ubsan index-out-of-range warning Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 046/142] ALSA: hda - Fix headset support and noise on HP EliteBook 755 G2 Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 047/142] hpfs: don't truncate the file when delete fails Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 048/142] do_last(): don't let a bogus return value from ->open() et.al. to confuse us Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 049/142] ARM: dts: kirkwood: use unique machine name for ds112 Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 050/142] bonding: Fix ARP monitor validation Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 051/142] af_unix: Don't set err in unix_stream_read_generic unless there was an error Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 052/142] af_unix: Guard against other == sk in unix_dgram_sendmsg Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 053/142] net: phy: bcm7xxx: Fix shadow mode 2 disabling Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 054/142] net/mlx4_en: Count HW buffer overrun only once Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 055/142] net/mlx4_en: Choose time-stamping shift value according to HW frequency Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 056/142] net/mlx4_en: Avoid changing dev->features directly in run-time Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 057/142] unix_diag: fix incorrect sign extension in unix_lookup_by_ino Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 058/142] af_iucv: Validate socket address length in iucv_sock_bind() Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 059/142] net: dp83640: Fix tx timestamp overflow handling Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 060/142] tcp: fix NULL deref in tcp_v4_send_ack() Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 061/142] ipv6/udp: use sticky pktinfo egress ifindex on connect() Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 062/142] net/ipv6: add sysctl option accept_ra_min_hop_limit Luis Henriques
2016-03-24 10:11   ` Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 063/142] net:Add sysctl_max_skb_frags Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 064/142] tg3: Fix for tg3 transmit queue 0 timed out when too many gso_segs Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 065/142] ipv4: fix memory leaks in ip_cmsg_send() callers Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 066/142] qmi_wwan: add "4G LTE usb-modem U901" Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 067/142] pppoe: fix reference counting in PPPoE proxy Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 068/142] route: check and remove route cache when we get route Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 069/142] rtnl: RTM_GETNETCONF: fix wrong return value Luis Henriques
2016-03-22 10:39 ` [PATCH 3.16.y-ckt 070/142] sctp: Fix port hash table size computation Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 071/142] target: Fix LUN_RESET active TMR descriptor handling Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 072/142] target: Fix LUN_RESET active I/O handling for ACK_KREF Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 073/142] target: Fix TAS handling for multi-session se_node_acls Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 074/142] target: Fix remote-port TMR ABORT + se_cmd fabric stop Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 075/142] target: Fix race with SCF_SEND_DELAYED_TAS handling Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 076/142] Revert "drm/radeon: hold reference to fences in radeon_sa_bo_new" Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 077/142] libata: fix HDIO_GET_32BIT ioctl Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 078/142] [media] adv7604: fix tx 5v detect regression Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 079/142] usb: chipidea: otg: change workqueue ci_otg as freezable Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 080/142] Revert "jffs2: Fix lock acquisition order bug in jffs2_write_begin" Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 081/142] jffs2: Fix page lock / f->sem deadlock Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 082/142] Fix directory hardlinks from deleted directories Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 083/142] iommu/amd: Fix boot warning when device 00:00.0 is not iommu covered Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 084/142] libata: Align ata_device's id on a cacheline Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 085/142] vfio: fix ioctl error handling Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 086/142] ALSA: ctl: Fix ioctls for X32 ABI Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 087/142] ALSA: rawmidi: Fix ioctls " Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 088/142] ALSA: timer: Fix broken compat timer user status ioctl Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 089/142] ALSA: timer: Fix ioctls for X32 ABI Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 090/142] cifs: fix out-of-bounds access in lease parsing Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 091/142] CIFS: Fix SMB2+ interim response processing for read requests Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 092/142] Fix cifs_uniqueid_to_ino_t() function for s390x Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 093/142] arm/arm64: KVM: Fix ioctl error handling Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 094/142] ALSA: hdspm: Fix wrong boolean ctl value accesses Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 095/142] ALSA: hdspm: Fix zero-division Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 096/142] ALSA: hdsp: Fix wrong boolean ctl value accesses Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 097/142] USB: qcserial: add Dell Wireless 5809e Gobi 4G HSPA+ (rev3) Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 098/142] USB: cp210x: Add ID for Parrot NMEA GPS Flight Recorder Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 099/142] USB: serial: option: add support for Telit LE922 PID 0x1045 Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 100/142] USB: serial: option: add support for Quectel UC20 Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 101/142] ALSA: seq: oss: Don't drain at closing a client Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 102/142] drm/ast: Fix incorrect register check for DRAM width Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 103/142] USB: qcserial: add Sierra Wireless EM74xx device ID Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 104/142] drm/radeon/pm: update current crtc info after setting the powerstate Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 105/142] PM / sleep / x86: Fix crash on graph trace through x86 suspend Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 106/142] ALSA: hda - Fix mic issues on Acer Aspire E1-472 Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 107/142] MIPS: traps: Fix SIGFPE information leak from `do_ov' and `do_trap_or_bp' Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 108/142] ubi: Fix out of bounds write in volume update code Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 109/142] gpio: rcar: Add Runtime PM handling for interrupts Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 110/142] IB/core: Use GRH when the path hop-limit > 0 Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 111/142] wext: fix message delay/ordering Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 112/142] cfg80211/wext: fix message ordering Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 113/142] mac80211: fix use of uninitialised values in RX aggregation Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 114/142] mac80211: minstrel_ht: set default tx aggregation timeout to 0 Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 115/142] can: gs_usb: fixed disconnect bug by removing erroneous use of kfree() Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 116/142] ASoC: wm8958: Fix enum ctl accesses in a wrong type Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 117/142] ASoC: wm8994: " Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 118/142] ASoC: wm_adsp: " Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 119/142] target: Drop incorrect ABORT_TASK put for completed commands Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 120/142] Revert "drm/radeon: call hpd_irq_event on resume" Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 121/142] KVM: PPC: Book3S HV: Sanitize special-purpose register values on guest exit Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 122/142] KVM: VMX: disable PEBS before a guest entry Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 123/142] Revert "drm/radeon/pm: adjust display configuration after powerstate" Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 124/142] tcp: convert cached rtt from usec to jiffies when feeding initial rto Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 125/142] net/mlx4_core: Allow resetting VF admin mac to zero Luis Henriques
2016-03-22 10:40 ` Luis Henriques [this message]
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 127/142] ipv6: re-enable fragment header matching in ipv6_find_hdr Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 128/142] net: moxa: fix an error code Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 129/142] cdc_ncm: do not call usbnet_link_change from cdc_ncm_bind Luis Henriques
2016-03-22 10:40 ` [PATCH 3.16.y-ckt 130/142] ext4: iterate over buffer heads correctly in move_extent_per_page() Luis Henriques
2016-03-22 10:41 ` [PATCH 3.16.y-ckt 131/142] Input: aiptek - fix crash on detecting device without endpoints Luis Henriques
2016-03-22 10:41 ` [PATCH 3.16.y-ckt 132/142] AIO: properly check iovec sizes Luis Henriques
2016-03-22 10:41 ` [PATCH 3.16.y-ckt 133/142] bcache: add mutex lock for bch_is_open Luis Henriques
2016-03-22 10:41 ` [PATCH 3.16.y-ckt 134/142] KVM: x86: move steal time initialization to vcpu entry time Luis Henriques
2016-03-22 10:41 ` [PATCH 3.16.y-ckt 135/142] lib/ucs2_string: Add ucs2 -> utf8 helper functions Luis Henriques
2016-03-22 10:41 ` [PATCH 3.16.y-ckt 136/142] efi: Use ucs2_as_utf8 in efivarfs instead of open coding a bad version Luis Henriques
2016-03-22 10:41 ` [PATCH 3.16.y-ckt 137/142] efi: Do variable name validation tests in utf8 Luis Henriques
2016-03-22 10:41 ` [PATCH 3.16.y-ckt 138/142] efi: Make our variable validation list include the guid Luis Henriques
2016-03-22 10:41 ` [PATCH 3.16.y-ckt 139/142] efi: Make efivarfs entries immutable by default Luis Henriques
2016-03-22 10:41 ` [PATCH 3.16.y-ckt 140/142] efi: Add pstore variables to the deletion whitelist Luis Henriques
2016-03-22 10:41 ` [PATCH 3.16.y-ckt 141/142] lib/ucs2_string: Correct ucs2 -> utf8 conversion Luis Henriques
2016-03-22 10:41 ` [PATCH 3.16.y-ckt 142/142] tracing: Fix check for cpu online when event is disabled Luis Henriques

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=1458643271-4227-127-git-send-email-luis.henriques@canonical.com \
    --to=luis.henriques@canonical.com \
    --cc=bpoirier@suse.com \
    --cc=davem@davemloft.net \
    --cc=kernel-team@lists.ubuntu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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