diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2011-12-06 09:04:40 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-12-06 19:59:16 +0100 |
commit | 681090902eeb459a829f6f93d378a82011af3c89 (patch) | |
tree | a5f7ec2c95114d344ee2f3b4a920eda80a6e38a5 /net/core | |
parent | ipv4:correct description for tcp_max_syn_backlog (diff) | |
download | linux-681090902eeb459a829f6f93d378a82011af3c89.tar.xz linux-681090902eeb459a829f6f93d378a82011af3c89.zip |
net: Silence seq_scale() unused warning
On a CONFIG_NET=y build
net/core/secure_seq.c:22: warning: 'seq_scale' defined but not
used
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
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 025233de25f9..925991ae6f52 100644 --- a/net/core/secure_seq.c +++ b/net/core/secure_seq.c @@ -19,6 +19,7 @@ static int __init net_secret_init(void) } late_initcall(net_secret_init); +#ifdef CONFIG_INET static u32 seq_scale(u32 seq) { /* @@ -33,6 +34,7 @@ static u32 seq_scale(u32 seq) */ return seq + (ktime_to_ns(ktime_get_real()) >> 6); } +#endif #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) __u32 secure_tcpv6_sequence_number(const __be32 *saddr, const __be32 *daddr, |