mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Kamal Mostafa <kamal@canonical.com>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org,
	kernel-team@lists.ubuntu.com
Cc: "Marcelo Ricardo Leitner" <marcelo.leitner@gmail.com>,
	"David S. Miller" <davem@davemloft.net>,
	"Moritz Mühlenhoff" <jmm@inutil.org>,
	"Kamal Mostafa" <kamal@canonical.com>
Subject: [PATCH 3.19.y-ckt 002/251] sctp: fix ASCONF list handling
Date: Wed, 15 Jul 2015 18:05:23 -0700	[thread overview]
Message-ID: <1437008972-9140-3-git-send-email-kamal@canonical.com> (raw)
In-Reply-To: <1437008972-9140-1-git-send-email-kamal@canonical.com>

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

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

From: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>

[ Upstream commit 2d45a02d0166caf2627fe91897c6ffc3b19514c4 ]

->auto_asconf_splist is per namespace and mangled by functions like
sctp_setsockopt_auto_asconf() which doesn't guarantee any serialization.

Also, the call to inet_sk_copy_descendant() was backuping
->auto_asconf_list through the copy but was not honoring
->do_auto_asconf, which could lead to list corruption if it was
different between both sockets.

This commit thus fixes the list handling by using ->addr_wq_lock
spinlock to protect the list. A special handling is done upon socket
creation and destruction for that. Error handlig on sctp_init_sock()
will never return an error after having initialized asconf, so
sctp_destroy_sock() can be called without addrq_wq_lock. The lock now
will be take on sctp_close_sock(), before locking the socket, so we
don't do it in inverse order compared to sctp_addr_wq_timeout_handler().

Instead of taking the lock on sctp_sock_migrate() for copying and
restoring the list values, it's preferred to avoid rewritting it by
implementing sctp_copy_descendant().

Issue was found with a test application that kept flipping sysctl
default_auto_asconf on and off, but one could trigger it by issuing
simultaneous setsockopt() calls on multiple sockets or by
creating/destroying sockets fast enough. This is only triggerable
locally.

Fixes: 9f7d653b67ae ("sctp: Add Auto-ASCONF support (core).")
Reported-by: Ji Jianwen <jiji@redhat.com>
Suggested-by: Neil Horman <nhorman@tuxdriver.com>
Suggested-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Cc: Moritz Mühlenhoff <jmm@inutil.org>
Reference: CVE-2015-3212
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
---
 include/net/netns/sctp.h   |  1 +
 include/net/sctp/structs.h |  4 ++++
 net/sctp/socket.c          | 43 ++++++++++++++++++++++++++++++++-----------
 3 files changed, 37 insertions(+), 11 deletions(-)

diff --git a/include/net/netns/sctp.h b/include/net/netns/sctp.h
index 3573a81..8ba379f 100644
--- a/include/net/netns/sctp.h
+++ b/include/net/netns/sctp.h
@@ -31,6 +31,7 @@ struct netns_sctp {
 	struct list_head addr_waitq;
 	struct timer_list addr_wq_timer;
 	struct list_head auto_asconf_splist;
+	/* Lock that protects both addr_waitq and auto_asconf_splist */
 	spinlock_t addr_wq_lock;
 
 	/* Lock that protects the local_addr_list writers */
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h
index 2bb2fcf..495c87e 100644
--- a/include/net/sctp/structs.h
+++ b/include/net/sctp/structs.h
@@ -223,6 +223,10 @@ struct sctp_sock {
 	atomic_t pd_mode;
 	/* Receive to here while partial delivery is in effect. */
 	struct sk_buff_head pd_lobby;
+
+	/* These must be the last fields, as they will skipped on copies,
+	 * like on accept and peeloff operations
+	 */
 	struct list_head auto_asconf_list;
 	int do_auto_asconf;
 };
diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index aafe94b..4e56571 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -1533,8 +1533,10 @@ static void sctp_close(struct sock *sk, long timeout)
 
 	/* Supposedly, no process has access to the socket, but
 	 * the net layers still may.
+	 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
+	 * held and that should be grabbed before socket lock.
 	 */
-	local_bh_disable();
+	spin_lock_bh(&net->sctp.addr_wq_lock);
 	bh_lock_sock(sk);
 
 	/* Hold the sock, since sk_common_release() will put sock_put()
@@ -1544,7 +1546,7 @@ static void sctp_close(struct sock *sk, long timeout)
 	sk_common_release(sk);
 
 	bh_unlock_sock(sk);
-	local_bh_enable();
+	spin_unlock_bh(&net->sctp.addr_wq_lock);
 
 	sock_put(sk);
 
@@ -3587,6 +3589,7 @@ static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
 	if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
 		return 0;
 
+	spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
 	if (val == 0 && sp->do_auto_asconf) {
 		list_del(&sp->auto_asconf_list);
 		sp->do_auto_asconf = 0;
@@ -3595,6 +3598,7 @@ static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
 		    &sock_net(sk)->sctp.auto_asconf_splist);
 		sp->do_auto_asconf = 1;
 	}
+	spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
 	return 0;
 }
 
@@ -4128,18 +4132,28 @@ static int sctp_init_sock(struct sock *sk)
 	local_bh_disable();
 	percpu_counter_inc(&sctp_sockets_allocated);
 	sock_prot_inuse_add(net, sk->sk_prot, 1);
+
+	/* Nothing can fail after this block, otherwise
+	 * sctp_destroy_sock() will be called without addr_wq_lock held
+	 */
 	if (net->sctp.default_auto_asconf) {
+		spin_lock(&sock_net(sk)->sctp.addr_wq_lock);
 		list_add_tail(&sp->auto_asconf_list,
 		    &net->sctp.auto_asconf_splist);
 		sp->do_auto_asconf = 1;
-	} else
+		spin_unlock(&sock_net(sk)->sctp.addr_wq_lock);
+	} else {
 		sp->do_auto_asconf = 0;
+	}
+
 	local_bh_enable();
 
 	return 0;
 }
 
-/* Cleanup any SCTP per socket resources.  */
+/* Cleanup any SCTP per socket resources. Must be called with
+ * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
+ */
 static void sctp_destroy_sock(struct sock *sk)
 {
 	struct sctp_sock *sp;
@@ -7202,6 +7216,19 @@ void sctp_copy_sock(struct sock *newsk, struct sock *sk,
 	newinet->mc_list = NULL;
 }
 
+static inline void sctp_copy_descendant(struct sock *sk_to,
+					const struct sock *sk_from)
+{
+	int ancestor_size = sizeof(struct inet_sock) +
+			    sizeof(struct sctp_sock) -
+			    offsetof(struct sctp_sock, auto_asconf_list);
+
+	if (sk_from->sk_family == PF_INET6)
+		ancestor_size += sizeof(struct ipv6_pinfo);
+
+	__inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
+}
+
 /* Populate the fields of the newsk from the oldsk and migrate the assoc
  * and its messages to the newsk.
  */
@@ -7216,7 +7243,6 @@ static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
 	struct sk_buff *skb, *tmp;
 	struct sctp_ulpevent *event;
 	struct sctp_bind_hashbucket *head;
-	struct list_head tmplist;
 
 	/* Migrate socket buffer sizes and all the socket level options to the
 	 * new socket.
@@ -7224,12 +7250,7 @@ static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
 	newsk->sk_sndbuf = oldsk->sk_sndbuf;
 	newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
 	/* Brute force copy old sctp opt. */
-	if (oldsp->do_auto_asconf) {
-		memcpy(&tmplist, &newsp->auto_asconf_list, sizeof(tmplist));
-		inet_sk_copy_descendant(newsk, oldsk);
-		memcpy(&newsp->auto_asconf_list, &tmplist, sizeof(tmplist));
-	} else
-		inet_sk_copy_descendant(newsk, oldsk);
+	sctp_copy_descendant(newsk, oldsk);
 
 	/* Restore the ep value that was overwritten with the above structure
 	 * copy.
-- 
1.9.1


  parent reply	other threads:[~2015-07-16  2:26 UTC|newest]

Thread overview: 257+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-16  1:05 [3.19.y-ckt stable] Linux 3.19.8-ckt4 stable review Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 001/251] net: don't wait for order-3 page allocation Kamal Mostafa
2015-07-16  1:05 ` Kamal Mostafa [this message]
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 003/251] bridge: fix br_stp_set_bridge_priority race conditions Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 004/251] packet: read num_members once in packet_rcv_fanout() Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 005/251] packet: avoid out of bounds read in round robin fanout Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 006/251] neigh: do not modify unlinked entries Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 007/251] tcp: Do not call tcp_fastopen_reset_cipher from interrupt context Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 008/251] net/mlx4_en: Release TX QP when destroying TX ring Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 009/251] net/mlx4_en: Wake TX queues only when there's enough room Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 010/251] net/mlx4_en: Fix wrong csum complete report when rxvlan offload is disabled Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 011/251] net: phy: fix phy link up when limiting speed via device tree Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 012/251] bnx2x: fix lockdep splat Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 013/251] sctp: Fix race between OOTB responce and route removal Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 014/251] amd-xgbe: Add the __GFP_NOWARN flag to Rx buffer allocation Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 015/251] net: mvneta: introduce compatible string "marvell, armada-xp-neta" Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 016/251] ARM: mvebu: update Ethernet compatible string for Armada XP Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 017/251] net: mvneta: disable IP checksum with jumbo frames for Armada 370 Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 018/251] sparc: Use GFP_ATOMIC in ldc_alloc_exp_dring() as it can be called in softirq context Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 019/251] [media] s5h1420: fix a buffer overflow when checking userspace params Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 020/251] [media] cx24116: " Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 021/251] [media] af9013: Don't accept invalid bandwidth Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 022/251] [media] cx24117: fix a buffer overflow when checking userspace params Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 023/251] [media] saa7164: fix querycap warning Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 024/251] [media] cx18: add missing caps for the PCM video device Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 025/251] bus: arm-ccn: Fix node->XP config conversion Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 026/251] ARM: tegra20: Store CPU "resettable" status in IRAM Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 027/251] iio: accel: kxcjk-1013: add the "KXCJ9000" ACPI id Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 028/251] video: mxsfb: Make sure axi clock is enabled when accessing registers Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 029/251] spi: fix race freeing dummy_tx/rx before it is unmapped Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 030/251] mtd: fix: avoid race condition when accessing mtd->usecount Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 031/251] [media] rc-core: fix dib0700 scancode generation for RC5 Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 032/251] intel_pstate: set BYT MSR with wrmsrl_on_cpu() Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 033/251] leds / PM: fix hibernation on arm when gpio-led used with CPU led trigger Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 034/251] crypto: talitos - avoid memleak in talitos_alg_alloc() Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 035/251] Revert "crypto: talitos - convert to use be16_add_cpu()" Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 036/251] genirq: devres: Fix testing return value of request_any_context_irq() Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 037/251] ASoC: wm8737: Fixup setting VMID Impedance control register Kamal Mostafa
2015-07-16  1:05 ` [PATCH 3.19.y-ckt 038/251] ASoC: wm8903: Fix define for WM8903_VMID_RES_250K Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 039/251] [media] media: Fix regression in some more dib0700 based devices Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 040/251] mnt: Refactor the logic for mounting sysfs and proc in a user namespace Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 041/251] ASoC: wm8955: Fix setting wrong register for WM8955_K_8_0_MASK bits Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 042/251] of/pci: Fix pci_address_to_pio() conversion of CPU address to I/O port Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 043/251] scsi_transport_srp: Introduce srp_wait_for_queuecommand() Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 044/251] scsi_transport_srp: Fix a race condition Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 045/251] IB/srp: Remove an extraneous scsi_host_put() from an error path Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 046/251] IB/srp: Fix a connection setup race Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 047/251] IB/srp: Fix connection state tracking Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 048/251] IB/srp: Fix reconnection failure handling Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 049/251] KVM: mips: use id_to_memslot correctly Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 050/251] ima: skip measurement of cgroupfs files and update documentation Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 051/251] ima: do not measure or appraise the NSFS filesystem Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 052/251] KEYS: fix "ca_keys=" partial key matching Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 053/251] PCI: Propagate the "ignore hotplug" setting to parent Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 054/251] mei: txe: reduce suspend/resume time Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 055/251] w1_therm reference count family data Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 056/251] tty/serial: at91: RS485 mode: 0 is valid for delay_rts_after_send Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 057/251] spi: orion: Fix maximum baud rates for Armada 370/XP Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 058/251] rtlwifi: Remove the clear interrupt routine from all drivers Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 059/251] drm/radeon: take the mode_config mutex when dealing with hpds (v2) Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 060/251] rcu: Correctly handle non-empty Tiny RCU callback list with none ready Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 061/251] ASoC: arizona: Fix noise generator gain TLV Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 062/251] usb: dwc3: gadget: don't clear EP_BUSY too early Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 063/251] dm cache: fix race when issuing a POLICY_REPLACE operation Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 064/251] PCI: Add pci_bus_addr_t Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 065/251] staging: rtl8712: prevent buffer overrun in recvbuf2recvframe Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 066/251] usb: core: Fix USB 3.0 devices lost in NOTATTACHED state after a hub port reset Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 067/251] staging: vt6655: device_rx_srv check sk_buff is NULL Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 068/251] fixing infinite OPEN loop in 4.0 stateid recovery Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 069/251] megaraid_sas : Modify return value of megasas_issue_blocked_cmd() and wait_and_poll() to consider command status returned by firmware Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 070/251] ideapad_laptop: Lenovo G50-30 fix rfkill reports wireless blocked Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 071/251] powerpc/perf: Fix book3s kernel to userspace backtraces Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 072/251] gpio: crystalcove: set IRQCHIP_SKIP_SET_WAKE for the irqchip Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 073/251] SUNRPC: Fix a memory leak in the backchannel code Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 074/251] ipr: Increase default adapter init stage change timeout Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 075/251] Btrfs: don't invalidate root dentry when subvolume deletion fails Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 076/251] ARM: at91/dt: sama5d4ek: mci0 uses slot 0 Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 077/251] mnt: Modify fs_fully_visible to deal with locked ro nodev and atime Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 078/251] ASoC: tas2552: Fix kernel crash when the codec is loaded but not part of a card Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 079/251] ASoC: tas2552: Fix kernel crash caused by wrong kcontrol entry Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 080/251] drm/qxl: Do not cause spice-server to clean our objects Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 081/251] drm/qxl: Do not leak memory if qxl_release_list_add fails Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 082/251] ASoC: rt5645: Init jack_detect_work before registering irq Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 083/251] selinux: fix setting of security labels on NFS Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 084/251] ath3k: Add support of 0489:e076 AR3012 device Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 085/251] ath3k: add support of 13d3:3474 " Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 086/251] Bluetooth: btusb: Fix memory leak in Intel setup routine Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 087/251] ath9k: fix DMA stop sequence for AR9003+ Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 088/251] b43: fix support for 14e4:4321 PCI dev with BCM4321 chipset Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 089/251] cdc-acm: Add support of ATOL FPrint fiscal printers Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 090/251] NFC: st21nfcb: Remove inappropriate kfree on a devm_kzalloc pointer Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 091/251] NFC: st21nfcb: Do not remove header once the payload is sent Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 092/251] NFC: st21nfcb: remove st21nfcb_nci_i2c_disable Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 093/251] PCI: pciehp: Wait for hotplug command completion where necessary Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 094/251] regulator: core: fix constraints output buffer Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 095/251] ACPI / PM: Add missing pm_generic_complete() invocation Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 096/251] x86/PCI: Use host bridge _CRS info on Foxconn K8M890-8237A Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 097/251] pinctrl: mvebu: armada-38x: fix PCIe functions Kamal Mostafa
2015-07-16  1:06 ` [PATCH 3.19.y-ckt 098/251] pinctrl: mvebu: armada-370: fix spi0 pin description Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 099/251] pinctrl: mvebu: armada-375: remove non-existing NAND re/we pins Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 100/251] pinctrl: mvebu: armada-xp: remove non-existing NAND pins Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 101/251] pinctrl: mvebu: armada-xp: remove non-existing VDD cpu_pd functions Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 102/251] pinctrl: mvebu: armada-xp: fix functions of MPP48 Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 103/251] pinctrl: mvebu: armada-375: remove incorrect space in pin description Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 104/251] pinctrl: mvebu: armada-38x: fix incorrect total number of GPIOs Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 105/251] i2c: at91: fix a race condition when using the DMA controller Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 106/251] dmaengine: mv_xor: bug fix for racing condition in descriptors cleanup Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 107/251] ASoC: wm8960: the enum of "DAC Polarity" should be wm8960_enum[1] Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 108/251] arm64: Do not attempt to use init_mm in reset_context() Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 109/251] ext4: fix race between truncate and __ext4_journalled_writepage() Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 110/251] Disable write buffering on Toshiba ToPIC95 Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 111/251] mei: me: wait for power gating exit confirmation Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 112/251] fs/ufs: revert "ufs: fix deadlocks introduced by sb mutex merge" Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 113/251] jbd2: use GFP_NOFS in jbd2_cleanup_journal_tail() Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 114/251] regmap: Fix regmap_bulk_read in BE mode Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 115/251] jbd2: fix ocfs2 corrupt when updating journal superblock fails Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 116/251] ideapad: fix software rfkill setting Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 117/251] fs/ufs: restore s_lock mutex Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 118/251] regmap: Fix possible shift overflow in regmap_field_init() Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 119/251] ima: fix ima_show_template_data_ascii() Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 120/251] ima: add support for new "euid" policy condition Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 121/251] ima: extend "mask" policy matching support Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 122/251] nfs: increase size of EXCHANGE_ID name string buffer Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 123/251] vTPM: set virtual device before passing to ibmvtpm_reset_crq Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 124/251] Input: pixcir_i2c_ts - fix receive error Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 125/251] arm: KVM: force execution of HCPTR access on VM exit Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 126/251] ARM: kvm: psci: fix handling of unimplemented functions Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 127/251] arm64: entry: fix context tracking for el0_sp_pc Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 128/251] i2c: mux: Use __i2c_transfer() instead of calling parent's master_xfer() Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 129/251] i2c: mux: pca954x: Use __i2c_transfer because of quirks Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 130/251] arm64: mm: Fix freeing of the wrong memmap entries with !SPARSEMEM_VMEMMAP Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 131/251] dm space map metadata: fix occasional leak of a metadata block on resize Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 132/251] KVM: arm/arm64: vgic: Avoid injecting reserved IRQ numbers Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 133/251] ARM: mvebu: fix suspend to RAM on big-endian configurations Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 134/251] dm stats: fix divide by zero if 'number_of_areas' arg is zero Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 135/251] x86/PCI: Use host bridge _CRS info on systems with >32 bit addressing Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 136/251] pNFS: Fix a memory leak when attempted pnfs fails Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 137/251] NFS: Ensure we set NFS_CONTEXT_RESEND_WRITES when requeuing writes Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 138/251] ACPI / PNP: Avoid conflicting resource reservations Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 139/251] Bluetooth: ath3k: add support of 04ca:300f AR3012 device Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 140/251] Bluetooth: ath3k: Add support of 04ca:300d " Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 141/251] libata: Do not blacklist Micron M500DC Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 142/251] arm64: vdso: work-around broken ELF toolchains in Makefile Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 143/251] iommu/amd: Handle large pages correctly in free_pagetable Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 144/251] ext4: call sync_blockdev() before invalidate_bdev() in put_super() Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 145/251] can: fix loss of CAN frames in raw_rcv Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 146/251] MIPS: Fix KVM guest fixmap address Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 147/251] xfs: fix remote symlinks on V5/CRC filesystems Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 148/251] ext4: don't retry file block mapping on bigalloc fs with non-extent file Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 149/251] drm/dp/mst: make sure mst_primary mstb is valid in work function Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 150/251] drm/dp/mst: take lock around looking up the branch device on hpd irq Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 151/251] NET: ROSE: Don't dereference NULL neighbour pointer Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 152/251] netfilter: nf_qeueue: Drop queue entries on nf_unregister_hook Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 153/251] of/address: use atomic allocation in pci_register_io_range() Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 154/251] fs: Fix S_NOSEC handling Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 155/251] stmmac: troubleshoot unexpected bits in des0 & des1 Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 156/251] ACPI / resources: free memory on error in add_region_before() Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 157/251] PM / sleep: Increase default DPM watchdog timeout to 60 Kamal Mostafa
2015-07-16  1:07 ` [PATCH 3.19.y-ckt 158/251] rtc: snvs: fix wakealarm by call enable_irq_wake earlier Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 159/251] ARC: add compiler barrier to LLSC based cmpxchg Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 160/251] ARC: add smp barriers around atomics per Documentation/atomic_ops.txt Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 161/251] mm: kmemleak: allow safe memory scanning during kmemleak disabling Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 162/251] mm: kmemleak_alloc_percpu() should follow the gfp from per_alloc() Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 163/251] drm/dp/mst: close deadlock in connector destruction Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 164/251] dell-laptop: Fix allocating & freeing SMI buffer page Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 165/251] ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 166/251] ALSA: hda - set proper caps for newer AMD hda audio in KB/KV Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 167/251] s390/kdump: fix REGSET_VX_LOW vector register ELF notes Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 168/251] ARM64: smp: Fix suspicious RCU usage with ipi tracepoints Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 169/251] arm64: bpf: fix out-of-bounds read in bpf2a64_offset() Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 170/251] tracing/filter: Do not WARN on operand count going below zero Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 171/251] tracing/filter: Do not allow infix to exceed end of string Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 172/251] arm64: bpf: fix endianness conversion bugs Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 173/251] clocksource: exynos_mct: Avoid blocking calls in the cpu hotplug notifier Kamal Mostafa
2015-07-16  6:37   ` Duan Andy
2015-07-16  6:55     ` Krzysztof Kozlowski
2015-07-16  8:14       ` Duan Andy
2015-07-16  9:52         ` Krzysztof Kozlowski
2015-07-17  1:29           ` Duan Andy
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 174/251] ALSA: hda - Add headset support to Acer Aspire V5 Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 175/251] ALSA: hda - Fix the dock headphone output on Fujitsu Lifebook E780 Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 176/251] agp/intel: Fix typo in needs_ilk_vtd_wa() Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 177/251] drm/i915: fix backlight after resume on 855gm Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 178/251] drm/radeon: compute ring fix hibernation (CI GPU family) v2 Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 179/251] drm/radeon: SDMA fix hibernation (CI GPU family) Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 180/251] crush: fix a bug in tree bucket decode Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 181/251] rbd: use GFP_NOIO in rbd_obj_request_create() Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 182/251] arm64: Don't report clear pmds and puds as huge Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 183/251] fuse: initialize fc->release before calling it Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 184/251] vfs: Ignore unlocked mounts in fs_fully_visible Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 185/251] VFS: Introduce inode-getting helpers for layered/unioned fs environments Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 186/251] fs: Add helper functions for permanently empty directories Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 187/251] sysctl: Allow creating permanently empty directories that serve as mountpoints Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 188/251] proc: Allow creating permanently empty directories that serve as mount points Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 189/251] kernfs: Add support for always empty directories Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 190/251] sysfs: Add support for permanently empty directories to serve as mount points Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 191/251] sysfs: Create mountpoints with sysfs_create_mount_point Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 192/251] mnt: Update fs_fully_visible to test for permanently empty directories Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 193/251] vfs: Remove incorrect debugging WARN in prepend_path Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 194/251] hwmon: (nct7802) fix visibility of temp3 Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 195/251] hwmon: (mcp3021) Fix broken output scaling Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 196/251] ACPICA: Tables: Enable both 32-bit and 64-bit FACS Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 197/251] ACPICA: Tables: Fix an issue that FACS initialization is performed twice Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 198/251] ACPICA: Tables: Enable default 64-bit FADT addresses favor Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 199/251] KVM: x86: make vapics_in_nmi_mode atomic Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 200/251] KVM: x86: properly restore LVT0 Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 201/251] KVM: s390: virtio-ccw: don't overwrite config space values Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 202/251] 9p: forgetting to cancel request on interrupted zero-copy RPC Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 203/251] bridge: multicast: restore router configuration on port link down/up Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 204/251] ath10k: clear htt.freq Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 205/251] cfg80211: ignore netif running state when changing iftype Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 206/251] mm/hugetlb: introduce minimum hugepage order Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 207/251] mmc: sdhci: Restore behavior while creating OCR mask Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 208/251] hrtimer: Allow concurrent hrtimer_start() for self restarting timers Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 209/251] ARM: dove: fix legacy dove IRQ numbers Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 210/251] sched/fair: Prevent throttling in early pick_next_task_fair() Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 211/251] watchdog: omap: assert the counter being stopped before reprogramming Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 212/251] ufs: Fix possible deadlock when looking up directories Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 213/251] net: dsa: bcm_sf2: properly propagate carrier down state for MoCA Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 214/251] gpiolib: Add missing dummies for the unified device properties interface Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 215/251] ASoC: imx-wm8962: Add a missing error check Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 216/251] phy: twl4030-usb: remove incorrect pm_runtime_get_sync() in probe function Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 217/251] IB/mlx4: Convert slave port before building address-handle Kamal Mostafa
2015-07-16  1:08 ` [PATCH 3.19.y-ckt 218/251] PM / clk: Fix clock error check in __pm_clk_add() Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 219/251] drm/tegra: dpaux: Fix transfers larger than 4 bytes Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 220/251] ath10k: add extra check for frame tracing Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 221/251] perf: Fix ring_buffer_attach() RCU sync, again Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 222/251] mmc: card: Fixup request missing in mmc_blk_issue_rw_rq Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 223/251] ipip: fix one sparse error Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 224/251] __bitmap_parselist: fix bug in empty string handling Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 225/251] powerpc/pseries: Fix possible leaked device node reference Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 226/251] ath9k_htc: memory corruption calling set_bit() Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 227/251] ARM: 8371/1: always select IRQ_WORK on SMP Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 228/251] tty: remove platform_sysrq_reset_seq Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 229/251] ath10k: fix insufficient tracing buffer size Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 230/251] pktgen: adjust flag NO_TIMESTAMP to be more pktgen compliant Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 231/251] mtd: dc21285: use raw spinlock functions for nw_gpio_lock Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 232/251] rndis_wlan: harmless issue calling set_bit() Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 233/251] clk: ti: dra7-atl-clock: Fix possible ERR_PTR dereference Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 234/251] MIPS: Octeon: Set OHCI and EHCI MMIO byte order to match CPU Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 235/251] NFS: Fix size of NFSACL SETACL operations Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 236/251] security_syslog() should be called once only Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 237/251] pktgen: adjust spacing in proc file interface output Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 238/251] ARM: 8372/1: KGDB does not build on BE32 Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 239/251] of: return NUMA_NO_NODE from fallback of_node_to_nid() Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 240/251] HID: i2c-hid: fix harmless test_bit() issue Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 241/251] iwlwifi: mvm: fix ROC reference accounting Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 242/251] samples/bpf: fix in-source build of samples with clang Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 243/251] ACPI / init: Switch over platform to the ACPI mode later Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 244/251] HID: rmi: fix some harmless BIT() mistakes Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 245/251] mac80211: prevent possible crypto tx tailroom corruption Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 246/251] mac80211: fix the beacon csa counter for mesh and ibss Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 247/251] USB: devio: fix a condition in async_completed() Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 248/251] e1000e: Cleanup handling of VLAN_HLEN as a part of max frame size Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 249/251] clk: Fix JSON output in debugfs Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 250/251] net/mlx4_core: Enhance the MAD_IFC wrapper to convert VF port to physical Kamal Mostafa
2015-07-16  1:09 ` [PATCH 3.19.y-ckt 251/251] Btrfs: lock superblock before remounting for rw subvol Kamal Mostafa

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=1437008972-9140-3-git-send-email-kamal@canonical.com \
    --to=kamal@canonical.com \
    --cc=davem@davemloft.net \
    --cc=jmm@inutil.org \
    --cc=kernel-team@lists.ubuntu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcelo.leitner@gmail.com \
    --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

all inboxes | Powered by JetHome®