stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Roland Dreier <roland@purestorage.com>,
	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Subject: [PATCH 4.1 207/267] ACPI / PNP: Reserve ACPI resources at the fs_initcall_sync stage
Date: Fri, 31 Jul 2015 12:40:58 -0700	[thread overview]
Message-ID: <20150731194009.451571336@linuxfoundation.org> (raw)
In-Reply-To: <20150731194001.933895871@linuxfoundation.org>

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

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

From: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>

commit 0294112ee3135fbd15eaa70015af8283642dd970 upstream.

This effectively reverts the following three commits:

 7bc10388ccdd ACPI / resources: free memory on error in add_region_before()
 0f1b414d1907 ACPI / PNP: Avoid conflicting resource reservations
 b9a5e5e18fbf ACPI / init: Fix the ordering of acpi_reserve_resources()

(commit b9a5e5e18fbf introduced regressions some of which, but not
all, were addressed by commit 0f1b414d1907 and commit 7bc10388ccdd
was a fixup on top of the latter) and causes ACPI fixed hardware
resources to be reserved at the fs_initcall_sync stage of system
initialization.

The story is as follows.  First, a boot regression was reported due
to an apparent resource reservation ordering change after a commit
that shouldn't lead to such changes.  Investigation led to the
conclusion that the problem happened because acpi_reserve_resources()
was executed at the device_initcall() stage of system initialization
which wasn't strictly ordered with respect to driver initialization
(and with respect to the initialization of the pcieport driver in
particular), so a random change causing the device initcalls to be
run in a different order might break things.

The response to that was to attempt to run acpi_reserve_resources()
as soon as we knew that ACPI would be in use (commit b9a5e5e18fbf).
However, that turned out to be too early, because it caused resource
reservations made by the PNP system driver to fail on at least one
system and that failure was addressed by commit 0f1b414d1907.

That fix still turned out to be insufficient, though, because
calling acpi_reserve_resources() before the fs_initcall stage of
system initialization caused a boot regression to happen on the
eCAFE EC-800-H20G/S netbook.  That meant that we only could call
acpi_reserve_resources() at the fs_initcall initialization stage
or later, but then we might just as well call it after the PNP
initalization in which case commit 0f1b414d1907 wouldn't be
necessary any more.

For this reason, the changes made by commit 0f1b414d1907 are reverted
(along with a memory leak fixup on top of that commit), the changes
made by commit b9a5e5e18fbf that went too far are reverted too and
acpi_reserve_resources() is changed into fs_initcall_sync, which
will cause it to be executed after the PNP subsystem initialization
(which is an fs_initcall) and before device initcalls (including
the pcieport driver initialization) which should avoid the initial
issue.

Link: https://bugzilla.kernel.org/show_bug.cgi?id=100581
Link: http://marc.info/?t=143092384600002&r=1&w=2
Link: https://bugzilla.kernel.org/show_bug.cgi?id=99831
Link: http://marc.info/?t=143389402600001&r=1&w=2
Fixes: b9a5e5e18fbf "ACPI / init: Fix the ordering of acpi_reserve_resources()"
Reported-by: Roland Dreier <roland@purestorage.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/acpi/osl.c      |   12 ++-
 drivers/acpi/resource.c |  162 ------------------------------------------------
 drivers/pnp/system.c    |   35 ++--------
 include/linux/acpi.h    |   10 --
 4 files changed, 18 insertions(+), 201 deletions(-)

--- a/drivers/acpi/osl.c
+++ b/drivers/acpi/osl.c
@@ -175,10 +175,14 @@ static void __init acpi_request_region (
 	if (!addr || !length)
 		return;
 
-	acpi_reserve_region(addr, length, gas->space_id, 0, desc);
+	/* Resources are never freed */
+	if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_IO)
+		request_region(addr, length, desc);
+	else if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
+		request_mem_region(addr, length, desc);
 }
 
-static void __init acpi_reserve_resources(void)
+static int __init acpi_reserve_resources(void)
 {
 	acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
 		"ACPI PM1a_EVT_BLK");
@@ -207,7 +211,10 @@ static void __init acpi_reserve_resource
 	if (!(acpi_gbl_FADT.gpe1_block_length & 0x1))
 		acpi_request_region(&acpi_gbl_FADT.xgpe1_block,
 			       acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK");
+
+	return 0;
 }
+fs_initcall_sync(acpi_reserve_resources);
 
 void acpi_os_printf(const char *fmt, ...)
 {
@@ -1838,7 +1845,6 @@ acpi_status __init acpi_os_initialize(vo
 
 acpi_status __init acpi_os_initialize1(void)
 {
-	acpi_reserve_resources();
 	kacpid_wq = alloc_workqueue("kacpid", 0, 1);
 	kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1);
 	kacpi_hotplug_wq = alloc_ordered_workqueue("kacpi_hotplug", 0);
--- a/drivers/acpi/resource.c
+++ b/drivers/acpi/resource.c
@@ -26,7 +26,6 @@
 #include <linux/device.h>
 #include <linux/export.h>
 #include <linux/ioport.h>
-#include <linux/list.h>
 #include <linux/slab.h>
 
 #ifdef CONFIG_X86
@@ -622,164 +621,3 @@ int acpi_dev_filter_resource_type(struct
 	return (type & types) ? 0 : 1;
 }
 EXPORT_SYMBOL_GPL(acpi_dev_filter_resource_type);
-
-struct reserved_region {
-	struct list_head node;
-	u64 start;
-	u64 end;
-};
-
-static LIST_HEAD(reserved_io_regions);
-static LIST_HEAD(reserved_mem_regions);
-
-static int request_range(u64 start, u64 end, u8 space_id, unsigned long flags,
-			 char *desc)
-{
-	unsigned int length = end - start + 1;
-	struct resource *res;
-
-	res = space_id == ACPI_ADR_SPACE_SYSTEM_IO ?
-		request_region(start, length, desc) :
-		request_mem_region(start, length, desc);
-	if (!res)
-		return -EIO;
-
-	res->flags &= ~flags;
-	return 0;
-}
-
-static int add_region_before(u64 start, u64 end, u8 space_id,
-			     unsigned long flags, char *desc,
-			     struct list_head *head)
-{
-	struct reserved_region *reg;
-	int error;
-
-	reg = kmalloc(sizeof(*reg), GFP_KERNEL);
-	if (!reg)
-		return -ENOMEM;
-
-	error = request_range(start, end, space_id, flags, desc);
-	if (error) {
-		kfree(reg);
-		return error;
-	}
-
-	reg->start = start;
-	reg->end = end;
-	list_add_tail(&reg->node, head);
-	return 0;
-}
-
-/**
- * acpi_reserve_region - Reserve an I/O or memory region as a system resource.
- * @start: Starting address of the region.
- * @length: Length of the region.
- * @space_id: Identifier of address space to reserve the region from.
- * @flags: Resource flags to clear for the region after requesting it.
- * @desc: Region description (for messages).
- *
- * Reserve an I/O or memory region as a system resource to prevent others from
- * using it.  If the new region overlaps with one of the regions (in the given
- * address space) already reserved by this routine, only the non-overlapping
- * parts of it will be reserved.
- *
- * Returned is either 0 (success) or a negative error code indicating a resource
- * reservation problem.  It is the code of the first encountered error, but the
- * routine doesn't abort until it has attempted to request all of the parts of
- * the new region that don't overlap with other regions reserved previously.
- *
- * The resources requested by this routine are never released.
- */
-int acpi_reserve_region(u64 start, unsigned int length, u8 space_id,
-			unsigned long flags, char *desc)
-{
-	struct list_head *regions;
-	struct reserved_region *reg;
-	u64 end = start + length - 1;
-	int ret = 0, error = 0;
-
-	if (space_id == ACPI_ADR_SPACE_SYSTEM_IO)
-		regions = &reserved_io_regions;
-	else if (space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
-		regions = &reserved_mem_regions;
-	else
-		return -EINVAL;
-
-	if (list_empty(regions))
-		return add_region_before(start, end, space_id, flags, desc, regions);
-
-	list_for_each_entry(reg, regions, node)
-		if (reg->start == end + 1) {
-			/* The new region can be prepended to this one. */
-			ret = request_range(start, end, space_id, flags, desc);
-			if (!ret)
-				reg->start = start;
-
-			return ret;
-		} else if (reg->start > end) {
-			/* No overlap.  Add the new region here and get out. */
-			return add_region_before(start, end, space_id, flags,
-						 desc, &reg->node);
-		} else if (reg->end == start - 1) {
-			goto combine;
-		} else if (reg->end >= start) {
-			goto overlap;
-		}
-
-	/* The new region goes after the last existing one. */
-	return add_region_before(start, end, space_id, flags, desc, regions);
-
- overlap:
-	/*
-	 * The new region overlaps an existing one.
-	 *
-	 * The head part of the new region immediately preceding the existing
-	 * overlapping one can be combined with it right away.
-	 */
-	if (reg->start > start) {
-		error = request_range(start, reg->start - 1, space_id, flags, desc);
-		if (error)
-			ret = error;
-		else
-			reg->start = start;
-	}
-
- combine:
-	/*
-	 * The new region is adjacent to an existing one.  If it extends beyond
-	 * that region all the way to the next one, it is possible to combine
-	 * all three of them.
-	 */
-	while (reg->end < end) {
-		struct reserved_region *next = NULL;
-		u64 a = reg->end + 1, b = end;
-
-		if (!list_is_last(&reg->node, regions)) {
-			next = list_next_entry(reg, node);
-			if (next->start <= end)
-				b = next->start - 1;
-		}
-		error = request_range(a, b, space_id, flags, desc);
-		if (!error) {
-			if (next && next->start == b + 1) {
-				reg->end = next->end;
-				list_del(&next->node);
-				kfree(next);
-			} else {
-				reg->end = end;
-				break;
-			}
-		} else if (next) {
-			if (!ret)
-				ret = error;
-
-			reg = next;
-		} else {
-			break;
-		}
-	}
-
-	return ret ? ret : error;
-}
-EXPORT_SYMBOL_GPL(acpi_reserve_region);
--- a/drivers/pnp/system.c
+++ b/drivers/pnp/system.c
@@ -7,7 +7,6 @@
  *	Bjorn Helgaas <bjorn.helgaas@hp.com>
  */
 
-#include <linux/acpi.h>
 #include <linux/pnp.h>
 #include <linux/device.h>
 #include <linux/init.h>
@@ -23,41 +22,25 @@ static const struct pnp_device_id pnp_de
 	{"", 0}
 };
 
-#ifdef CONFIG_ACPI
-static bool __reserve_range(u64 start, unsigned int length, bool io, char *desc)
-{
-	u8 space_id = io ? ACPI_ADR_SPACE_SYSTEM_IO : ACPI_ADR_SPACE_SYSTEM_MEMORY;
-	return !acpi_reserve_region(start, length, space_id, IORESOURCE_BUSY, desc);
-}
-#else
-static bool __reserve_range(u64 start, unsigned int length, bool io, char *desc)
-{
-	struct resource *res;
-
-	res = io ? request_region(start, length, desc) :
-		request_mem_region(start, length, desc);
-	if (res) {
-		res->flags &= ~IORESOURCE_BUSY;
-		return true;
-	}
-	return false;
-}
-#endif
-
 static void reserve_range(struct pnp_dev *dev, struct resource *r, int port)
 {
 	char *regionid;
 	const char *pnpid = dev_name(&dev->dev);
 	resource_size_t start = r->start, end = r->end;
-	bool reserved;
+	struct resource *res;
 
 	regionid = kmalloc(16, GFP_KERNEL);
 	if (!regionid)
 		return;
 
 	snprintf(regionid, 16, "pnp %s", pnpid);
-	reserved = __reserve_range(start, end - start + 1, !!port, regionid);
-	if (!reserved)
+	if (port)
+		res = request_region(start, end - start + 1, regionid);
+	else
+		res = request_mem_region(start, end - start + 1, regionid);
+	if (res)
+		res->flags &= ~IORESOURCE_BUSY;
+	else
 		kfree(regionid);
 
 	/*
@@ -66,7 +49,7 @@ static void reserve_range(struct pnp_dev
 	 * have double reservations.
 	 */
 	dev_info(&dev->dev, "%pR %s reserved\n", r,
-		 reserved ? "has been" : "could not be");
+		 res ? "has been" : "could not be");
 }
 
 static void reserve_resources_of_dev(struct pnp_dev *dev)
--- a/include/linux/acpi.h
+++ b/include/linux/acpi.h
@@ -332,9 +332,6 @@ int acpi_check_region(resource_size_t st
 
 int acpi_resources_are_enforced(void);
 
-int acpi_reserve_region(u64 start, unsigned int length, u8 space_id,
-			unsigned long flags, char *desc);
-
 #ifdef CONFIG_HIBERNATION
 void __init acpi_no_s4_hw_signature(void);
 #endif
@@ -530,13 +527,6 @@ static inline int acpi_check_region(reso
 	return 0;
 }
 
-static inline int acpi_reserve_region(u64 start, unsigned int length,
-				      u8 space_id, unsigned long flags,
-				      char *desc)
-{
-	return -ENXIO;
-}
-
 struct acpi_table_header;
 static inline int acpi_table_parse(char *id,
 				int (*handler)(struct acpi_table_header *))



  parent reply	other threads:[~2015-07-31 19:58 UTC|newest]

Thread overview: 259+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-31 19:37 [PATCH 4.1 000/267] 4.1.4-stable review Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 003/267] pinctrl: mvebu: armada-370: fix spi0 pin description Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 004/267] pinctrl: mvebu: armada-375: remove incorrect space in " Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 005/267] pinctrl: mvebu: armada-375: remove non-existing NAND re/we pins Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 006/267] pinctrl: mvebu: armada-38x: fix PCIe functions Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 007/267] pinctrl: mvebu: armada-38x: fix incorrect total number of GPIOs Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 008/267] pinctrl: mvebu: armada-39x: " Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 009/267] pinctrl: mvebu: armada-xp: remove non-existing NAND pins Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 010/267] pinctrl: mvebu: armada-xp: remove non-existing VDD cpu_pd functions Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 011/267] pinctrl: mvebu: armada-xp: fix functions of MPP48 Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 012/267] openrisc: fix CONFIG_UID16 setting Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 013/267] m68knommu: make ColdFire SoC selection a choice Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 014/267] m68knommu: force setting of CONFIG_CLOCK_FREQ for ColdFire Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 015/267] Bluetooth: Fix race condition with user channel and setup stage Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 016/267] Bluetooth: btusb: Fix memory leak in Intel setup routine Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 017/267] Bluetooth: btusb: Fix secure send command length alignment on Intel 8260 Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 018/267] Bluetooth: btusb: Correct typo in Roper Class 1 Bluetooth Dongle Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 019/267] Bluetooth: btbcm: allow btbcm_read_verbose_config to fail on Apple Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 020/267] ath9k: fix DMA stop sequence for AR9003+ Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 021/267] ath9k_htc: memory corruption calling set_bit() Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 022/267] rtlwifi: Remove the clear interrupt routine from all drivers Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 023/267] ieee802154: Fix sockaddr_ieee802154 implicit padding information leak Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 024/267] staging: vt6656: check ieee80211_bss_conf bssid not NULL Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 025/267] staging: vt6655: " Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 026/267] staging: vt6655: device_rx_srv check sk_buff is NULL Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 027/267] staging: rtl8712: prevent buffer overrun in recvbuf2recvframe Greg Kroah-Hartman
2015-07-31 19:37 ` [PATCH 4.1 028/267] staging: comedi: cb_pcimdas: fix handlers for DI and DO subdevices Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 029/267] hid-sensor: Fix suspend/resume delay Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 030/267] ext4: fix race between truncate and __ext4_journalled_writepage() Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 031/267] ext4: call sync_blockdev() before invalidate_bdev() in put_super() Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 032/267] ext4: dont retry file block mapping on bigalloc fs with non-extent file Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 033/267] ext4: set lazytime on remount if MS_LAZYTIME is set by mount Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 034/267] ext4: fix fencepost error in lazytime optimization Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 035/267] bufferhead: Add _gfp version for sb_getblk() Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 036/267] ext4: avoid deadlocks in the writeback path by using sb_getblk_gfp Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 037/267] ext4: fix reservation release on invalidatepage for delalloc fs Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 038/267] ext4: be more strict when migrating to non-extent based file Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 039/267] ext4: correctly migrate a file with a hole at the beginning Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 040/267] ext4: replace open coded nofail allocation in ext4_free_blocks() Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 041/267] jbd2: use GFP_NOFS in jbd2_cleanup_journal_tail() Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 042/267] jbd2: fix ocfs2 corrupt when updating journal superblock fails Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 043/267] NFC: st21nfcb: Remove inappropriate kfree on a devm_kzalloc pointer Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 044/267] NFC: st21nfcb: Do not remove header once the payload is sent Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 045/267] NFC: st21nfcb: remove st21nfcb_nci_i2c_disable Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 046/267] rtc: snvs: fix wakealarm by call enable_irq_wake earlier Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 047/267] i2c: at91: fix a race condition when using the DMA controller Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 051/267] iio:light:cm3323: clear bitmask before set Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 052/267] iio:adc:cc10001_adc: fix Kconfig dependency Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 053/267] iio:accel:bmc150-accel: fix counting direction Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 054/267] iio: light: tcs3414: Fix bug preventing to set integration time Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 055/267] iio: DAC: ad5624r_spi: fix bit shift of output data value Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 056/267] iio: inv-mpu: Specify the expected format/precision for write channels Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 057/267] iio: tmp006: Check channel info on write Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 058/267] iio: twl4030-madc: Pass the IRQF_ONESHOT flag Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 059/267] iio: ABI: Clarify proximity output value Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 060/267] iio: proximity: sx9500: Fix proximity value Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 061/267] iio: adc: rockchip_saradc: add missing MODULE_* data Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 062/267] iio: adc: at91_adc: allow to use full range of startup time Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 063/267] [media] vb2: Dont WARN when v4l2_buffer.bytesused is 0 for multiplanar buffers Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 064/267] [media] media: Fix regression in some more dib0700 based devices Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 066/267] [media] cx18: add missing caps for the PCM video device Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 067/267] [media] cx24117: fix a buffer overflow when checking userspace params Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 068/267] [media] af9013: Dont accept invalid bandwidth Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 069/267] [media] saa7164: fix querycap warning Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 070/267] [media] s5h1420: fix a buffer overflow when checking userspace params Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 071/267] [media] cx24116: " Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 072/267] ASoC: arizona: Fix noise generator gain TLV Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 073/267] ASoC: rt5645: Init jack_detect_work before registering irq Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 074/267] ASoC: max98925: Fix mask for setting DAI invert mode Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 075/267] ASoC: qcom: remove incorrect dependencies Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 076/267] ASoC: imx-wm8962: Add a missing error check Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 077/267] ASoC: omap: fix up SND_OMAP_SOC_OMAP_ABE_TWL6040 dependency, again Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 079/267] ASoC: wm8955: Fix setting wrong register for WM8955_K_8_0_MASK bits Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 081/267] ASoC: wm8960: the enum of "DAC Polarity" should be wm8960_enum[1] Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 082/267] ASoC: tas2552: Fix kernel crash when the codec is loaded but not part of a card Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 083/267] ASoC: tas2552: Fix kernel crash caused by wrong kcontrol entry Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 084/267] libata: Do not blacklist Micron M500DC Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 085/267] libata: add ATA_HORKAGE_BROKEN_FPDMA_AA quirk for HP 250GB SATA disk VB0250EAVER Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 086/267] libata: increase the timeout when setting transfer mode Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 087/267] libata: Fall back to unqueued READ LOG EXT if the DMA variant fails Greg Kroah-Hartman
2015-07-31 19:38 ` [PATCH 4.1 088/267] libata: Expose TRIM capability in sysfs Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 089/267] libata: add ATA_HORKAGE_NOTRIM Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 090/267] libata: add ATA_HORKAGE_MAX_SEC_1024 to revert back to previous max_sectors limit Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 091/267] libata: Do not blacklist M510DC Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 092/267] libata: force disable trim for SuperSSpeed S238 Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 093/267] usb: dwc3: gadget: return error if command sent to DGCMD register fails Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 094/267] usb: dwc3: gadget: return error if command sent to DEPCMD " Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 095/267] usb: dwc3: gadget: dont clear EP_BUSY too early Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 096/267] usb: dwc3: Reset the transfer resource index on SET_INTERFACE Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 097/267] usb: core: Fix USB 3.0 devices lost in NOTATTACHED state after a hub port reset Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 098/267] USB: devio: fix a condition in async_completed() Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 099/267] phy: twl4030-usb: remove incorrect pm_runtime_get_sync() in probe function Greg Kroah-Hartman
2015-08-08  5:53   ` Alexander Holler
2015-08-08  6:48     ` Kishon Vijay Abraham I
2015-08-09  9:00       ` NeilBrown
2015-08-09 10:45         ` Alexander Holler
2015-08-11  8:29           ` NeilBrown
2015-08-11 21:34             ` Alexander Holler
2015-08-11 22:09               ` NeilBrown
2015-08-12  0:29                 ` Felipe Balbi
2015-07-31 19:39 ` [PATCH 4.1 100/267] usb: phy: mxs: suspend to RAM causes NULL pointer dereference Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 101/267] phy: berlin-usb: fix divider for BG2CD Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 102/267] usb: gadget: composite: Fix NULL pointer dereference Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 103/267] usb: gadget: f_fs: do not set cancel function on synchronous {read,write} Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 104/267] usb: gadget: mv_udc_core: fix phy_regs I/O memory leak Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 105/267] usb: f_mass_storage: limit number of reported LUNs Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 106/267] usb: musb: host: rely on port_mode to call musb_start() Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 107/267] USB: cp210x: add ID for Aruba Networks controllers Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 108/267] USB: option: add 2020:4000 ID Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 109/267] USB: serial: Destroy serial_minors IDR on module exit Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 110/267] USB: OHCI: Fix race between ED unlink and URB submission Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 111/267] usb: core: lpm: set lpm_capable for root hub device Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 112/267] usb: xhci: Bugfix for NULL pointer deference in xhci_endpoint_init() function Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 113/267] dm cache: fix race when issuing a POLICY_REPLACE operation Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 114/267] dm stats: fix divide by zero if number_of_areas arg is zero Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 115/267] dm space map metadata: fix occasional leak of a metadata block on resize Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 116/267] dm btree remove: fix bug in redistribute3 Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 117/267] dm thin: allocate the cell_sort_array dynamically Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 118/267] dm btree: silence lockdep lock inversion in dm_btree_del() Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 119/267] mmc: block: Add missing mmc_blk_put() in power_ro_lock_show() Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 120/267] block: loop: convert to per-device workqueue Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 121/267] block: loop: avoiding too many pending per work I/O Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 122/267] block: Do a full clone when splitting discard bios Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 123/267] ARM: at91/dt: sama5d4ek: mci0 uses slot 0 Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 124/267] ARM: at91/dt: sama5d4: fix dma conf for aes, sha and tdes nodes Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 126/267] ARM: at91/dt: trivial: fix USB udc compatible string Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 127/267] ARM: at91/dt: update udc compatible strings Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 128/267] bus: arm-ccn: Fix node->XP config conversion Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 129/267] drm/vgem: Set unique to "vgem" Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 130/267] drm/dp/mst: close deadlock in connector destruction Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 131/267] drm/dp/mst: take lock around looking up the branch device on hpd irq Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 132/267] drm/dp/mst: make sure mst_primary mstb is valid in work function Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 133/267] drm/tegra: dpaux: Fix transfers larger than 4 bytes Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 134/267] drm/qxl: Do not cause spice-server to clean our objects Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 135/267] drm/qxl: Do not leak memory if qxl_release_list_add fails Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 137/267] drm/atomic: fix out of bounds read in for_each_*_in_state helpers Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 138/267] drm/radeon: take the mode_config mutex when dealing with hpds (v2) Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 139/267] drm/radeon: clean up radeon_audio_enable Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 140/267] drm/i915/ppgtt: Break loop in gen8_ppgtt_clear_range failure path Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 143/267] drm/i915: Declare the swizzling unknown for L-shaped configurations Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 144/267] drm/i915: Snapshot seqno of most recently submitted request Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 145/267] drm/i915: Forward all core DRM ioctls to core compat handling Greg Kroah-Hartman
2015-07-31 19:39 ` [PATCH 4.1 146/267] Revert "drm/i915: Declare the swizzling unknown for L-shaped configurations" Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 150/267] Revert "drm/radeon: dont switch vt on suspend" Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 151/267] drm/radeon: only check the sink type on DP connectors Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 157/267] drm/radeon: add a dpm quirk for Sapphire Radeon R9 270X 2GB GDDR5 Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 159/267] drm/radeon/ci: silence a harmless PCC warning Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 160/267] drm/rockchip: use drm_gem_mmap helpers Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 161/267] drm: add a check for x/y in drm_mode_setcrtc Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 162/267] drm: Provide compat ioctl for addfb2.1 Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 164/267] libata: Fix regression when the NCQ Send and Receive log page is absent Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 165/267] xfs: fix remote symlinks on V5/CRC filesystems Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 166/267] xfs: dont truncate attribute extents if no extents exist Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 167/267] w1_therm reference count family data Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 168/267] tpm, tpm_crb: fix le64_to_cpu conversions in crb_acpi_add() Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 169/267] vTPM: set virtual device before passing to ibmvtpm_reset_crq Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 170/267] tpm: Fix initialization of the cdev Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 171/267] tpm, tpm_crb: fail when TPM2 ACPI table contents look corrupted Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 172/267] KEYS: fix "ca_keys=" partial key matching Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 173/267] KEYS: ensure we free the assoc array edit if edit is valid Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 174/267] ima: skip measurement of cgroupfs files and update documentation Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 175/267] ima: cleanup ima_init_policy() a little Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 176/267] ima: do not measure or appraise the NSFS filesystem Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 177/267] evm: labeling pseudo filesystems exception Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 178/267] ima: fix ima_show_template_data_ascii() Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 179/267] ima: add support for new "euid" policy condition Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 180/267] ima: extend "mask" policy matching support Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 181/267] ima: update builtin policies Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 182/267] tracing/filter: Do not WARN on operand count going below zero Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 183/267] tracing/filter: Do not allow infix to exceed end of string Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 184/267] tracing: Fix typo from "static inlin" to "static inline" Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 185/267] tracing: Have branch tracer use recursive field of task struct Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 186/267] tracing: Fix sample output of dynamic arrays Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 187/267] dmaengine: mv_xor: bug fix for racing condition in descriptors cleanup Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 188/267] md: clear mddev->private when it has been freed Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 189/267] md: unlock mddev_lock on an error path Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 190/267] md: Skip cluster setup for dm-raid Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 191/267] hwmon: (mcp3021) Fix broken output scaling Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 192/267] hwmon: (nct7802) fix visibility of temp3 Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 193/267] ARM: dts: mx23: fix iio-hwmon support Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 194/267] Btrfs: dont invalidate root dentry when subvolume deletion fails Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 195/267] md: fix a build warning Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 196/267] Btrfs: use kmem_cache_free when freeing entry in inode cache Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 197/267] Btrfs: fix race between caching kthread and returning inode to " Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 198/267] Btrfs: fix fsync data loss after append write Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 199/267] Btrfs: fix memory leak in the extent_same ioctl Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 200/267] Btrfs: fix list transaction->pending_ordered corruption Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 201/267] Btrfs: fix file corruption after cloning inline extents Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 202/267] selinux: dont waste ebitmap space when importing NetLabel categories Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 203/267] selinux: fix mprotect PROT_EXEC regression caused by mm change Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 204/267] fuse: initialize fc->release before calling it Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 205/267] crush: fix a bug in tree bucket decode Greg Kroah-Hartman
2015-07-31 19:40 ` [PATCH 4.1 206/267] ACPI / resources: free memory on error in add_region_before() Greg Kroah-Hartman
2015-07-31 19:40 ` Greg Kroah-Hartman [this message]
2015-07-31 19:40 ` [PATCH 4.1 208/267] ACPI / LPSS: Fix up acpi_lpss_create_device() Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 209/267] ACPICA: Tables: Enable both 32-bit and 64-bit FACS Greg Kroah-Hartman
2015-07-31 20:25   ` Moore, Robert
2015-07-31 20:33     ` Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 210/267] ACPICA: Tables: Fix an issue that FACS initialization is performed twice Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 211/267] ACPICA: Tables: Enable default 64-bit FADT addresses favor Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 212/267] ACPI / PCI: Fix regressions caused by resource_size_t overflow with 32-bit kernel Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 213/267] serial: samsung: only use earlycon for console Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 214/267] mmc: card: Fixup request missing in mmc_blk_issue_rw_rq Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 215/267] mmc: sdhci: Restore behavior while creating OCR mask Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 216/267] PM / clk: Fix clock error check in __pm_clk_add() Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 217/267] RDMA/ocrdma: fix double free on pd Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 218/267] tty: remove platform_sysrq_reset_seq Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 219/267] mm/hugetlb: introduce minimum hugepage order Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 220/267] PM / sleep: Increase default DPM watchdog timeout to 60 Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 221/267] firmware: dmi_scan: Only honor end-of-table for 64-bit tables Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 222/267] compiler-intel: fix wrong compiler barrier() macro Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 223/267] __bitmap_parselist: fix bug in empty string handling Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 224/267] security_syslog() should be called once only Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 225/267] mac80211: fix the beacon csa counter for mesh and ibss Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 226/267] iwlwifi: mvm: fix ROC reference accounting Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 227/267] cfg80211: ignore netif running state when changing iftype Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 228/267] mac80211: prevent possible crypto tx tailroom corruption Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 229/267] e1000e: Cleanup handling of VLAN_HLEN as a part of max frame size Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 230/267] clocksource: exynos_mct: Avoid blocking calls in the cpu hotplug notifier Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 231/267] ideapad_laptop: Lenovo G50-30 fix rfkill reports wireless blocked Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 232/267] ideapad: fix software rfkill setting Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 233/267] of/address: use atomic allocation in pci_register_io_range() Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 235/267] ovl: lookup whiteouts outside iterate_dir() Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 236/267] of: return NUMA_NO_NODE from fallback of_node_to_nid() Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 239/267] clk: Fix JSON output in debugfs Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 240/267] clk: ti: dra7-atl-clock: Fix possible ERR_PTR dereference Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 241/267] clk: qcom: Use parent rate when set rate to pixel RCG clock Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 242/267] pNFS: Fix a memory leak when attempted pnfs fails Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 243/267] pNFS/flexfiles: Fix the reset of struct pgio_header when resending Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 244/267] NFS: Fix size of NFSACL SETACL operations Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 245/267] fixing infinite OPEN loop in 4.0 stateid recovery Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 246/267] nfs: increase size of EXCHANGE_ID name string buffer Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 247/267] NFS: Ensure we set NFS_CONTEXT_RESEND_WRITES when requeuing writes Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 248/267] nfs: fix potential credential leak in ff_layout_update_mirror_cred Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 249/267] nfs: always update creds in mirror, even when we have an already connected ds Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 250/267] SUNRPC: Fix a memory leak in the backchannel code Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 251/267] 9p: forgetting to cancel request on interrupted zero-copy RPC Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 252/267] 9p: dont leave a half-initialized inode sitting around Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 253/267] rbd: use GFP_NOIO in rbd_obj_request_create() Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 254/267] agp/intel: Fix typo in needs_ilk_vtd_wa() Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 255/267] ARM: dove: fix legacy dove IRQ numbers Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 256/267] EDAC, octeon: Fix broken build due to model helper renames Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 257/267] p9_client_write(): avoid double p9_free_req() Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 258/267] ARM64: smp: Fix suspicious RCU usage with ipi tracepoints Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 259/267] arm64: bpf: fix out-of-bounds read in bpf2a64_offset() Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 260/267] arm64: bpf: fix endianness conversion bugs Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 261/267] arm64: Dont report clear pmds and puds as huge Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 262/267] perf bench numa: Fix to show proper convergence stats Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 263/267] ARM: 8393/1: smp: Fix suspicious RCU usage with ipi tracepoints Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 264/267] ARM: 8397/1: fix vdsomunge not to depend on glibc specific error.h Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 265/267] hpfs: kstrdup() out of memory handling Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 266/267] hpfs: hpfs_error: Remove static buffer, use vsprintf extension %pV instead Greg Kroah-Hartman
2015-07-31 19:41 ` [PATCH 4.1 267/267] Fix firmware loader uevent buffer NULL pointer dereference Greg Kroah-Hartman
2015-08-01  2:09 ` [PATCH 4.1 000/267] 4.1.4-stable review Guenter Roeck
2015-08-03 16:16   ` Greg Kroah-Hartman
2015-08-01  6:01 ` Sudip Mukherjee
2015-08-03 16:17   ` Greg Kroah-Hartman
2015-08-03 18:30 ` Shuah Khan
2015-08-03 21:12   ` Greg Kroah-Hartman

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=20150731194009.451571336@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rafael.j.wysocki@intel.com \
    --cc=roland@purestorage.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;
as well as URLs for NNTP newsgroup(s).