浏览代码

RxRPC: Fix a regression in the RXKAD security module

Fix a regression in the RXKAD security module introduced in:

	commit 91e916cffec7c0153c5cbaa447151862a7a9a047
	Author: Al Viro <viro@ftp.linux.org.uk>
	Date:   Sat Mar 29 03:08:38 2008 +0000

	net/rxrpc trivial annotations

A variable was declared as a 16-bit type rather than a 32-bit type.

Signed-off-by: David Howells <dhowells@redhat.com>
Acked-with-apologies-by: Al Viro <viro@ZenIV.linux.org.uk>
Signed-of-by: Linus Torvalds <torvalds@linux-foundation.org>
David Howells 17 年之前
父节点
当前提交
02f3705068
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      net/rxrpc/rxkad.c

+ 1 - 1
net/rxrpc/rxkad.c

@@ -493,8 +493,8 @@ static int rxkad_verify_packet(const struct rxrpc_call *call,
 		__be32 x[2];
 		__be32 x[2];
 	} tmpbuf __attribute__((aligned(8))); /* must all be in same page */
 	} tmpbuf __attribute__((aligned(8))); /* must all be in same page */
 	__be32 x;
 	__be32 x;
-	u16 y;
 	__be16 cksum;
 	__be16 cksum;
+	u32 y;
 	int ret;
 	int ret;
 
 
 	sp = rxrpc_skb(skb);
 	sp = rxrpc_skb(skb);