public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Ben Hutchings <ben@decadent.org.uk>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: akpm@linux-foundation.org,
	"Markus F.X.J. Oberhumer" <markus@oberhumer.com>
Subject: [PATCH 3.2 093/125] lib/lzo: Rename lzo1x_decompress.c to lzo1x_decompress_safe.c
Date: Tue, 08 Jul 2014 20:01:50 +0100	[thread overview]
Message-ID: <lsq.1404846110.288405812@decadent.org.uk> (raw)
In-Reply-To: <lsq.1404846109.699842714@decadent.org.uk>

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

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

From: "Markus F.X.J. Oberhumer" <markus@oberhumer.com>

commit b6bec26cea948148a9420e7a0ac337f925de49e7 upstream.

Rename the source file to match the function name and thereby
also make room for a possible future even slightly faster
"non-safe" decompressor version.

Signed-off-by: Markus F.X.J. Oberhumer <markus@oberhumer.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
 lib/decompress_unlzo.c          |   2 +-
 lib/lzo/Makefile                |   2 +-
 lib/lzo/lzo1x_decompress.c      | 255 ----------------------------------------
 lib/lzo/lzo1x_decompress_safe.c | 255 ++++++++++++++++++++++++++++++++++++++++
 4 files changed, 257 insertions(+), 257 deletions(-)
 delete mode 100644 lib/lzo/lzo1x_decompress.c
 create mode 100644 lib/lzo/lzo1x_decompress_safe.c

--- a/lib/decompress_unlzo.c
+++ b/lib/decompress_unlzo.c
@@ -31,7 +31,7 @@
  */
 
 #ifdef STATIC
-#include "lzo/lzo1x_decompress.c"
+#include "lzo/lzo1x_decompress_safe.c"
 #else
 #include <linux/decompress/unlzo.h>
 #endif
--- a/lib/lzo/Makefile
+++ b/lib/lzo/Makefile
@@ -1,5 +1,5 @@
 lzo_compress-objs := lzo1x_compress.o
-lzo_decompress-objs := lzo1x_decompress.o
+lzo_decompress-objs := lzo1x_decompress_safe.o
 
 obj-$(CONFIG_LZO_COMPRESS) += lzo_compress.o
 obj-$(CONFIG_LZO_DECOMPRESS) += lzo_decompress.o
--- a/lib/lzo/lzo1x_decompress.c
+++ /dev/null
@@ -1,255 +0,0 @@
-/*
- *  LZO1X Decompressor from MiniLZO
- *
- *  Copyright (C) 1996-2005 Markus F.X.J. Oberhumer <markus@oberhumer.com>
- *
- *  The full LZO package can be found at:
- *  http://www.oberhumer.com/opensource/lzo/
- *
- *  Changed for kernel use by:
- *  Nitin Gupta <nitingupta910@gmail.com>
- *  Richard Purdie <rpurdie@openedhand.com>
- */
-
-#ifndef STATIC
-#include <linux/module.h>
-#include <linux/kernel.h>
-#endif
-
-#include <asm/unaligned.h>
-#include <linux/lzo.h>
-#include "lzodefs.h"
-
-#define HAVE_IP(x, ip_end, ip) ((size_t)(ip_end - ip) < (x))
-#define HAVE_OP(x, op_end, op) ((size_t)(op_end - op) < (x))
-#define HAVE_LB(m_pos, out, op) (m_pos < out || m_pos >= op)
-
-#define COPY4(dst, src)	\
-		put_unaligned(get_unaligned((const u32 *)(src)), (u32 *)(dst))
-
-int lzo1x_decompress_safe(const unsigned char *in, size_t in_len,
-			unsigned char *out, size_t *out_len)
-{
-	const unsigned char * const ip_end = in + in_len;
-	unsigned char * const op_end = out + *out_len;
-	const unsigned char *ip = in, *m_pos;
-	unsigned char *op = out;
-	size_t t;
-
-	*out_len = 0;
-
-	if (*ip > 17) {
-		t = *ip++ - 17;
-		if (t < 4)
-			goto match_next;
-		if (HAVE_OP(t, op_end, op))
-			goto output_overrun;
-		if (HAVE_IP(t + 1, ip_end, ip))
-			goto input_overrun;
-		do {
-			*op++ = *ip++;
-		} while (--t > 0);
-		goto first_literal_run;
-	}
-
-	while ((ip < ip_end)) {
-		t = *ip++;
-		if (t >= 16)
-			goto match;
-		if (t == 0) {
-			if (HAVE_IP(1, ip_end, ip))
-				goto input_overrun;
-			while (*ip == 0) {
-				t += 255;
-				ip++;
-				if (HAVE_IP(1, ip_end, ip))
-					goto input_overrun;
-			}
-			t += 15 + *ip++;
-		}
-		if (HAVE_OP(t + 3, op_end, op))
-			goto output_overrun;
-		if (HAVE_IP(t + 4, ip_end, ip))
-			goto input_overrun;
-
-		COPY4(op, ip);
-		op += 4;
-		ip += 4;
-		if (--t > 0) {
-			if (t >= 4) {
-				do {
-					COPY4(op, ip);
-					op += 4;
-					ip += 4;
-					t -= 4;
-				} while (t >= 4);
-				if (t > 0) {
-					do {
-						*op++ = *ip++;
-					} while (--t > 0);
-				}
-			} else {
-				do {
-					*op++ = *ip++;
-				} while (--t > 0);
-			}
-		}
-
-first_literal_run:
-		t = *ip++;
-		if (t >= 16)
-			goto match;
-		m_pos = op - (1 + M2_MAX_OFFSET);
-		m_pos -= t >> 2;
-		m_pos -= *ip++ << 2;
-
-		if (HAVE_LB(m_pos, out, op))
-			goto lookbehind_overrun;
-
-		if (HAVE_OP(3, op_end, op))
-			goto output_overrun;
-		*op++ = *m_pos++;
-		*op++ = *m_pos++;
-		*op++ = *m_pos;
-
-		goto match_done;
-
-		do {
-match:
-			if (t >= 64) {
-				m_pos = op - 1;
-				m_pos -= (t >> 2) & 7;
-				m_pos -= *ip++ << 3;
-				t = (t >> 5) - 1;
-				if (HAVE_LB(m_pos, out, op))
-					goto lookbehind_overrun;
-				if (HAVE_OP(t + 3 - 1, op_end, op))
-					goto output_overrun;
-				goto copy_match;
-			} else if (t >= 32) {
-				t &= 31;
-				if (t == 0) {
-					if (HAVE_IP(1, ip_end, ip))
-						goto input_overrun;
-					while (*ip == 0) {
-						t += 255;
-						ip++;
-						if (HAVE_IP(1, ip_end, ip))
-							goto input_overrun;
-					}
-					t += 31 + *ip++;
-				}
-				m_pos = op - 1;
-				m_pos -= get_unaligned_le16(ip) >> 2;
-				ip += 2;
-			} else if (t >= 16) {
-				m_pos = op;
-				m_pos -= (t & 8) << 11;
-
-				t &= 7;
-				if (t == 0) {
-					if (HAVE_IP(1, ip_end, ip))
-						goto input_overrun;
-					while (*ip == 0) {
-						t += 255;
-						ip++;
-						if (HAVE_IP(1, ip_end, ip))
-							goto input_overrun;
-					}
-					t += 7 + *ip++;
-				}
-				m_pos -= get_unaligned_le16(ip) >> 2;
-				ip += 2;
-				if (m_pos == op)
-					goto eof_found;
-				m_pos -= 0x4000;
-			} else {
-				m_pos = op - 1;
-				m_pos -= t >> 2;
-				m_pos -= *ip++ << 2;
-
-				if (HAVE_LB(m_pos, out, op))
-					goto lookbehind_overrun;
-				if (HAVE_OP(2, op_end, op))
-					goto output_overrun;
-
-				*op++ = *m_pos++;
-				*op++ = *m_pos;
-				goto match_done;
-			}
-
-			if (HAVE_LB(m_pos, out, op))
-				goto lookbehind_overrun;
-			if (HAVE_OP(t + 3 - 1, op_end, op))
-				goto output_overrun;
-
-			if (t >= 2 * 4 - (3 - 1) && (op - m_pos) >= 4) {
-				COPY4(op, m_pos);
-				op += 4;
-				m_pos += 4;
-				t -= 4 - (3 - 1);
-				do {
-					COPY4(op, m_pos);
-					op += 4;
-					m_pos += 4;
-					t -= 4;
-				} while (t >= 4);
-				if (t > 0)
-					do {
-						*op++ = *m_pos++;
-					} while (--t > 0);
-			} else {
-copy_match:
-				*op++ = *m_pos++;
-				*op++ = *m_pos++;
-				do {
-					*op++ = *m_pos++;
-				} while (--t > 0);
-			}
-match_done:
-			t = ip[-2] & 3;
-			if (t == 0)
-				break;
-match_next:
-			if (HAVE_OP(t, op_end, op))
-				goto output_overrun;
-			if (HAVE_IP(t + 1, ip_end, ip))
-				goto input_overrun;
-
-			*op++ = *ip++;
-			if (t > 1) {
-				*op++ = *ip++;
-				if (t > 2)
-					*op++ = *ip++;
-			}
-
-			t = *ip++;
-		} while (ip < ip_end);
-	}
-
-	*out_len = op - out;
-	return LZO_E_EOF_NOT_FOUND;
-
-eof_found:
-	*out_len = op - out;
-	return (ip == ip_end ? LZO_E_OK :
-		(ip < ip_end ? LZO_E_INPUT_NOT_CONSUMED : LZO_E_INPUT_OVERRUN));
-input_overrun:
-	*out_len = op - out;
-	return LZO_E_INPUT_OVERRUN;
-
-output_overrun:
-	*out_len = op - out;
-	return LZO_E_OUTPUT_OVERRUN;
-
-lookbehind_overrun:
-	*out_len = op - out;
-	return LZO_E_LOOKBEHIND_OVERRUN;
-}
-#ifndef STATIC
-EXPORT_SYMBOL_GPL(lzo1x_decompress_safe);
-
-MODULE_LICENSE("GPL");
-MODULE_DESCRIPTION("LZO1X Decompressor");
-
-#endif
--- /dev/null
+++ b/lib/lzo/lzo1x_decompress_safe.c
@@ -0,0 +1,255 @@
+/*
+ *  LZO1X Decompressor from MiniLZO
+ *
+ *  Copyright (C) 1996-2005 Markus F.X.J. Oberhumer <markus@oberhumer.com>
+ *
+ *  The full LZO package can be found at:
+ *  http://www.oberhumer.com/opensource/lzo/
+ *
+ *  Changed for kernel use by:
+ *  Nitin Gupta <nitingupta910@gmail.com>
+ *  Richard Purdie <rpurdie@openedhand.com>
+ */
+
+#ifndef STATIC
+#include <linux/module.h>
+#include <linux/kernel.h>
+#endif
+
+#include <asm/unaligned.h>
+#include <linux/lzo.h>
+#include "lzodefs.h"
+
+#define HAVE_IP(x, ip_end, ip) ((size_t)(ip_end - ip) < (x))
+#define HAVE_OP(x, op_end, op) ((size_t)(op_end - op) < (x))
+#define HAVE_LB(m_pos, out, op) (m_pos < out || m_pos >= op)
+
+#define COPY4(dst, src)	\
+		put_unaligned(get_unaligned((const u32 *)(src)), (u32 *)(dst))
+
+int lzo1x_decompress_safe(const unsigned char *in, size_t in_len,
+			unsigned char *out, size_t *out_len)
+{
+	const unsigned char * const ip_end = in + in_len;
+	unsigned char * const op_end = out + *out_len;
+	const unsigned char *ip = in, *m_pos;
+	unsigned char *op = out;
+	size_t t;
+
+	*out_len = 0;
+
+	if (*ip > 17) {
+		t = *ip++ - 17;
+		if (t < 4)
+			goto match_next;
+		if (HAVE_OP(t, op_end, op))
+			goto output_overrun;
+		if (HAVE_IP(t + 1, ip_end, ip))
+			goto input_overrun;
+		do {
+			*op++ = *ip++;
+		} while (--t > 0);
+		goto first_literal_run;
+	}
+
+	while ((ip < ip_end)) {
+		t = *ip++;
+		if (t >= 16)
+			goto match;
+		if (t == 0) {
+			if (HAVE_IP(1, ip_end, ip))
+				goto input_overrun;
+			while (*ip == 0) {
+				t += 255;
+				ip++;
+				if (HAVE_IP(1, ip_end, ip))
+					goto input_overrun;
+			}
+			t += 15 + *ip++;
+		}
+		if (HAVE_OP(t + 3, op_end, op))
+			goto output_overrun;
+		if (HAVE_IP(t + 4, ip_end, ip))
+			goto input_overrun;
+
+		COPY4(op, ip);
+		op += 4;
+		ip += 4;
+		if (--t > 0) {
+			if (t >= 4) {
+				do {
+					COPY4(op, ip);
+					op += 4;
+					ip += 4;
+					t -= 4;
+				} while (t >= 4);
+				if (t > 0) {
+					do {
+						*op++ = *ip++;
+					} while (--t > 0);
+				}
+			} else {
+				do {
+					*op++ = *ip++;
+				} while (--t > 0);
+			}
+		}
+
+first_literal_run:
+		t = *ip++;
+		if (t >= 16)
+			goto match;
+		m_pos = op - (1 + M2_MAX_OFFSET);
+		m_pos -= t >> 2;
+		m_pos -= *ip++ << 2;
+
+		if (HAVE_LB(m_pos, out, op))
+			goto lookbehind_overrun;
+
+		if (HAVE_OP(3, op_end, op))
+			goto output_overrun;
+		*op++ = *m_pos++;
+		*op++ = *m_pos++;
+		*op++ = *m_pos;
+
+		goto match_done;
+
+		do {
+match:
+			if (t >= 64) {
+				m_pos = op - 1;
+				m_pos -= (t >> 2) & 7;
+				m_pos -= *ip++ << 3;
+				t = (t >> 5) - 1;
+				if (HAVE_LB(m_pos, out, op))
+					goto lookbehind_overrun;
+				if (HAVE_OP(t + 3 - 1, op_end, op))
+					goto output_overrun;
+				goto copy_match;
+			} else if (t >= 32) {
+				t &= 31;
+				if (t == 0) {
+					if (HAVE_IP(1, ip_end, ip))
+						goto input_overrun;
+					while (*ip == 0) {
+						t += 255;
+						ip++;
+						if (HAVE_IP(1, ip_end, ip))
+							goto input_overrun;
+					}
+					t += 31 + *ip++;
+				}
+				m_pos = op - 1;
+				m_pos -= get_unaligned_le16(ip) >> 2;
+				ip += 2;
+			} else if (t >= 16) {
+				m_pos = op;
+				m_pos -= (t & 8) << 11;
+
+				t &= 7;
+				if (t == 0) {
+					if (HAVE_IP(1, ip_end, ip))
+						goto input_overrun;
+					while (*ip == 0) {
+						t += 255;
+						ip++;
+						if (HAVE_IP(1, ip_end, ip))
+							goto input_overrun;
+					}
+					t += 7 + *ip++;
+				}
+				m_pos -= get_unaligned_le16(ip) >> 2;
+				ip += 2;
+				if (m_pos == op)
+					goto eof_found;
+				m_pos -= 0x4000;
+			} else {
+				m_pos = op - 1;
+				m_pos -= t >> 2;
+				m_pos -= *ip++ << 2;
+
+				if (HAVE_LB(m_pos, out, op))
+					goto lookbehind_overrun;
+				if (HAVE_OP(2, op_end, op))
+					goto output_overrun;
+
+				*op++ = *m_pos++;
+				*op++ = *m_pos;
+				goto match_done;
+			}
+
+			if (HAVE_LB(m_pos, out, op))
+				goto lookbehind_overrun;
+			if (HAVE_OP(t + 3 - 1, op_end, op))
+				goto output_overrun;
+
+			if (t >= 2 * 4 - (3 - 1) && (op - m_pos) >= 4) {
+				COPY4(op, m_pos);
+				op += 4;
+				m_pos += 4;
+				t -= 4 - (3 - 1);
+				do {
+					COPY4(op, m_pos);
+					op += 4;
+					m_pos += 4;
+					t -= 4;
+				} while (t >= 4);
+				if (t > 0)
+					do {
+						*op++ = *m_pos++;
+					} while (--t > 0);
+			} else {
+copy_match:
+				*op++ = *m_pos++;
+				*op++ = *m_pos++;
+				do {
+					*op++ = *m_pos++;
+				} while (--t > 0);
+			}
+match_done:
+			t = ip[-2] & 3;
+			if (t == 0)
+				break;
+match_next:
+			if (HAVE_OP(t, op_end, op))
+				goto output_overrun;
+			if (HAVE_IP(t + 1, ip_end, ip))
+				goto input_overrun;
+
+			*op++ = *ip++;
+			if (t > 1) {
+				*op++ = *ip++;
+				if (t > 2)
+					*op++ = *ip++;
+			}
+
+			t = *ip++;
+		} while (ip < ip_end);
+	}
+
+	*out_len = op - out;
+	return LZO_E_EOF_NOT_FOUND;
+
+eof_found:
+	*out_len = op - out;
+	return (ip == ip_end ? LZO_E_OK :
+		(ip < ip_end ? LZO_E_INPUT_NOT_CONSUMED : LZO_E_INPUT_OVERRUN));
+input_overrun:
+	*out_len = op - out;
+	return LZO_E_INPUT_OVERRUN;
+
+output_overrun:
+	*out_len = op - out;
+	return LZO_E_OUTPUT_OVERRUN;
+
+lookbehind_overrun:
+	*out_len = op - out;
+	return LZO_E_LOOKBEHIND_OVERRUN;
+}
+#ifndef STATIC
+EXPORT_SYMBOL_GPL(lzo1x_decompress_safe);
+
+MODULE_LICENSE("GPL");
+MODULE_DESCRIPTION("LZO1X Decompressor");
+
+#endif


  parent reply	other threads:[~2014-07-08 19:01 UTC|newest]

Thread overview: 137+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-08 19:01 [PATCH 3.2 000/125] 3.2.61-rc1 review Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 044/125] md: always set MD_RECOVERY_INTR when aborting a reshape or other "resync" Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 076/125] evm: prohibit userspace writing 'security.evm' HMAC value Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 001/125] mm: highmem: don't treat PKMAP_ADDR(LAST_PKMAP) as a highmem address Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 039/125] USB: io_ti: fix firmware download on big-endian machines (part 2) Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 028/125] USB: option: fix runtime PM handling Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 121/125] Documentation: Update stable address in Chinese and Japanese translations Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 117/125] [SCSI] Fix spurious request sense in error handling Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 108/125] MIPS: Cleanup flags in syscall flags handlers Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 052/125] nfsd: getattr for FATTR4_WORD0_FILES_AVAIL needs the statfs buffer Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 073/125] auditsc: audit_krule mask accesses need bounds checking Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 123/125] skbuff: add an api to orphan frags Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 011/125] ARM: imx: fix error handling in ipu device registration Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 003/125] genirq: Sanitize spurious interrupt detection of threaded irqs Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 045/125] s390/lowcore: reserve 96 bytes for IRB in lowcore Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 031/125] USB: usb_wwan: fix write and suspend race Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 104/125] [SCSI] Stop accepting SCSI requests before removing a device Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 109/125] MIPS: asm: thread_info: Add _TIF_SECCOMP flag Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 089/125] Bluetooth: Fix SSP acceptor just-works confirmation without MITM Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 098/125] mm: revert 0def08e3 ("mm/mempolicy.c: check return code of check_range") Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 095/125] lzo: properly check for overruns Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 090/125] rt2x00: disable TKIP on USB Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 019/125] ahci: add PCI ID for Marvell 88SE91A0 SATA Controller Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 102/125] MIPS: MSC: Prevent out-of-bounds writes to MIPS SC ioremap'd region Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 049/125] IB/umad: Fix error handling Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 063/125] mm: vmscan: clear kswapd's special reclaim powers before exiting Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 072/125] drm/radeon: stop poisoning the GART TLB Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 016/125] mac80211: fix IBSS join by initializing last_scan_completed Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 002/125] bluetooth: hci_ldisc: fix deadlock condition Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 024/125] USB: sierra: fix AA deadlock in open error path Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 051/125] RDMA/cxgb4: Add missing padding at end of struct c4iw_create_cq_resp Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 053/125] UBIFS: Remove incorrect assertion in shrink_tnc() Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 111/125] net: tunnels - enable module autoloading Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 092/125] tracing: Fix syscall_*regfunc() vs copy_process() race Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 040/125] USB: ftdi_sio: add NovaTech OrionLXm product ID Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 008/125] IB/srp: Fix a sporadic crash triggered by cable pulling Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 035/125] USB: cdc-acm: fix write and resume race Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 071/125] Btrfs: fix double free in find_lock_delalloc_range Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 018/125] drm/i915: Only copy back the modified fields to userspace from execbuffer Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 084/125] ALSA: control: Fix replacing user controls Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 085/125] ALSA: control: Don't access controls outside of protected regions Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 087/125] ALSA: control: Make sure that id->index does not overflow Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 010/125] reiserfs: call truncate_setsize under tailpack mutex Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 036/125] USB: cdc-acm: fix broken runtime suspend Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 037/125] USB: cdc-acm: fix runtime PM for control messages Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 070/125] nfsd4: fix FREE_STATEID lockowner leak Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 012/125] matroxfb: perform a dummy read of M_STATUS Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 113/125] sctp: Fix sk_ack_backlog wrap-around problem Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 112/125] net: fix inet_getid() and ipv6_select_ident() bugs Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 038/125] USB: cdc-acm: fix potential urb leak and PM imbalance in write Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 106/125] [SCSI] dual scan thread bug fix Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 065/125] ptrace: fix fork event messages across pid namespaces Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 017/125] drm/i915: s/DRM_ERROR/DRM_DEBUG in i915_gem_execbuffer.c Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 015/125] Input: synaptics - T540p - unify with other LEN0034 models Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 115/125] net/mlx4_core: Preserve pci_dev_data after __mlx4_remove_one() Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 043/125] powerpc: Fix 64 bit builds with binutils 2.24 Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 122/125] ptrace,x86: force IRET path after a ptrace_stop() Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 059/125] mm: fix sleeping function warning from __put_anon_vma Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 054/125] drm/radeon: fix typo in radeon_connector_is_dp12_capable() Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 032/125] USB: usb_wwan: fix urb leak at shutdown Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 058/125] nfsd4: use recall_lock for delegation hashing Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 046/125] mac80211: don't check netdev state for debugfs read/write Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 074/125] watchdog: ath79_wdt: avoid spurious restarts on AR934x Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 007/125] HID: core: fix validation of report id 0 Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 042/125] usb: usbtest: fix unlink write error with pattern 1 Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 050/125] RDMA/cxgb4: Fix four byte info leak in c4iw_create_cq() Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 091/125] b43: fix frequency reported on G-PHY with /new/ firmware Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 041/125] USB: serial: option: add support for Novatel E371 PCIe card Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 077/125] ALSA: hda - Add quirk for external mic on Lifebook U904 Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 014/125] ARM: 8051/1: put_user: fix possible data corruption in put_user Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 086/125] ALSA: control: Handle numid overflow Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 057/125] ahci: Add Device ID for HighPoint RocketRaid 642L Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 020/125] ext4: fix zeroing of page during writeback Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 047/125] rtmutex: Fix deadlock detector for real Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 062/125] iscsi-target: Reject mutual authentication with reflected CHAP_C Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 120/125] ARM: 8012/1: kdump: Avoid overflow when converting pfn to physaddr Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 118/125] [SCSI] megaraid: Use resource_size_t for PCI resources, not long Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 033/125] USB: usb_wwan: fix potential blocked I/O after resume Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 056/125] drm/radeon: only apply hdmi bpc pll flags when encoder mode is hdmi Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 081/125] rtmutex: Plug slow unlock race Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 006/125] ACPI: Fix conflict between customized DSDT and DSDT local copy Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 061/125] ALSA: hda/realtek - Add support of ALC891 codec Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 100/125] drm: fix NULL pointer access by wrong ioctl Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 067/125] Input: elantech - deal with clickpads reporting right button events Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 079/125] rtmutex: Handle deadlock detection smarter Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 034/125] USB: cdc-acm: fix write and suspend race Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 026/125] USB: sierra: fix urb and memory leak on disconnect Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 022/125] IB/qib: Fix port in pkey change event Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 124/125] skbuff: export skb_copy_ubufs Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 055/125] drm/radeon/atom: fix dithering on certain panels Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 064/125] rtc: rtc-at91rm9200: fix infinite wait for ACKUPD irq Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 097/125] hugetlb: fix copy_hugetlb_page_range() to handle migration/hwpoisoned entry Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 107/125] perf: Fix race in removing an event Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 066/125] idr: fix overflow bug during maximum ID calculation at maximum height Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 048/125] xhci: delete endpoints from bandwidth list before freeing whole device Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 101/125] recordmcount/MIPS: Fix possible incorrect mcount_loc table entries in modules Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 013/125] USB: Avoid runtime suspend loops for HCDs that can't handle suspend/resume Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 060/125] powerpc/serial: Use saner flags when creating legacy ports Ben Hutchings
2014-07-08 19:01 ` Ben Hutchings [this message]
2014-07-08 19:01 ` [PATCH 3.2 069/125] Input: synaptics - fix resolution for manually provided min/max Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 080/125] rtmutex: Detect changes in the pi lock chain Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 096/125] x86_32, entry: Do syscall exit work on badsys (CVE-2014-4508) Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 078/125] mm: rmap: fix use-after-free in __put_anon_vma Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 110/125] netlink: rate-limit leftover bytes warning and print process name Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 099/125] mm: fix crashes from mbind() merging vmas Ben Hutchings
2014-07-08 20:45   ` Hugh Dickins
2014-07-08 21:26     ` Hugh Dickins
2014-07-09  1:53       ` Ben Hutchings
2014-07-09  5:58         ` Hugh Dickins
2014-07-08 19:01 ` [PATCH 3.2 075/125] powerpc: Don't setup CPUs with bad status Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 103/125] target: Fix left-over se_lun->lun_sep pointer OOPs Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 068/125] Input: elantech - don't set bit 1 of reg_10 when the no_hw_res quirk is set Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 125/125] skbuff: skb_segment: orphan frags before copying Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 114/125] mlx4_core: Stash PCI ID driver_data in mlx4_priv structure Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 004/125] UBIFS: fix an mmap and fsync race condition Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 083/125] ALSA: control: Protect user controls against concurrent access Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 025/125] USB: sierra: fix urb and memory leak in resume error path Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 021/125] ext4: fix wrong assert in ext4_mb_normalize_request() Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 009/125] reiserfs: drop vmtruncate Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 029/125] USB: usb_wwan: fix urb leak in write error path Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 094/125] lib/lzo: Update LZO compression to current upstream version Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 088/125] Bluetooth: Fix check for connection encryption Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 005/125] Input: synaptics - add min/max quirk for the ThinkPad W540 Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 030/125] USB: usb_wwan: fix race between write and resume Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 082/125] USB: EHCI: avoid BIOS handover on the HASEE E200 Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 105/125] [SCSI] fix our current target reap infrastructure Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 027/125] USB: sierra: fix remote wakeup Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 119/125] iommu/vt-d: Fix missing IOTLB flush in intel_iommu_unmap() Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 023/125] IB/ipath: Translate legacy diagpkt into newer extended diagpkt Ben Hutchings
2014-07-08 19:01 ` [PATCH 3.2 116/125] target: Explicitly clear ramdisk_mcp backend pages Ben Hutchings
2014-07-08 20:12 ` [PATCH 3.2 000/125] 3.2.61-rc1 review Guenter Roeck
2014-07-09  1:27 ` Guenter Roeck
2014-07-09  2:01   ` Ben Hutchings
2014-07-09 11:53   ` Satoru Takeuchi
2014-07-09 21:30     ` Ben Hutchings
2014-07-09  2:40 ` Ben Hutchings
2014-07-09  3:13 ` Guenter Roeck

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=lsq.1404846110.288405812@decadent.org.uk \
    --to=ben@decadent.org.uk \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=markus@oberhumer.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