diff options
author | David S. Miller <davem@davemloft.net> | 2013-10-23 16:28:39 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-10-23 16:49:34 -0400 |
commit | c3fa32b9764dc45dcf8a2231b1c110abc4a63e0b (patch) | |
tree | 6cf2896a77b65bec64284681e1c3851eb3263e09 /net/core | |
parent | 34d92d5315b64a3e5292b7e9511c1bb617227fb6 (diff) | |
parent | 320437af954cbe66478f1f5e8b34cb5a8d072191 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts:
drivers/net/usb/qmi_wwan.c
include/net/dst.h
Trivial merge conflicts, both were overlapping changes.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/secure_seq.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/core/secure_seq.c b/net/core/secure_seq.c index 90e8a8250255..897da56f3aff 100644 --- a/net/core/secure_seq.c +++ b/net/core/secure_seq.c | |||
@@ -11,6 +11,7 @@ | |||
11 | 11 | ||
12 | #include <net/secure_seq.h> | 12 | #include <net/secure_seq.h> |
13 | 13 | ||
14 | #if IS_ENABLED(CONFIG_IPV6) || IS_ENABLED(CONFIG_INET) | ||
14 | #define NET_SECRET_SIZE (MD5_MESSAGE_BYTES / 4) | 15 | #define NET_SECRET_SIZE (MD5_MESSAGE_BYTES / 4) |
15 | 16 | ||
16 | static u32 net_secret[NET_SECRET_SIZE] ____cacheline_aligned; | 17 | static u32 net_secret[NET_SECRET_SIZE] ____cacheline_aligned; |
@@ -19,6 +20,7 @@ static __always_inline void net_secret_init(void) | |||
19 | { | 20 | { |
20 | net_get_random_once(net_secret, sizeof(net_secret)); | 21 | net_get_random_once(net_secret, sizeof(net_secret)); |
21 | } | 22 | } |
23 | #endif | ||
22 | 24 | ||
23 | #ifdef CONFIG_INET | 25 | #ifdef CONFIG_INET |
24 | static u32 seq_scale(u32 seq) | 26 | static u32 seq_scale(u32 seq) |