diff options
author | Jan Beulich <[email protected]> | 2012-03-07 23:45:44 +0000 |
---|---|---|
committer | Pablo Neira Ayuso <[email protected]> | 2012-03-26 14:00:28 +0200 |
commit | f3d229c68bb47170f04f81e51c9ed5d4286cebdb (patch) | |
tree | 9c3876f0fe7d7936c5b2c141456ab69e17bed670 | |
parent | 1d5c88e3f5403c1910477e4bcc71c3d5d40de6d5 (diff) |
netfilter: xt_LOG: don't use xchg() for simple assignment
At least on ia64 the (bogus) use of xchg() here results in the compiler
warning about an unused expression result. As only an assignment is
intended here, convert it to such.
Signed-off-by: Jan Beulich <[email protected]>
Acked-by: Eric Dumazet <[email protected]>
Signed-off-by: Pablo Neira Ayuso <[email protected]>
-rw-r--r-- | include/net/netfilter/xt_log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/netfilter/xt_log.h b/include/net/netfilter/xt_log.h index 7e1544e8f70d..9d9756cca013 100644 --- a/include/net/netfilter/xt_log.h +++ b/include/net/netfilter/xt_log.h @@ -47,7 +47,7 @@ static void sb_close(struct sbuff *m) if (likely(m != &emergency)) kfree(m); else { - xchg(&emergency_ptr, m); + emergency_ptr = m; local_bh_enable(); } } |