Skip to content

Commit

Permalink
netfilter: nf_nat: fix conversion to non-atomic bit ops
Browse files Browse the repository at this point in the history
My previous patch (netfilter: nf_nat: don't use atomic bit operation)
made a mistake when converting atomic_set to a normal bit 'or'.
IPS_*_BIT should be replaced with IPS_*.

Signed-off-by: Changli Gao <[email protected]>
Cc: Tim Gardner <[email protected]>
Cc: Eric Dumazet <[email protected]>
Signed-off-by: Patrick McHardy <[email protected]>
  • Loading branch information
xiaosuo authored and kaber committed Jan 18, 2011
1 parent fbabf31 commit a7c2f4d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions include/net/netfilter/nf_nat_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ static inline int nf_nat_initialized(struct nf_conn *ct,
enum nf_nat_manip_type manip)
{
if (manip == IP_NAT_MANIP_SRC)
return ct->status & IPS_SRC_NAT_DONE_BIT;
return ct->status & IPS_SRC_NAT_DONE;
else
return ct->status & IPS_DST_NAT_DONE_BIT;
return ct->status & IPS_DST_NAT_DONE;
}

struct nlattr;
Expand Down
4 changes: 2 additions & 2 deletions net/ipv4/netfilter/nf_nat_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,9 @@ nf_nat_setup_info(struct nf_conn *ct,

/* It's done. */
if (maniptype == IP_NAT_MANIP_DST)
ct->status |= IPS_DST_NAT_DONE_BIT;
ct->status |= IPS_DST_NAT_DONE;
else
ct->status |= IPS_SRC_NAT_DONE_BIT;
ct->status |= IPS_SRC_NAT_DONE;

return NF_ACCEPT;
}
Expand Down

0 comments on commit a7c2f4d

Please sign in to comment.