linux-kernel.vger.kernel.org archive mirror
 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, "Eric Biggers" <ebiggers@google.com>,
	syzbot+264bca3a6e8d645550d3@syzkaller.appspotmail.com,
	"Herbert Xu" <herbert@gondor.apana.org.au>
Subject: [PATCH 3.16 017/328] crypto: vmac - separate tfm and request context
Date: Sun, 09 Dec 2018 21:50:33 +0000	[thread overview]
Message-ID: <lsq.1544392233.207941729@decadent.org.uk> (raw)
In-Reply-To: <lsq.1544392232.713909046@decadent.org.uk>

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

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

From: Eric Biggers <ebiggers@google.com>

commit bb29648102335586e9a66289a1d98a0cb392b6e5 upstream.

syzbot reported a crash in vmac_final() when multiple threads
concurrently use the same "vmac(aes)" transform through AF_ALG.  The bug
is pretty fundamental: the VMAC template doesn't separate per-request
state from per-tfm (per-key) state like the other hash algorithms do,
but rather stores it all in the tfm context.  That's wrong.

Also, vmac_final() incorrectly zeroes most of the state including the
derived keys and cached pseudorandom pad.  Therefore, only the first
VMAC invocation with a given key calculates the correct digest.

Fix these bugs by splitting the per-tfm state from the per-request state
and using the proper init/update/final sequencing for requests.

Reproducer for the crash:

    #include <linux/if_alg.h>
    #include <sys/socket.h>
    #include <unistd.h>

    int main()
    {
            int fd;
            struct sockaddr_alg addr = {
                    .salg_type = "hash",
                    .salg_name = "vmac(aes)",
            };
            char buf[256] = { 0 };

            fd = socket(AF_ALG, SOCK_SEQPACKET, 0);
            bind(fd, (void *)&addr, sizeof(addr));
            setsockopt(fd, SOL_ALG, ALG_SET_KEY, buf, 16);
            fork();
            fd = accept(fd, NULL, NULL);
            for (;;)
                    write(fd, buf, 256);
    }

The immediate cause of the crash is that vmac_ctx_t.partial_size exceeds
VMAC_NHBYTES, causing vmac_final() to memset() a negative length.

Reported-by: syzbot+264bca3a6e8d645550d3@syzkaller.appspotmail.com
Fixes: f1939f7c5645 ("crypto: vmac - New hash algorithm for intel_txt support")
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
 crypto/vmac.c         | 408 +++++++++++++++++++-----------------------
 include/crypto/vmac.h |  63 -------
 2 files changed, 181 insertions(+), 290 deletions(-)
 delete mode 100644 include/crypto/vmac.h

--- a/crypto/vmac.c
+++ b/crypto/vmac.c
@@ -1,6 +1,10 @@
 /*
- * Modified to interface to the Linux kernel
+ * VMAC: Message Authentication Code using Universal Hashing
+ *
+ * Reference: https://tools.ietf.org/html/draft-krovetz-vmac-01
+ *
  * Copyright (c) 2009, Intel Corporation.
+ * Copyright (c) 2018, Google Inc.
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms and conditions of the GNU General Public License,
@@ -16,14 +20,15 @@
  * Place - Suite 330, Boston, MA 02111-1307 USA.
  */
 
-/* --------------------------------------------------------------------------
- * VMAC and VHASH Implementation by Ted Krovetz (tdk@acm.org) and Wei Dai.
- * This implementation is herby placed in the public domain.
- * The authors offers no warranty. Use at your own risk.
- * Please send bug reports to the authors.
- * Last modified: 17 APR 08, 1700 PDT
- * ----------------------------------------------------------------------- */
+/*
+ * Derived from:
+ *	VMAC and VHASH Implementation by Ted Krovetz (tdk@acm.org) and Wei Dai.
+ *	This implementation is herby placed in the public domain.
+ *	The authors offers no warranty. Use at your own risk.
+ *	Last modified: 17 APR 08, 1700 PDT
+ */
 
+#include <asm/unaligned.h>
 #include <linux/init.h>
 #include <linux/types.h>
 #include <linux/crypto.h>
@@ -31,10 +36,36 @@
 #include <linux/scatterlist.h>
 #include <asm/byteorder.h>
 #include <crypto/scatterwalk.h>
-#include <crypto/vmac.h>
 #include <crypto/internal/hash.h>
 
 /*
+ * User definable settings.
+ */
+#define VMAC_TAG_LEN	64
+#define VMAC_KEY_SIZE	128/* Must be 128, 192 or 256			*/
+#define VMAC_KEY_LEN	(VMAC_KEY_SIZE/8)
+#define VMAC_NHBYTES	128/* Must 2^i for any 3 < i < 13 Standard = 128*/
+
+/* per-transform (per-key) context */
+struct vmac_tfm_ctx {
+	struct crypto_cipher *cipher;
+	u64 nhkey[(VMAC_NHBYTES/8)+2*(VMAC_TAG_LEN/64-1)];
+	u64 polykey[2*VMAC_TAG_LEN/64];
+	u64 l3key[2*VMAC_TAG_LEN/64];
+};
+
+/* per-request context */
+struct vmac_desc_ctx {
+	union {
+		u8 partial[VMAC_NHBYTES];	/* partial block */
+		__le64 partial_words[VMAC_NHBYTES / 8];
+	};
+	unsigned int partial_size;	/* size of the partial block */
+	bool first_block_processed;
+	u64 polytmp[2*VMAC_TAG_LEN/64];	/* running total of L2-hash */
+};
+
+/*
  * Constants and masks
  */
 #define UINT64_C(x) x##ULL
@@ -318,13 +349,6 @@ static void poly_step_func(u64 *ahi, u64
 	} while (0)
 #endif
 
-static void vhash_abort(struct vmac_ctx *ctx)
-{
-	ctx->polytmp[0] = ctx->polykey[0] ;
-	ctx->polytmp[1] = ctx->polykey[1] ;
-	ctx->first_block_processed = 0;
-}
-
 static u64 l3hash(u64 p1, u64 p2, u64 k1, u64 k2, u64 len)
 {
 	u64 rh, rl, t, z = 0;
@@ -364,280 +388,209 @@ static u64 l3hash(u64 p1, u64 p2, u64 k1
 	return rl;
 }
 
-static void vhash_update(const unsigned char *m,
-			unsigned int mbytes, /* Pos multiple of VMAC_NHBYTES */
-			struct vmac_ctx *ctx)
-{
-	u64 rh, rl, *mptr;
-	const u64 *kptr = (u64 *)ctx->nhkey;
-	int i;
-	u64 ch, cl;
-	u64 pkh = ctx->polykey[0];
-	u64 pkl = ctx->polykey[1];
-
-	if (!mbytes)
-		return;
-
-	BUG_ON(mbytes % VMAC_NHBYTES);
+/* L1 and L2-hash one or more VMAC_NHBYTES-byte blocks */
+static void vhash_blocks(const struct vmac_tfm_ctx *tctx,
+			 struct vmac_desc_ctx *dctx,
+			 const __le64 *mptr, unsigned int blocks)
+{
+	const u64 *kptr = tctx->nhkey;
+	const u64 pkh = tctx->polykey[0];
+	const u64 pkl = tctx->polykey[1];
+	u64 ch = dctx->polytmp[0];
+	u64 cl = dctx->polytmp[1];
+	u64 rh, rl;
 
-	mptr = (u64 *)m;
-	i = mbytes / VMAC_NHBYTES;  /* Must be non-zero */
-
-	ch = ctx->polytmp[0];
-	cl = ctx->polytmp[1];
-
-	if (!ctx->first_block_processed) {
-		ctx->first_block_processed = 1;
+	if (!dctx->first_block_processed) {
+		dctx->first_block_processed = true;
 		nh_vmac_nhbytes(mptr, kptr, VMAC_NHBYTES/8, rh, rl);
 		rh &= m62;
 		ADD128(ch, cl, rh, rl);
 		mptr += (VMAC_NHBYTES/sizeof(u64));
-		i--;
+		blocks--;
 	}
 
-	while (i--) {
+	while (blocks--) {
 		nh_vmac_nhbytes(mptr, kptr, VMAC_NHBYTES/8, rh, rl);
 		rh &= m62;
 		poly_step(ch, cl, pkh, pkl, rh, rl);
 		mptr += (VMAC_NHBYTES/sizeof(u64));
 	}
 
-	ctx->polytmp[0] = ch;
-	ctx->polytmp[1] = cl;
+	dctx->polytmp[0] = ch;
+	dctx->polytmp[1] = cl;
 }
 
-static u64 vhash(unsigned char m[], unsigned int mbytes,
-			u64 *tagl, struct vmac_ctx *ctx)
+static int vmac_setkey(struct crypto_shash *tfm,
+		       const u8 *key, unsigned int keylen)
 {
-	u64 rh, rl, *mptr;
-	const u64 *kptr = (u64 *)ctx->nhkey;
-	int i, remaining;
-	u64 ch, cl;
-	u64 pkh = ctx->polykey[0];
-	u64 pkl = ctx->polykey[1];
-
-	mptr = (u64 *)m;
-	i = mbytes / VMAC_NHBYTES;
-	remaining = mbytes % VMAC_NHBYTES;
-
-	if (ctx->first_block_processed) {
-		ch = ctx->polytmp[0];
-		cl = ctx->polytmp[1];
-	} else if (i) {
-		nh_vmac_nhbytes(mptr, kptr, VMAC_NHBYTES/8, ch, cl);
-		ch &= m62;
-		ADD128(ch, cl, pkh, pkl);
-		mptr += (VMAC_NHBYTES/sizeof(u64));
-		i--;
-	} else if (remaining) {
-		nh_16(mptr, kptr, 2*((remaining+15)/16), ch, cl);
-		ch &= m62;
-		ADD128(ch, cl, pkh, pkl);
-		mptr += (VMAC_NHBYTES/sizeof(u64));
-		goto do_l3;
-	} else {/* Empty String */
-		ch = pkh; cl = pkl;
-		goto do_l3;
-	}
-
-	while (i--) {
-		nh_vmac_nhbytes(mptr, kptr, VMAC_NHBYTES/8, rh, rl);
-		rh &= m62;
-		poly_step(ch, cl, pkh, pkl, rh, rl);
-		mptr += (VMAC_NHBYTES/sizeof(u64));
-	}
-	if (remaining) {
-		nh_16(mptr, kptr, 2*((remaining+15)/16), rh, rl);
-		rh &= m62;
-		poly_step(ch, cl, pkh, pkl, rh, rl);
-	}
-
-do_l3:
-	vhash_abort(ctx);
-	remaining *= 8;
-	return l3hash(ch, cl, ctx->l3key[0], ctx->l3key[1], remaining);
-}
-
-static u64 vmac(unsigned char m[], unsigned int mbytes,
-			const unsigned char n[16], u64 *tagl,
-			struct vmac_ctx_t *ctx)
-{
-	u64 *in_n, *out_p;
-	u64 p, h;
-	int i;
-
-	in_n = ctx->__vmac_ctx.cached_nonce;
-	out_p = ctx->__vmac_ctx.cached_aes;
-
-	i = n[15] & 1;
-	if ((*(u64 *)(n+8) != in_n[1]) || (*(u64 *)(n) != in_n[0])) {
-		in_n[0] = *(u64 *)(n);
-		in_n[1] = *(u64 *)(n+8);
-		((unsigned char *)in_n)[15] &= 0xFE;
-		crypto_cipher_encrypt_one(ctx->child,
-			(unsigned char *)out_p, (unsigned char *)in_n);
+	struct vmac_tfm_ctx *tctx = crypto_shash_ctx(tfm);
+	__be64 out[2];
+	u8 in[16] = { 0 };
+	unsigned int i;
+	int err;
 
-		((unsigned char *)in_n)[15] |= (unsigned char)(1-i);
+	if (keylen != VMAC_KEY_LEN) {
+		crypto_shash_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
+		return -EINVAL;
 	}
-	p = be64_to_cpup(out_p + i);
-	h = vhash(m, mbytes, (u64 *)0, &ctx->__vmac_ctx);
-	return le64_to_cpu(p + h);
-}
-
-static int vmac_set_key(unsigned char user_key[], struct vmac_ctx_t *ctx)
-{
-	u64 in[2] = {0}, out[2];
-	unsigned i;
-	int err = 0;
 
-	err = crypto_cipher_setkey(ctx->child, user_key, VMAC_KEY_LEN);
+	err = crypto_cipher_setkey(tctx->cipher, key, keylen);
 	if (err)
 		return err;
 
 	/* Fill nh key */
-	((unsigned char *)in)[0] = 0x80;
-	for (i = 0; i < sizeof(ctx->__vmac_ctx.nhkey)/8; i += 2) {
-		crypto_cipher_encrypt_one(ctx->child,
-			(unsigned char *)out, (unsigned char *)in);
-		ctx->__vmac_ctx.nhkey[i] = be64_to_cpup(out);
-		ctx->__vmac_ctx.nhkey[i+1] = be64_to_cpup(out+1);
-		((unsigned char *)in)[15] += 1;
+	in[0] = 0x80;
+	for (i = 0; i < ARRAY_SIZE(tctx->nhkey); i += 2) {
+		crypto_cipher_encrypt_one(tctx->cipher, (u8 *)out, in);
+		tctx->nhkey[i] = be64_to_cpu(out[0]);
+		tctx->nhkey[i+1] = be64_to_cpu(out[1]);
+		in[15]++;
 	}
 
 	/* Fill poly key */
-	((unsigned char *)in)[0] = 0xC0;
-	in[1] = 0;
-	for (i = 0; i < sizeof(ctx->__vmac_ctx.polykey)/8; i += 2) {
-		crypto_cipher_encrypt_one(ctx->child,
-			(unsigned char *)out, (unsigned char *)in);
-		ctx->__vmac_ctx.polytmp[i] =
-			ctx->__vmac_ctx.polykey[i] =
-				be64_to_cpup(out) & mpoly;
-		ctx->__vmac_ctx.polytmp[i+1] =
-			ctx->__vmac_ctx.polykey[i+1] =
-				be64_to_cpup(out+1) & mpoly;
-		((unsigned char *)in)[15] += 1;
+	in[0] = 0xC0;
+	in[15] = 0;
+	for (i = 0; i < ARRAY_SIZE(tctx->polykey); i += 2) {
+		crypto_cipher_encrypt_one(tctx->cipher, (u8 *)out, in);
+		tctx->polykey[i] = be64_to_cpu(out[0]) & mpoly;
+		tctx->polykey[i+1] = be64_to_cpu(out[1]) & mpoly;
+		in[15]++;
 	}
 
 	/* Fill ip key */
-	((unsigned char *)in)[0] = 0xE0;
-	in[1] = 0;
-	for (i = 0; i < sizeof(ctx->__vmac_ctx.l3key)/8; i += 2) {
+	in[0] = 0xE0;
+	in[15] = 0;
+	for (i = 0; i < ARRAY_SIZE(tctx->l3key); i += 2) {
 		do {
-			crypto_cipher_encrypt_one(ctx->child,
-				(unsigned char *)out, (unsigned char *)in);
-			ctx->__vmac_ctx.l3key[i] = be64_to_cpup(out);
-			ctx->__vmac_ctx.l3key[i+1] = be64_to_cpup(out+1);
-			((unsigned char *)in)[15] += 1;
-		} while (ctx->__vmac_ctx.l3key[i] >= p64
-			|| ctx->__vmac_ctx.l3key[i+1] >= p64);
+			crypto_cipher_encrypt_one(tctx->cipher, (u8 *)out, in);
+			tctx->l3key[i] = be64_to_cpu(out[0]);
+			tctx->l3key[i+1] = be64_to_cpu(out[1]);
+			in[15]++;
+		} while (tctx->l3key[i] >= p64 || tctx->l3key[i+1] >= p64);
 	}
 
-	/* Invalidate nonce/aes cache and reset other elements */
-	ctx->__vmac_ctx.cached_nonce[0] = (u64)-1; /* Ensure illegal nonce */
-	ctx->__vmac_ctx.cached_nonce[1] = (u64)0;  /* Ensure illegal nonce */
-	ctx->__vmac_ctx.first_block_processed = 0;
-
-	return err;
+	return 0;
 }
 
-static int vmac_setkey(struct crypto_shash *parent,
-		const u8 *key, unsigned int keylen)
+static int vmac_init(struct shash_desc *desc)
 {
-	struct vmac_ctx_t *ctx = crypto_shash_ctx(parent);
+	const struct vmac_tfm_ctx *tctx = crypto_shash_ctx(desc->tfm);
+	struct vmac_desc_ctx *dctx = shash_desc_ctx(desc);
 
-	if (keylen != VMAC_KEY_LEN) {
-		crypto_shash_set_flags(parent, CRYPTO_TFM_RES_BAD_KEY_LEN);
-		return -EINVAL;
-	}
-
-	return vmac_set_key((u8 *)key, ctx);
-}
-
-static int vmac_init(struct shash_desc *pdesc)
-{
+	dctx->partial_size = 0;
+	dctx->first_block_processed = false;
+	memcpy(dctx->polytmp, tctx->polykey, sizeof(dctx->polytmp));
 	return 0;
 }
 
-static int vmac_update(struct shash_desc *pdesc, const u8 *p,
-		unsigned int len)
+static int vmac_update(struct shash_desc *desc, const u8 *p, unsigned int len)
 {
-	struct crypto_shash *parent = pdesc->tfm;
-	struct vmac_ctx_t *ctx = crypto_shash_ctx(parent);
-	int expand;
-	int min;
-
-	expand = VMAC_NHBYTES - ctx->partial_size > 0 ?
-			VMAC_NHBYTES - ctx->partial_size : 0;
-
-	min = len < expand ? len : expand;
-
-	memcpy(ctx->partial + ctx->partial_size, p, min);
-	ctx->partial_size += min;
-
-	if (len < expand)
-		return 0;
-
-	vhash_update(ctx->partial, VMAC_NHBYTES, &ctx->__vmac_ctx);
-	ctx->partial_size = 0;
-
-	len -= expand;
-	p += expand;
-
-	if (len % VMAC_NHBYTES) {
-		memcpy(ctx->partial, p + len - (len % VMAC_NHBYTES),
-			len % VMAC_NHBYTES);
-		ctx->partial_size = len % VMAC_NHBYTES;
+	const struct vmac_tfm_ctx *tctx = crypto_shash_ctx(desc->tfm);
+	struct vmac_desc_ctx *dctx = shash_desc_ctx(desc);
+	unsigned int n;
+
+	if (dctx->partial_size) {
+		n = min(len, VMAC_NHBYTES - dctx->partial_size);
+		memcpy(&dctx->partial[dctx->partial_size], p, n);
+		dctx->partial_size += n;
+		p += n;
+		len -= n;
+		if (dctx->partial_size == VMAC_NHBYTES) {
+			vhash_blocks(tctx, dctx, dctx->partial_words, 1);
+			dctx->partial_size = 0;
+		}
+	}
+
+	if (len >= VMAC_NHBYTES) {
+		n = round_down(len, VMAC_NHBYTES);
+		/* TODO: 'p' may be misaligned here */
+		vhash_blocks(tctx, dctx, (const __le64 *)p, n / VMAC_NHBYTES);
+		p += n;
+		len -= n;
+	}
+
+	if (len) {
+		memcpy(dctx->partial, p, len);
+		dctx->partial_size = len;
 	}
 
-	vhash_update(p, len - len % VMAC_NHBYTES, &ctx->__vmac_ctx);
-
 	return 0;
 }
 
-static int vmac_final(struct shash_desc *pdesc, u8 *out)
+static u64 vhash_final(const struct vmac_tfm_ctx *tctx,
+		       struct vmac_desc_ctx *dctx)
 {
-	struct crypto_shash *parent = pdesc->tfm;
-	struct vmac_ctx_t *ctx = crypto_shash_ctx(parent);
-	vmac_t mac;
-	u8 nonce[16] = {};
-
-	/* vmac() ends up accessing outside the array bounds that
-	 * we specify.  In appears to access up to the next 2-word
-	 * boundary.  We'll just be uber cautious and zero the
-	 * unwritten bytes in the buffer.
-	 */
-	if (ctx->partial_size) {
-		memset(ctx->partial + ctx->partial_size, 0,
-			VMAC_NHBYTES - ctx->partial_size);
-	}
-	mac = vmac(ctx->partial, ctx->partial_size, nonce, NULL, ctx);
-	memcpy(out, &mac, sizeof(vmac_t));
-	memzero_explicit(&mac, sizeof(vmac_t));
-	memset(&ctx->__vmac_ctx, 0, sizeof(struct vmac_ctx));
-	ctx->partial_size = 0;
+	unsigned int partial = dctx->partial_size;
+	u64 ch = dctx->polytmp[0];
+	u64 cl = dctx->polytmp[1];
+
+	/* L1 and L2-hash the final block if needed */
+	if (partial) {
+		/* Zero-pad to next 128-bit boundary */
+		unsigned int n = round_up(partial, 16);
+		u64 rh, rl;
+
+		memset(&dctx->partial[partial], 0, n - partial);
+		nh_16(dctx->partial_words, tctx->nhkey, n / 8, rh, rl);
+		rh &= m62;
+		if (dctx->first_block_processed)
+			poly_step(ch, cl, tctx->polykey[0], tctx->polykey[1],
+				  rh, rl);
+		else
+			ADD128(ch, cl, rh, rl);
+	}
+
+	/* L3-hash the 128-bit output of L2-hash */
+	return l3hash(ch, cl, tctx->l3key[0], tctx->l3key[1], partial * 8);
+}
+
+static int vmac_final(struct shash_desc *desc, u8 *out)
+{
+	const struct vmac_tfm_ctx *tctx = crypto_shash_ctx(desc->tfm);
+	struct vmac_desc_ctx *dctx = shash_desc_ctx(desc);
+	static const u8 nonce[16] = {}; /* TODO: this is insecure */
+	union {
+		u8 bytes[16];
+		__be64 pads[2];
+	} block;
+	int index;
+	u64 hash, pad;
+
+	/* Finish calculating the VHASH of the message */
+	hash = vhash_final(tctx, dctx);
+
+	/* Generate pseudorandom pad by encrypting the nonce */
+	memcpy(&block, nonce, 16);
+	index = block.bytes[15] & 1;
+	block.bytes[15] &= ~1;
+	crypto_cipher_encrypt_one(tctx->cipher, block.bytes, block.bytes);
+	pad = be64_to_cpu(block.pads[index]);
+
+	/* The VMAC is the sum of VHASH and the pseudorandom pad */
+	put_unaligned_le64(hash + pad, out);
 	return 0;
 }
 
 static int vmac_init_tfm(struct crypto_tfm *tfm)
 {
-	struct crypto_cipher *cipher;
-	struct crypto_instance *inst = (void *)tfm->__crt_alg;
+	struct crypto_instance *inst = crypto_tfm_alg_instance(tfm);
 	struct crypto_spawn *spawn = crypto_instance_ctx(inst);
-	struct vmac_ctx_t *ctx = crypto_tfm_ctx(tfm);
+	struct vmac_tfm_ctx *tctx = crypto_tfm_ctx(tfm);
+	struct crypto_cipher *cipher;
 
 	cipher = crypto_spawn_cipher(spawn);
 	if (IS_ERR(cipher))
 		return PTR_ERR(cipher);
 
-	ctx->child = cipher;
+	tctx->cipher = cipher;
 	return 0;
 }
 
 static void vmac_exit_tfm(struct crypto_tfm *tfm)
 {
-	struct vmac_ctx_t *ctx = crypto_tfm_ctx(tfm);
-	crypto_free_cipher(ctx->child);
+	struct vmac_tfm_ctx *tctx = crypto_tfm_ctx(tfm);
+
+	crypto_free_cipher(tctx->cipher);
 }
 
 static int vmac_create(struct crypto_template *tmpl, struct rtattr **tb)
@@ -674,11 +627,12 @@ static int vmac_create(struct crypto_tem
 	inst->alg.base.cra_blocksize = alg->cra_blocksize;
 	inst->alg.base.cra_alignmask = alg->cra_alignmask;
 
-	inst->alg.digestsize = sizeof(vmac_t);
-	inst->alg.base.cra_ctxsize = sizeof(struct vmac_ctx_t);
+	inst->alg.base.cra_ctxsize = sizeof(struct vmac_tfm_ctx);
 	inst->alg.base.cra_init = vmac_init_tfm;
 	inst->alg.base.cra_exit = vmac_exit_tfm;
 
+	inst->alg.descsize = sizeof(struct vmac_desc_ctx);
+	inst->alg.digestsize = VMAC_TAG_LEN / 8;
 	inst->alg.init = vmac_init;
 	inst->alg.update = vmac_update;
 	inst->alg.final = vmac_final;
--- a/include/crypto/vmac.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * Modified to interface to the Linux kernel
- * Copyright (c) 2009, Intel Corporation.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms and conditions of the GNU General Public License,
- * version 2, as published by the Free Software Foundation.
- *
- * This program is distributed in the hope it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
- */
-
-#ifndef __CRYPTO_VMAC_H
-#define __CRYPTO_VMAC_H
-
-/* --------------------------------------------------------------------------
- * VMAC and VHASH Implementation by Ted Krovetz (tdk@acm.org) and Wei Dai.
- * This implementation is herby placed in the public domain.
- * The authors offers no warranty. Use at your own risk.
- * Please send bug reports to the authors.
- * Last modified: 17 APR 08, 1700 PDT
- * ----------------------------------------------------------------------- */
-
-/*
- * User definable settings.
- */
-#define VMAC_TAG_LEN	64
-#define VMAC_KEY_SIZE	128/* Must be 128, 192 or 256			*/
-#define VMAC_KEY_LEN	(VMAC_KEY_SIZE/8)
-#define VMAC_NHBYTES	128/* Must 2^i for any 3 < i < 13 Standard = 128*/
-
-/*
- * This implementation uses u32 and u64 as names for unsigned 32-
- * and 64-bit integer types. These are defined in C99 stdint.h. The
- * following may need adaptation if you are not running a C99 or
- * Microsoft C environment.
- */
-struct vmac_ctx {
-	u64 nhkey[(VMAC_NHBYTES/8)+2*(VMAC_TAG_LEN/64-1)];
-	u64 polykey[2*VMAC_TAG_LEN/64];
-	u64 l3key[2*VMAC_TAG_LEN/64];
-	u64 polytmp[2*VMAC_TAG_LEN/64];
-	u64 cached_nonce[2];
-	u64 cached_aes[2];
-	int first_block_processed;
-};
-
-typedef u64 vmac_t;
-
-struct vmac_ctx_t {
-	struct crypto_cipher *child;
-	struct vmac_ctx __vmac_ctx;
-	u8 partial[VMAC_NHBYTES];	/* partial block */
-	int partial_size;		/* size of the partial block */
-};
-
-#endif /* __CRYPTO_VMAC_H */


  parent reply	other threads:[~2018-12-09 22:21 UTC|newest]

Thread overview: 338+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-09 21:50 [PATCH 3.16 000/328] 3.16.62-rc1 review Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 057/328] video: udlfb: Fix unaligned access Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 020/328] leds: max8997: use mode when calling max8997_led_set_mode Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 045/328] binfmt_elf: Respect error return from `regset->active' Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 062/328] udlfb: set optimal write delay Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 326/328] mremap: properly flush TLB before releasing the page Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 089/328] ath10k: prevent active scans on potential unusable channels Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 258/328] ubifs: Check for name being NULL while mounting Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 118/328] PCI: mvebu: Fix I/O space end address calculation Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 324/328] posix-timers: Sanitize overrun handling Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 321/328] cpuidle: Do not access cpuidle_devices when !CONFIG_CPU_IDLE Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 225/328] hwmon: (nct6775) Fix access to fan pulse registers Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 196/328] USB: add quirk for WORLDE Controller KS49 or Prodipe MIDI 49C USB controller Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 036/328] mei: bus: type promotion bug in mei_nfc_if_version() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 148/328] KVM: PPC: Book3S HV: Don't truncate HPTE index in xlate function Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 185/328] xfrm6: call kfree_skb when skb is toobig Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 180/328] igmp: fix incorrect unsolicit report count when join group Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 266/328] bcache: Remove deprecated create_workqueue Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 244/328] ring-buffer: Allow for rescheduling when removing pages Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 050/328] PCI: hotplug: Don't leak pci_slot on registration failure Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 199/328] usb: uas: add support for more quirk flags Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 224/328] drm/nouveau/drm/nouveau: Use pm_runtime_get_noresume() in connector_detect() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 087/328] udl-kms: handle allocation failure Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 195/328] cfg80211: reg: Init wiphy_idx in regulatory_hint_core() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 153/328] iscsi target: fix session creation failure handling Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 183/328] smb3: check for and properly advertise directory lease support Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 282/328] mac80211: fix setting IEEE80211_KEY_FLAG_RX_MGMT for AP mode keys Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 041/328] s390/kvm: fix deadlock when killed by oom Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 299/328] Make file credentials available to the seqfile interfaces Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 121/328] b43/leds: Ensure NUL-termination of LED name string Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 292/328] drm: fb-helper: Reject all pixel format changing requests Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 011/328] serial: pxa: Fix an error handling path in 'serial_pxa_probe()' Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 114/328] powerpc/pseries: Avoid using the size greater than RTAS_ERROR_LOG_MAX Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 071/328] fuse: don't wake up reserved req in fuse_conn_kill() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 284/328] xhci: Add missing CAS workaround for Intel Sunrise Point xHCI Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 065/328] xfrm: fix 'passing zero to ERR_PTR()' warning Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 167/328] USB: serial: ti_usb_3410_5052: use functions rather than macros Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 208/328] usb: host: u132-hcd: Fix a sleep-in-atomic-context bug in u132_get_frame() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 078/328] ALSA: virmidi: Fix too long output trigger loop Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 103/328] net: 6lowpan: fix reserved space for single frames Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 113/328] ASoC: wm8994: Fix missing break in switch Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 169/328] ext4: avoid divide by zero fault when deleting corrupted inline directories Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 306/328] dm cache: destroy migration_cache if cache target registration failed Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 135/328] l2tp: use sk_dst_check() to avoid race on sk->sk_dst_cache Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 175/328] ipmi: Move BT capabilities detection to the detect call Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 202/328] spi: rspi: Fix invalid SPI use during system suspend Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 219/328] batman-adv: Prevent duplicated global TT entry Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 274/328] sr9800: Check for supported Wake-on-LAN modes Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 003/328] EDAC, i7core: Fix memleaks and use-after-free on probe and remove Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 165/328] x86/speculation/l1tf: Increase l1tf memory limit for Nehalem+ Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 318/328] r8169: fix NAPI handling under high load Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 264/328] fbdev/omapfb: fix omapfb_memory_read infoleak Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 027/328] vxlan: fix a potential issue when create a new vxlan fdb entry Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 120/328] scsi: aic94xx: fix an error code in aic94xx_init() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 099/328] crypto: blkcipher - fix crash flushing dcache in error path Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 001/328] EDAC: Fix memleak in module init " Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 229/328] drm/i915/bdw: Increase IPS disable timeout to 100ms Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 203/328] spi: rspi: Handle dmaengine_prep_slave_sg() failures gracefully Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 293/328] PM / core: Clear the direct_complete flag on errors Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 268/328] bcache: do not assign in if condition in bcache_init() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 210/328] IB/ipoib: Avoid a race condition between start_xmit and cm_rep_handler Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 234/328] Tools: hv: Fix a bug in the key delete code Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 316/328] ptp: fix Spectre v1 vulnerability Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 158/328] mm: move tlb_table_flush to tlb_flush_mmu_free Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 058/328] udlfb: fix semaphore value leak Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 155/328] reiserfs: fix broken xattr handling (heap corruption, bad retval) Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 090/328] ext4: check for NUL characters in extended attribute's name Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 091/328] tracing: Do not call start/stop() functions when tracing_on does not change Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 253/328] USB: leave LPM alone if possible when binding/unbinding interface drivers Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 034/328] pwm: tiehrpwm: Fix disabling of output of PWMs Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 055/328] fb: fix lost console when the user unplugs a USB adapter Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 038/328] tty: fix typo in comment of tty_termios_encode_baud_rate Ben Hutchings
2018-12-12 13:57   ` Matthias Brugger
2018-12-14  1:40     ` Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 246/328] tty: vt_ioctl: fix potential Spectre v1 Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 170/328] usb: gadget: udc: net2280: do not rely on 'driver' argument Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 154/328] fs/quota: Fix spectre gadget in do_quotactl Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 051/328] PCI: pciehp: Fix use-after-free on unplug Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 117/328] cifs: add missing debug entries for kconfig options Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 108/328] percpu_counter: batch size aware __percpu_counter_compare() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 076/328] block: move bio_integrity_{intervals,bytes} into blkdev.h Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 037/328] uart: fix race between uart_put_char() and uart_shutdown() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 074/328] fuse: Don't access pipe->buffers without pipe_lock() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 125/328] powerpc/pseries: Fix endianness while restoring of r3 in MCE handler Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 290/328] rtnl: limit IFLA_NUM_TX_QUEUES and IFLA_NUM_RX_QUEUES to 4096 Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 079/328] media: dvb-usb-v2/gl861: ensure USB message buffers DMA'able Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 119/328] media: rtl28xxu: be sure that it won't go past the array size Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 139/328] ubifs: Fix memory leak in lprobs self-check Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 265/328] bcache: don't embed 'return' statements in closure macros Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 168/328] USB: serial: ti_usb_3410_5052: fix array underflow in completion handler Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 109/328] btrfs: use correct compare function of dirty_metadata_bytes Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 164/328] x86/spectre: Add missing family 6 check to microcode check Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 297/328] ipv6: Compute net once in raw6_send_hdrinc Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 111/328] btrfs: rename total_bytes to avoid confusion Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 271/328] crypto: mxs-dcp - Fix wait logic on chan threads Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 052/328] PCI: pciehp: Fix unprotected list iteration in IRQ handler Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 083/328] iio: ad9523: Fix return value for ad952x_store() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 194/328] iw_cxgb4: only allow 1 flush on user qps Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 223/328] RDMA/cma: Protect cma dev list with lock Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 296/328] ARC: clone syscall to setp r25 as thread pointer Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 187/328] ext4: fix online resize's handling of a too-small final block group Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 317/328] cachefiles: fix the race between cachefiles_bury_object() and rmdir(2) Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 255/328] USB: fix error handling in usb_driver_claim_interface() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 040/328] tty: fix termios input-speed encoding when using BOTHER Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 131/328] 9p: fix multiple NULL-pointer-dereferences Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 069/328] ALSA: vxpocket: Fix invalid endian conversions Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 177/328] x86/microcode/intel: Check microcode revision before updating sibling threads Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 289/328] perf/ring_buffer: Prevent concurent ring buffer access Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 322/328] KEYS: encrypted: fix buffer overread in valid_master_desc() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 311/328] x86/percpu: Fix this_cpu_read() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 238/328] cifs: integer overflow in in SMB2_ioctl() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 288/328] perf/core: Fix perf_pmu_unregister() locking Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 162/328] hwmon: (nct6775) Fix potential Spectre v1 Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 150/328] x86/process: Re-export start_thread() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 044/328] mtdchar: fix overflows in adjustment of `count` Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 081/328] partitions/aix: fix usage of uninitialized lv_info and lvname structures Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 179/328] x86/microcode: Update the new microcode revision unconditionally Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 033/328] pwm: tiehrpwm: Don't use emulation mode bits to control PWM output Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 054/328] iio: ad9523: Fix displayed phase Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 307/328] of: unittest: Disable interrupt node tests for old world MAC systems Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 096/328] scsi: sysfs: Introduce sysfs_{un,}break_active_protection() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 029/328] vxlan: fix default fdb entry netlink notify ordering during netdev create Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 134/328] KVM: arm/arm64: Skip updating PTE entry if no change Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 298/328] ipv6: take rcu lock in rawv6_send_hdrinc() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 098/328] xfrm: Validate address prefix lengths in the xfrm selector Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 094/328] IB/IPoIB: Set ah valid flag in multicast send flow Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 012/328] media: omap3isp: zero-initialize the isp cam_xclk{a,b} initial data Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 242/328] pppoe: fix reception of frames with no mac header Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 207/328] usb: Avoid use-after-free by flushing endpoints early in usb_set_interface() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 060/328] udlfb: don't switch if we are switching to the same videomode Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 061/328] udlfb: make a local copy of fb_ops Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 205/328] spi: rspi: Fix interrupted DMA transfers Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 220/328] batman-adv: Prevent duplicated tvlv handler Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 136/328] xtensa: limit offsets in __loop_cache_{all,page} Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 263/328] ip_tunnel: be careful when accessing the inner header Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 110/328] Btrfs: fix btrfs_write_inode vs delayed iput deadlock Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 104/328] mac802154: common tx error path Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 323/328] wil6210: missing length check in wmi_set_ie Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 201/328] spi: sh-msiof: Fix handling of write value for SISTR register Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 209/328] usb: misc: uss720: Fix two sleep-in-atomic-context bugs Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 191/328] RDMA/ucma: check fd type in ucma_migrate_id() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 230/328] drm: udl: Destroy framebuffer only if it was initialized Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 030/328] vmci: type promotion bug in qp_host_get_user_memory() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 267/328] bcache: explicitly destroy mutex while exiting Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 261/328] powerpc/pseries: Fix unitialized timer reset on migration Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 105/328] mac802154: tx: cleanup crc calculation Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 287/328] perf/core: Protect PMU device removal with a 'pmu_bus_running' check, to fix CONFIG_DEBUG_TEST_DRIVER_REMOVE=y kernel panic Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 019/328] scsi: target/iscsi: Make iscsit_ta_authentication() respect the output buffer size Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 028/328] vxlan: add new fdb alloc and create helpers Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 126/328] uprobes: Use synchronize_rcu() not synchronize_sched() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 086/328] udl-kms: change down_interruptible to down Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 222/328] i2c: xiic: Make the start and the byte count write atomic Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 047/328] xen-netfront: fix queue name setting Ben Hutchings
2018-12-09 23:24   ` Vitaly Kuznetsov
2018-12-16 21:42     ` Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 127/328] net/9p/client.c: version pointer uninitialized Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 073/328] fuse: Fix oops at process_init_reply() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 009/328] platform/x86: ideapad-laptop: Apply no_hw_rfkill to Y20-15IKBM, too Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 188/328] ext4: prevent online resize with backup superblock Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 025/328] power: generic-adc-battery: fix out-of-bounds write when copying channel properties Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 116/328] smb3: fill in statfs fsid and correct namelen Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 014/328] IB/srpt: Support HCAs with more than two ports Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 122/328] b43legacy/leds: Ensure NUL-termination of LED name string Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 254/328] USB: remove LPM management from usb_driver_claim_interface() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 064/328] udlfb: set line_length in dlfb_ops_set_par Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 181/328] igmp: fix incorrect unsolicit report count after link down and up Ben Hutchings
2018-12-09 21:50 ` Ben Hutchings [this message]
2018-12-09 21:50 ` [PATCH 3.16 141/328] drm/i915: set DP Main Stream Attribute for color range on DDI platforms Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 145/328] netfilter: nf_tables: fix register ordering Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 016/328] crypto: memzero_explicit - make sure to clear out sensitive data Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 172/328] USB: net2280: Fix erroneous synchronization change Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 309/328] net: make skb_partial_csum_set() more robust against overflows Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 063/328] udlfb: handle allocation failure Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 002/328] EDAC: i7core: Return proper error codes for kzalloc() errors Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 294/328] team: Forbid enslaving team device to itself Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 304/328] mach64: detect the dot clock divider correctly on sparc Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 328/328] cdrom: fix improper type cast, which can leat to information leak Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 176/328] x86/microcode/intel: Add a helper which gives the microcode revision Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 216/328] x86/process: Don't mix user/kernel regs in 64bit __show_regs() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 314/328] RDMA/ucma: Fix Spectre v1 vulnerability Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 100/328] crypto: ablkcipher - fix crash flushing dcache in error path Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 248/328] ARM: 8799/1: mm: fix pci_ioremap_io() offset check Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 273/328] ax88179_178a: Check for supported Wake-on-LAN modes Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 080/328] media: gl861: fix probe of dvb_usb_gl861 Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 130/328] fs/9p/xattr.c: catch the error of p9_client_clunk when setting xattr failed Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 300/328] proc: restrict kernel stack dumps to root Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 192/328] RDMA/cxgb4: Only call CQ completion handler if it is armed Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 173/328] ipv6: fix cleanup ordering for pingv6 registration Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 042/328] ARM: hisi: handle of_iomap and fix missing of_node_put Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 212/328] ACPI / bus: Only call dmi_check_system() on X86 Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 152/328] ISCSI: fix minor memory leak Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 088/328] udl-kms: fix crash due to uninitialized memory Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 097/328] scsi: core: Avoid that SCSI device removal through sysfs triggers a deadlock Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 007/328] USB: serial: sierra: fix potential deadlock at close Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 085/328] pinctrl: imx: off by one in imx_pinconf_group_dbg_show() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 066/328] ALSA: seq: Fix poll() error return Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 093/328] ext4: fix spectre gadget in ext4_mb_regular_allocator() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 283/328] arm64: KVM: Tighten guest core register access from userspace Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 161/328] net: macb: do not disable MDIO bus at open/close time Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 035/328] drm/panel: type promotion bug in s6e8aa0_read_mtp_id() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 301/328] mm/vmstat.c: skip NR_TLB_REMOTE_FLUSH* properly Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 272/328] asix: Check for supported Wake-on-LAN modes Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 256/328] USB: handle NULL config in usb_find_alt_setting() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 198/328] USB: Add quirk to support DJI CineSSD Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 115/328] dm cache metadata: save in-core policy_hint_size to on-disk superblock Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 026/328] power: generic-adc-battery: check for duplicate properties copied from iio channels Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 232/328] x86/boot: Move EISA setup to a separate file Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 270/328] PCI: Reprogram bridge prefetch registers on resume Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 281/328] pstore/ram: Fix failure-path memory leak in ramoops_init Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 163/328] ext4: check to make sure the rename(2)'s destination is not freed Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 259/328] mm: shmem.c: Correctly annotate new inodes for lockdep Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 200/328] spi: sh-msiof: Add more register documentation Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 021/328] libertas: fix suspend and resume for SDIO connected cards Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 308/328] libertas: call into generic suspend code before turning off power Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 197/328] USB: yurex: Fix buffer over-read in yurex_write() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 249/328] x86/paravirt: Fix some warning messages Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 277/328] smsc95xx: Check for Wake-on-LAN modes Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 237/328] CIFS: fix wrapping bugs in num_entries() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 067/328] ALSA: vx: Fix possible transfer overflow Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 327/328] xfs: don't fail when converting shortform attr to long form during ATTR_REPLACE Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 032/328] ARM: tegra: Fix Tegra30 Cardhu PCA954x reset Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 106/328] mac802154: tx: use put_unaligned_le16 for copy crc Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 068/328] ALSA: vx222: Fix invalid endian conversions Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 213/328] batman-adv: Prevent duplicated gateway_node entry Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 280/328] tools: hv: fcopy: set 'error' in case an unknown operation was requested Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 239/328] pstore: Fix incorrect persistent ram buffer mapping Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 049/328] MIPS: Change definition of cpu_relax() for Loongson-3 Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 146/328] tracing/blktrace: Fix to allow setting same value Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 004/328] audit: Fix extended comparison of GID/EGID Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 143/328] s390/pci: fix out of bounds access during irq setup Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 048/328] ALSA: memalloc: Don't exceed over the requested size Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 260/328] ocfs2: fix ocfs2 read block panic Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 070/328] ALSA: cs5535audio: Fix invalid endian conversion Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 228/328] ALSA: emu10k1: fix possible info leak to userspace on SNDRV_EMU10K1_IOCTL_INFO Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 024/328] staging: rts5208: fix missing error check on call to rtsx_write_register Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 291/328] smb2: fix missing files in root share directory listing Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 046/328] MIPS: Correct the 64-bit DSP accumulator register size Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 084/328] net: mvneta: fix mtu change on port without link Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 313/328] IB/ucm: Fix Spectre v1 vulnerability Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 149/328] powerpc/powernv/pci: Work around races in PCI bridge enabling Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 241/328] bpf, net: add skb_mac_header_len helper Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 319/328] net/ipv6: Fix index counter for unicast addresses in in6_dump_addrs Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 184/328] cifs: connect to servername instead of IP for IPC$ share Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 059/328] udlfb: fix display corruption of the last line Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 013/328] ALSA: snd-aoa: add of_node_put() in error path Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 015/328] crypto: vmac - require a block cipher with 128-bit block size Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 252/328] USB: usbdevfs: restore warning for nonsensical flags Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 156/328] apparmor: remove no-op permission check in policy_unpack Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 144/328] netfilter: nft_set: fix allocation size overflow in privsize callback Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 275/328] r8152: Check for supported Wake-on-LAN Modes Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 124/328] powerpc/fadump: handle crash memory ranges array index overflow Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 159/328] mm/tlb: Remove tlb_remove_table() non-concurrent condition Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 312/328] USB: fix the usbfs flag sanitization for control transfers Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 193/328] iw_cxgb4: atomically flush the qp Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 102/328] ieee802154: 6lowpan: ensure header compression does not corrupt ipv6 header Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 166/328] USB: serial: io_ti: fix array underflow in completion handler Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 251/328] USB: usbdevfs: sanitize flags more Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 157/328] getxattr: use correct xattr length Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 082/328] partitions/aix: append null character to print data from disk Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 053/328] fbdev: omapfb: off by one in omapfb_register_client() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 039/328] tty: fix termios input-speed encoding Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 226/328] x86/mm: Use WRITE_ONCE() when setting PTEs Ben Hutchings
2018-12-09 21:57   ` Nadav Amit
2018-12-16 22:01     ` Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 217/328] batman-adv: Place kref_get for softif_vlan near use Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 182/328] SMB3: Backup intent flag missing for directory opens with backupuid mounts Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 215/328] batman-adv: Prevent duplicated nc_node entry Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 247/328] Input: elantech - enable middle button of touchpad on ThinkPad P72 Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 138/328] ubifs: Fix synced_i_size calculation for xattr inodes Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 008/328] platform/x86: ideapad-laptop: Add Y520-15IKBN to no_hw_rfkill Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 285/328] net: sched: act_ipt: check for underflow in __tcf_ipt_init() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 128/328] 9p/net: Fix zero-copy path in the 9p virtio transport Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 233/328] x86/EISA: Don't probe EISA bus for Xen PV guests Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 022/328] media: exynos4-is: Prevent NULL pointer dereference in __isp_video_try_fmt() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 206/328] usb: Don't die twice if PCI xhci host is not responding in resume Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 072/328] fuse: flush requests on umount Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 250/328] ip6_tunnel: be careful when accessing the inner header Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 018/328] alarmtimer: Prevent overflow for relative nanosleep Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 151/328] iscsi-target: nullify session in failed login sequence Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 278/328] qlcnic: fix Tx descriptor corruption on 82xx devices Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 133/328] KVM: arm/arm64: Skip updating PMD entry if no change Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 005/328] kprobes: Make list and blacklist root user read only Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 227/328] ALSA: bebob: use address returned by kmalloc() instead of kernel stack for streaming DMA mapping Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 315/328] usb: gadget: storage: Fix Spectre v1 vulnerability Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 257/328] regulator: fix crash caused by null driver data Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 129/328] net/9p/trans_fd.c: fix race-condition by flushing workqueue before the kfree() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 123/328] powerpc: Fix size calculation using resource_size() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 262/328] USB: serial: simple: add Motorola Tetra MTP6550 id Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 218/328] batman-adv: Prevent duplicated softif_vlan entry Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 240/328] ext4: don't mark mmp buffer head dirty Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 077/328] scsi: virtio_scsi: fix pi_bytes{out,in} on 4 KiB block size devices Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 214/328] batman-adv: Use kref_get for batadv_nc_get_nc_node Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 221/328] dm: disable CRYPTO_TFM_REQ_MAY_SLEEP to fix a GFP_KERNEL recursion deadlock Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 211/328] hwmon: (nct6775) Set weight source to zero correctly Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 023/328] USB: serial: kobil_sct: fix modem-status error handling Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 178/328] x86/microcode: Make sure boot_cpu_data.microcode is up-to-date Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 235/328] misc: hmc6352: fix potential Spectre v1 Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 320/328] mtd: fsl-quadspi: fix macro collision problems with READ/WRITE Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 279/328] Drivers: hv: vmbus: Use get/put_cpu() in vmbus_connect() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 245/328] serial: cpm_uart: return immediately from console poll Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 010/328] rndis_wlan: potential buffer overflow in rndis_wlan_auth_indication() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 303/328] mm: madvise(MADV_DODUMP): allow hugetlbfs pages Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 147/328] arm64: mm: check for upper PAGE_SHIFT bits in pfn_valid() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 310/328] net: ipv4: update fnhe_pmtu when first hop's MTU changes Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 075/328] fuse: Add missed unlock_page() to fuse_readpages_fill() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 302/328] ocfs2: fix locking for res->tracking and dlm->tracking_list Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 101/328] pinctrl: berlin: fix 'pctrl->functions' allocation in berlin_pinctrl_build_state Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 171/328] usb: gadget: net2280: fix pullup handling Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 295/328] MIPS: memset: Fix CPU_DADDI_WORKAROUNDS `small_fixup' regression Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 286/328] x86/vdso: Fix asm constraints on vDSO syscall fallbacks Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 132/328] 9p/virtio: fix off-by-one error in sg list bounds check Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 204/328] spi: rspi: Fix leaking of unused DMA descriptors Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 137/328] xtensa: increase ranges in ___invalidate_{i,d}cache_all Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 031/328] pinctrl: msm: Fix msm_config_group_get() to be compliant Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 276/328] smsc75xx: Check for Wake-on-LAN modes Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 056/328] video: udlfb: Remove noisy warnings Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 325/328] mm: cleancache: fix corruption on missed inode invalidation Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 006/328] s390/qdio: reset old sbal_state flags Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 107/328] net: mac802154: tx: expand tailroom if necessary Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 142/328] mfd: sm501: Set coherent_dma_mask when creating subdevices Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 236/328] cifs: prevent integer overflow in nxt_dir_entry() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 043/328] mtd: rawnand: mxc: remove __init qualifier from mxcnd_probe_dt Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 095/328] uio: potential double frees if __uio_register_device() fails Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 160/328] cifs: check kmalloc before use Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 231/328] platform/x86: alienware-wmi: Correct a memory leak Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 305/328] usb: usbip: Fix BUG: KASAN: slab-out-of-bounds in vhci_hub_control() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 269/328] bcache: add separate workqueue for journal_write to avoid deadlock Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 174/328] cfg80211: nl80211_update_ft_ies() to validate NL80211_ATTR_IE Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 243/328] ipv6: fix possible use-after-free in ip6_xmit() Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 189/328] ext4: fix online resizing for bigalloc file systems with a 1k block size Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 112/328] ASoC: wm8994: Mark expected switch fall-through Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 140/328] ubifs: Check data node size before truncate Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 190/328] nbd: don't allow invalid blocksize settings Ben Hutchings
2018-12-09 21:50 ` [PATCH 3.16 186/328] spi: tegra20-slink: explicitly enable/disable clock Ben Hutchings
2018-12-10 16:54 ` [PATCH 3.16 000/328] 3.16.62-rc1 review Guenter Roeck
2018-12-10 19:06   ` Ben Hutchings
2018-12-10 20:36     ` Guenter Roeck
2018-12-16 21:36       ` Ben Hutchings

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.1544392233.207941729@decadent.org.uk \
    --to=ben@decadent.org.uk \
    --cc=akpm@linux-foundation.org \
    --cc=ebiggers@google.com \
    --cc=herbert@gondor.apana.org.au \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=syzbot+264bca3a6e8d645550d3@syzkaller.appspotmail.com \
    /path/to/YOUR_REPLY

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

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