Skip to content

Commit

Permalink
netfilter: defrag: kill unused work parameter of frag_kfree_skb()
Browse files Browse the repository at this point in the history
The parameter (work) is unused, remove it.
Reported from Eric Dumazet.

Signed-off-by: Shan Wei <shanwei@cn.fujitsu.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
  • Loading branch information
Shan Wei authored and kaber committed Jun 14, 2010
1 parent 841a594 commit 0b041f8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions net/ipv6/netfilter/nf_conntrack_reasm.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,8 @@ static void nf_skb_free(struct sk_buff *skb)
}

/* Memory Tracking Functions. */
static inline void frag_kfree_skb(struct sk_buff *skb, unsigned int *work)
static void frag_kfree_skb(struct sk_buff *skb)
{
if (work)
*work -= skb->truesize;
atomic_sub(skb->truesize, &nf_init_frags.mem);
nf_skb_free(skb);
kfree_skb(skb);
Expand Down Expand Up @@ -335,7 +333,7 @@ static int nf_ct_frag6_queue(struct nf_ct_frag6_queue *fq, struct sk_buff *skb,
fq->q.fragments = next;

fq->q.meat -= free_it->len;
frag_kfree_skb(free_it, NULL);
frag_kfree_skb(free_it);
}
}

Expand Down

0 comments on commit 0b041f8

Please sign in to comment.