aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2018-05-27 11:21:31 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2018-05-29 14:50:27 +0200
commitd6501de8726afb9d7ed502eafc8bfa629482049d (patch)
treedb9b797203e756637a1bafdf00e54ff6c9157d13 /net/netfilter
parentnetfilter: nft_compat: use call_rcu for nfnl_compat_get (diff)
downloadlinux-dev-d6501de8726afb9d7ed502eafc8bfa629482049d.tar.xz
linux-dev-d6501de8726afb9d7ed502eafc8bfa629482049d.zip
netfilter: nf_tables: fix endian mismatch in return type
harmless, but it avoids sparse warnings: nf_tables_api.c:2813:16: warning: incorrect type in return expression (different base types) nf_tables_api.c:2863:47: warning: incorrect type in argument 3 (different base types) nf_tables_api.c:3524:47: warning: incorrect type in argument 3 (different base types) nf_tables_api.c:3538:55: warning: incorrect type in argument 3 (different base types) Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter')
-rw-r--r--net/netfilter/nf_tables_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
index 583673743648..8f04bfc41bf9 100644
--- a/net/netfilter/nf_tables_api.c
+++ b/net/netfilter/nf_tables_api.c
@@ -2830,7 +2830,7 @@ static int nf_msecs_to_jiffies64(const struct nlattr *nla, u64 *result)
return 0;
}
-static u64 nf_jiffies64_to_msecs(u64 input)
+static __be64 nf_jiffies64_to_msecs(u64 input)
{
u64 ms = jiffies64_to_nsecs(input);