Commit 6ce3b4dc authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller

inet: rename netns_frags to fqdir

1) struct netns_frags is renamed to struct fqdir
  This structure is really holding many frag queues in a hash table.

2) (struct inet_frag_queue)->net field is renamed to fqdir
  since net is generally associated to a 'struct net' pointer
  in networking stack.
Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ddf6ddb0
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
#include <linux/rhashtable-types.h> #include <linux/rhashtable-types.h>
struct netns_frags { /* Per netns frag queues directory */
struct fqdir {
/* sysctls */ /* sysctls */
long high_thresh; long high_thresh;
long low_thresh; long low_thresh;
...@@ -64,7 +65,7 @@ struct frag_v6_compare_key { ...@@ -64,7 +65,7 @@ struct frag_v6_compare_key {
* @meat: length of received fragments so far * @meat: length of received fragments so far
* @flags: fragment queue flags * @flags: fragment queue flags
* @max_size: maximum received fragment size * @max_size: maximum received fragment size
* @net: namespace that this frag belongs to * @fqdir: pointer to struct fqdir
* @rcu: rcu head for freeing deferall * @rcu: rcu head for freeing deferall
*/ */
struct inet_frag_queue { struct inet_frag_queue {
...@@ -84,7 +85,7 @@ struct inet_frag_queue { ...@@ -84,7 +85,7 @@ struct inet_frag_queue {
int meat; int meat;
__u8 flags; __u8 flags;
u16 max_size; u16 max_size;
struct netns_frags *net; struct fqdir *fqdir;
struct rcu_head rcu; struct rcu_head rcu;
}; };
...@@ -103,16 +104,16 @@ struct inet_frags { ...@@ -103,16 +104,16 @@ struct inet_frags {
int inet_frags_init(struct inet_frags *); int inet_frags_init(struct inet_frags *);
void inet_frags_fini(struct inet_frags *); void inet_frags_fini(struct inet_frags *);
static inline int inet_frags_init_net(struct netns_frags *nf) static inline int inet_frags_init_net(struct fqdir *fqdir)
{ {
atomic_long_set(&nf->mem, 0); atomic_long_set(&fqdir->mem, 0);
return rhashtable_init(&nf->rhashtable, &nf->f->rhash_params); return rhashtable_init(&fqdir->rhashtable, &fqdir->f->rhash_params);
} }
void inet_frags_exit_net(struct netns_frags *nf); void inet_frags_exit_net(struct fqdir *fqdir);
void inet_frag_kill(struct inet_frag_queue *q); void inet_frag_kill(struct inet_frag_queue *q);
void inet_frag_destroy(struct inet_frag_queue *q); void inet_frag_destroy(struct inet_frag_queue *q);
struct inet_frag_queue *inet_frag_find(struct netns_frags *nf, void *key); struct inet_frag_queue *inet_frag_find(struct fqdir *fqdir, void *key);
/* Free all skbs in the queue; return the sum of their truesizes. */ /* Free all skbs in the queue; return the sum of their truesizes. */
unsigned int inet_frag_rbtree_purge(struct rb_root *root); unsigned int inet_frag_rbtree_purge(struct rb_root *root);
...@@ -125,19 +126,19 @@ static inline void inet_frag_put(struct inet_frag_queue *q) ...@@ -125,19 +126,19 @@ static inline void inet_frag_put(struct inet_frag_queue *q)
/* Memory Tracking Functions. */ /* Memory Tracking Functions. */
static inline long frag_mem_limit(const struct netns_frags *nf) static inline long frag_mem_limit(const struct fqdir *fqdir)
{ {
return atomic_long_read(&nf->mem); return atomic_long_read(&fqdir->mem);
} }
static inline void sub_frag_mem_limit(struct netns_frags *nf, long val) static inline void sub_frag_mem_limit(struct fqdir *fqdir, long val)
{ {
atomic_long_sub(val, &nf->mem); atomic_long_sub(val, &fqdir->mem);
} }
static inline void add_frag_mem_limit(struct netns_frags *nf, long val) static inline void add_frag_mem_limit(struct fqdir *fqdir, long val)
{ {
atomic_long_add(val, &nf->mem); atomic_long_add(val, &fqdir->mem);
} }
/* RFC 3168 support : /* RFC 3168 support :
......
...@@ -16,7 +16,7 @@ struct netns_sysctl_lowpan { ...@@ -16,7 +16,7 @@ struct netns_sysctl_lowpan {
struct netns_ieee802154_lowpan { struct netns_ieee802154_lowpan {
struct netns_sysctl_lowpan sysctl; struct netns_sysctl_lowpan sysctl;
struct netns_frags frags; struct fqdir frags;
}; };
#endif #endif
...@@ -72,7 +72,7 @@ struct netns_ipv4 { ...@@ -72,7 +72,7 @@ struct netns_ipv4 {
struct inet_peer_base *peers; struct inet_peer_base *peers;
struct sock * __percpu *tcp_sk; struct sock * __percpu *tcp_sk;
struct netns_frags frags; struct fqdir frags;
#ifdef CONFIG_NETFILTER #ifdef CONFIG_NETFILTER
struct xt_table *iptable_filter; struct xt_table *iptable_filter;
struct xt_table *iptable_mangle; struct xt_table *iptable_mangle;
......
...@@ -58,7 +58,7 @@ struct netns_ipv6 { ...@@ -58,7 +58,7 @@ struct netns_ipv6 {
struct ipv6_devconf *devconf_all; struct ipv6_devconf *devconf_all;
struct ipv6_devconf *devconf_dflt; struct ipv6_devconf *devconf_dflt;
struct inet_peer_base *peers; struct inet_peer_base *peers;
struct netns_frags frags; struct fqdir frags;
#ifdef CONFIG_NETFILTER #ifdef CONFIG_NETFILTER
struct xt_table *ip6table_filter; struct xt_table *ip6table_filter;
struct xt_table *ip6table_mangle; struct xt_table *ip6table_mangle;
...@@ -116,7 +116,7 @@ struct netns_ipv6 { ...@@ -116,7 +116,7 @@ struct netns_ipv6 {
#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6) #if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
struct netns_nf_frag { struct netns_nf_frag {
struct netns_frags frags; struct fqdir frags;
}; };
#endif #endif
......
...@@ -139,7 +139,7 @@ static int lowpan_frag_queue(struct lowpan_frag_queue *fq, ...@@ -139,7 +139,7 @@ static int lowpan_frag_queue(struct lowpan_frag_queue *fq,
fq->q.flags |= INET_FRAG_FIRST_IN; fq->q.flags |= INET_FRAG_FIRST_IN;
fq->q.meat += skb->len; fq->q.meat += skb->len;
add_frag_mem_limit(fq->q.net, skb->truesize); add_frag_mem_limit(fq->q.fqdir, skb->truesize);
if (fq->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) && if (fq->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
fq->q.meat == fq->q.len) { fq->q.meat == fq->q.len) {
......
...@@ -145,11 +145,11 @@ static void inet_frags_free_cb(void *ptr, void *arg) ...@@ -145,11 +145,11 @@ static void inet_frags_free_cb(void *ptr, void *arg)
inet_frag_put(fq); inet_frag_put(fq);
} }
void inet_frags_exit_net(struct netns_frags *nf) void inet_frags_exit_net(struct fqdir *fqdir)
{ {
nf->high_thresh = 0; /* prevent creation of new frags */ fqdir->high_thresh = 0; /* prevent creation of new frags */
rhashtable_free_and_destroy(&nf->rhashtable, inet_frags_free_cb, NULL); rhashtable_free_and_destroy(&fqdir->rhashtable, inet_frags_free_cb, NULL);
} }
EXPORT_SYMBOL(inet_frags_exit_net); EXPORT_SYMBOL(inet_frags_exit_net);
...@@ -159,10 +159,10 @@ void inet_frag_kill(struct inet_frag_queue *fq) ...@@ -159,10 +159,10 @@ void inet_frag_kill(struct inet_frag_queue *fq)
refcount_dec(&fq->refcnt); refcount_dec(&fq->refcnt);
if (!(fq->flags & INET_FRAG_COMPLETE)) { if (!(fq->flags & INET_FRAG_COMPLETE)) {
struct netns_frags *nf = fq->net; struct fqdir *fqdir = fq->fqdir;
fq->flags |= INET_FRAG_COMPLETE; fq->flags |= INET_FRAG_COMPLETE;
rhashtable_remove_fast(&nf->rhashtable, &fq->node, nf->f->rhash_params); rhashtable_remove_fast(&fqdir->rhashtable, &fq->node, fqdir->f->rhash_params);
refcount_dec(&fq->refcnt); refcount_dec(&fq->refcnt);
} }
} }
...@@ -172,7 +172,7 @@ static void inet_frag_destroy_rcu(struct rcu_head *head) ...@@ -172,7 +172,7 @@ static void inet_frag_destroy_rcu(struct rcu_head *head)
{ {
struct inet_frag_queue *q = container_of(head, struct inet_frag_queue, struct inet_frag_queue *q = container_of(head, struct inet_frag_queue,
rcu); rcu);
struct inet_frags *f = q->net->f; struct inet_frags *f = q->fqdir->f;
if (f->destructor) if (f->destructor)
f->destructor(q); f->destructor(q);
...@@ -203,7 +203,7 @@ EXPORT_SYMBOL(inet_frag_rbtree_purge); ...@@ -203,7 +203,7 @@ EXPORT_SYMBOL(inet_frag_rbtree_purge);
void inet_frag_destroy(struct inet_frag_queue *q) void inet_frag_destroy(struct inet_frag_queue *q)
{ {
struct netns_frags *nf; struct fqdir *fqdir;
unsigned int sum, sum_truesize = 0; unsigned int sum, sum_truesize = 0;
struct inet_frags *f; struct inet_frags *f;
...@@ -211,18 +211,18 @@ void inet_frag_destroy(struct inet_frag_queue *q) ...@@ -211,18 +211,18 @@ void inet_frag_destroy(struct inet_frag_queue *q)
WARN_ON(del_timer(&q->timer) != 0); WARN_ON(del_timer(&q->timer) != 0);
/* Release all fragment data. */ /* Release all fragment data. */
nf = q->net; fqdir = q->fqdir;
f = nf->f; f = fqdir->f;
sum_truesize = inet_frag_rbtree_purge(&q->rb_fragments); sum_truesize = inet_frag_rbtree_purge(&q->rb_fragments);
sum = sum_truesize + f->qsize; sum = sum_truesize + f->qsize;
call_rcu(&q->rcu, inet_frag_destroy_rcu); call_rcu(&q->rcu, inet_frag_destroy_rcu);
sub_frag_mem_limit(nf, sum); sub_frag_mem_limit(fqdir, sum);
} }
EXPORT_SYMBOL(inet_frag_destroy); EXPORT_SYMBOL(inet_frag_destroy);
static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf, static struct inet_frag_queue *inet_frag_alloc(struct fqdir *fqdir,
struct inet_frags *f, struct inet_frags *f,
void *arg) void *arg)
{ {
...@@ -232,9 +232,9 @@ static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf, ...@@ -232,9 +232,9 @@ static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf,
if (!q) if (!q)
return NULL; return NULL;
q->net = nf; q->fqdir = fqdir;
f->constructor(q, arg); f->constructor(q, arg);
add_frag_mem_limit(nf, f->qsize); add_frag_mem_limit(fqdir, f->qsize);
timer_setup(&q->timer, f->frag_expire, 0); timer_setup(&q->timer, f->frag_expire, 0);
spin_lock_init(&q->lock); spin_lock_init(&q->lock);
...@@ -243,21 +243,21 @@ static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf, ...@@ -243,21 +243,21 @@ static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf,
return q; return q;
} }
static struct inet_frag_queue *inet_frag_create(struct netns_frags *nf, static struct inet_frag_queue *inet_frag_create(struct fqdir *fqdir,
void *arg, void *arg,
struct inet_frag_queue **prev) struct inet_frag_queue **prev)
{ {
struct inet_frags *f = nf->f; struct inet_frags *f = fqdir->f;
struct inet_frag_queue *q; struct inet_frag_queue *q;
q = inet_frag_alloc(nf, f, arg); q = inet_frag_alloc(fqdir, f, arg);
if (!q) { if (!q) {
*prev = ERR_PTR(-ENOMEM); *prev = ERR_PTR(-ENOMEM);
return NULL; return NULL;
} }
mod_timer(&q->timer, jiffies + nf->timeout); mod_timer(&q->timer, jiffies + fqdir->timeout);
*prev = rhashtable_lookup_get_insert_key(&nf->rhashtable, &q->key, *prev = rhashtable_lookup_get_insert_key(&fqdir->rhashtable, &q->key,
&q->node, f->rhash_params); &q->node, f->rhash_params);
if (*prev) { if (*prev) {
q->flags |= INET_FRAG_COMPLETE; q->flags |= INET_FRAG_COMPLETE;
...@@ -269,18 +269,18 @@ static struct inet_frag_queue *inet_frag_create(struct netns_frags *nf, ...@@ -269,18 +269,18 @@ static struct inet_frag_queue *inet_frag_create(struct netns_frags *nf,
} }
/* TODO : call from rcu_read_lock() and no longer use refcount_inc_not_zero() */ /* TODO : call from rcu_read_lock() and no longer use refcount_inc_not_zero() */
struct inet_frag_queue *inet_frag_find(struct netns_frags *nf, void *key) struct inet_frag_queue *inet_frag_find(struct fqdir *fqdir, void *key)
{ {
struct inet_frag_queue *fq = NULL, *prev; struct inet_frag_queue *fq = NULL, *prev;
if (!nf->high_thresh || frag_mem_limit(nf) > nf->high_thresh) if (!fqdir->high_thresh || frag_mem_limit(fqdir) > fqdir->high_thresh)
return NULL; return NULL;
rcu_read_lock(); rcu_read_lock();
prev = rhashtable_lookup(&nf->rhashtable, key, nf->f->rhash_params); prev = rhashtable_lookup(&fqdir->rhashtable, key, fqdir->f->rhash_params);
if (!prev) if (!prev)
fq = inet_frag_create(nf, key, &prev); fq = inet_frag_create(fqdir, key, &prev);
if (prev && !IS_ERR(prev)) { if (prev && !IS_ERR(prev)) {
fq = prev; fq = prev;
if (!refcount_inc_not_zero(&fq->refcnt)) if (!refcount_inc_not_zero(&fq->refcnt))
...@@ -391,7 +391,7 @@ void *inet_frag_reasm_prepare(struct inet_frag_queue *q, struct sk_buff *skb, ...@@ -391,7 +391,7 @@ void *inet_frag_reasm_prepare(struct inet_frag_queue *q, struct sk_buff *skb,
delta += head->truesize; delta += head->truesize;
if (delta) if (delta)
add_frag_mem_limit(q->net, delta); add_frag_mem_limit(q->fqdir, delta);
/* If the first fragment is fragmented itself, we split /* If the first fragment is fragmented itself, we split
* it to two chunks: the first with data and paged part * it to two chunks: the first with data and paged part
...@@ -413,7 +413,7 @@ void *inet_frag_reasm_prepare(struct inet_frag_queue *q, struct sk_buff *skb, ...@@ -413,7 +413,7 @@ void *inet_frag_reasm_prepare(struct inet_frag_queue *q, struct sk_buff *skb,
head->truesize += clone->truesize; head->truesize += clone->truesize;
clone->csum = 0; clone->csum = 0;
clone->ip_summed = head->ip_summed; clone->ip_summed = head->ip_summed;
add_frag_mem_limit(q->net, clone->truesize); add_frag_mem_limit(q->fqdir, clone->truesize);
skb_shinfo(head)->frag_list = clone; skb_shinfo(head)->frag_list = clone;
nextp = &clone->next; nextp = &clone->next;
} else { } else {
...@@ -466,7 +466,7 @@ void inet_frag_reasm_finish(struct inet_frag_queue *q, struct sk_buff *head, ...@@ -466,7 +466,7 @@ void inet_frag_reasm_finish(struct inet_frag_queue *q, struct sk_buff *head,
rbn = rbnext; rbn = rbnext;
} }
} }
sub_frag_mem_limit(q->net, head->truesize); sub_frag_mem_limit(q->fqdir, head->truesize);
*nextp = NULL; *nextp = NULL;
skb_mark_not_on_list(head); skb_mark_not_on_list(head);
...@@ -494,7 +494,7 @@ struct sk_buff *inet_frag_pull_head(struct inet_frag_queue *q) ...@@ -494,7 +494,7 @@ struct sk_buff *inet_frag_pull_head(struct inet_frag_queue *q)
if (head == q->fragments_tail) if (head == q->fragments_tail)
q->fragments_tail = NULL; q->fragments_tail = NULL;
sub_frag_mem_limit(q->net, head->truesize); sub_frag_mem_limit(q->fqdir, head->truesize);
return head; return head;
} }
......
...@@ -82,7 +82,7 @@ static int ip_frag_reasm(struct ipq *qp, struct sk_buff *skb, ...@@ -82,7 +82,7 @@ static int ip_frag_reasm(struct ipq *qp, struct sk_buff *skb,
static void ip4_frag_init(struct inet_frag_queue *q, const void *a) static void ip4_frag_init(struct inet_frag_queue *q, const void *a)
{ {
struct ipq *qp = container_of(q, struct ipq, q); struct ipq *qp = container_of(q, struct ipq, q);
struct netns_ipv4 *ipv4 = container_of(q->net, struct netns_ipv4, struct netns_ipv4 *ipv4 = container_of(q->fqdir, struct netns_ipv4,
frags); frags);
struct net *net = container_of(ipv4, struct net, ipv4); struct net *net = container_of(ipv4, struct net, ipv4);
...@@ -90,7 +90,7 @@ static void ip4_frag_init(struct inet_frag_queue *q, const void *a) ...@@ -90,7 +90,7 @@ static void ip4_frag_init(struct inet_frag_queue *q, const void *a)
q->key.v4 = *key; q->key.v4 = *key;
qp->ecn = 0; qp->ecn = 0;
qp->peer = q->net->max_dist ? qp->peer = q->fqdir->max_dist ?
inet_getpeer_v4(net->ipv4.peers, key->saddr, key->vif, 1) : inet_getpeer_v4(net->ipv4.peers, key->saddr, key->vif, 1) :
NULL; NULL;
} }
...@@ -142,7 +142,7 @@ static void ip_expire(struct timer_list *t) ...@@ -142,7 +142,7 @@ static void ip_expire(struct timer_list *t)
int err; int err;
qp = container_of(frag, struct ipq, q); qp = container_of(frag, struct ipq, q);
net = container_of(qp->q.net, struct net, ipv4.frags); net = container_of(qp->q.fqdir, struct net, ipv4.frags);
rcu_read_lock(); rcu_read_lock();
spin_lock(&qp->q.lock); spin_lock(&qp->q.lock);
...@@ -222,7 +222,7 @@ static struct ipq *ip_find(struct net *net, struct iphdr *iph, ...@@ -222,7 +222,7 @@ static struct ipq *ip_find(struct net *net, struct iphdr *iph,
static int ip_frag_too_far(struct ipq *qp) static int ip_frag_too_far(struct ipq *qp)
{ {
struct inet_peer *peer = qp->peer; struct inet_peer *peer = qp->peer;
unsigned int max = qp->q.net->max_dist; unsigned int max = qp->q.fqdir->max_dist;
unsigned int start, end; unsigned int start, end;
int rc; int rc;
...@@ -239,7 +239,7 @@ static int ip_frag_too_far(struct ipq *qp) ...@@ -239,7 +239,7 @@ static int ip_frag_too_far(struct ipq *qp)
if (rc) { if (rc) {
struct net *net; struct net *net;
net = container_of(qp->q.net, struct net, ipv4.frags); net = container_of(qp->q.fqdir, struct net, ipv4.frags);
__IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS); __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
} }
...@@ -250,13 +250,13 @@ static int ip_frag_reinit(struct ipq *qp) ...@@ -250,13 +250,13 @@ static int ip_frag_reinit(struct ipq *qp)
{ {
unsigned int sum_truesize = 0; unsigned int sum_truesize = 0;
if (!mod_timer(&qp->q.timer, jiffies + qp->q.net->timeout)) { if (!mod_timer(&qp->q.timer, jiffies + qp->q.fqdir->timeout)) {
refcount_inc(&qp->q.refcnt); refcount_inc(&qp->q.refcnt);
return -ETIMEDOUT; return -ETIMEDOUT;
} }
sum_truesize = inet_frag_rbtree_purge(&qp->q.rb_fragments); sum_truesize = inet_frag_rbtree_purge(&qp->q.rb_fragments);
sub_frag_mem_limit(qp->q.net, sum_truesize); sub_frag_mem_limit(qp->q.fqdir, sum_truesize);
qp->q.flags = 0; qp->q.flags = 0;
qp->q.len = 0; qp->q.len = 0;
...@@ -273,7 +273,7 @@ static int ip_frag_reinit(struct ipq *qp) ...@@ -273,7 +273,7 @@ static int ip_frag_reinit(struct ipq *qp)
/* Add new segment to existing queue. */ /* Add new segment to existing queue. */
static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb) static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
{ {
struct net *net = container_of(qp->q.net, struct net, ipv4.frags); struct net *net = container_of(qp->q.fqdir, struct net, ipv4.frags);
int ihl, end, flags, offset; int ihl, end, flags, offset;
struct sk_buff *prev_tail; struct sk_buff *prev_tail;
struct net_device *dev; struct net_device *dev;
...@@ -352,7 +352,7 @@ static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb) ...@@ -352,7 +352,7 @@ static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
qp->q.stamp = skb->tstamp; qp->q.stamp = skb->tstamp;
qp->q.meat += skb->len; qp->q.meat += skb->len;
qp->ecn |= ecn; qp->ecn |= ecn;
add_frag_mem_limit(qp->q.net, skb->truesize); add_frag_mem_limit(qp->q.fqdir, skb->truesize);
if (offset == 0) if (offset == 0)
qp->q.flags |= INET_FRAG_FIRST_IN; qp->q.flags |= INET_FRAG_FIRST_IN;
...@@ -399,7 +399,7 @@ static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb) ...@@ -399,7 +399,7 @@ static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
static int ip_frag_reasm(struct ipq *qp, struct sk_buff *skb, static int ip_frag_reasm(struct ipq *qp, struct sk_buff *skb,
struct sk_buff *prev_tail, struct net_device *dev) struct sk_buff *prev_tail, struct net_device *dev)
{ {
struct net *net = container_of(qp->q.net, struct net, ipv4.frags); struct net *net = container_of(qp->q.fqdir, struct net, ipv4.frags);
struct iphdr *iph; struct iphdr *iph;
void *reasm_data; void *reasm_data;
int len, err; int len, err;
......
...@@ -151,7 +151,7 @@ static void nf_ct_frag6_expire(struct timer_list *t) ...@@ -151,7 +151,7 @@ static void nf_ct_frag6_expire(struct timer_list *t)
struct net *net; struct net *net;
fq = container_of(frag, struct frag_queue, q); fq = container_of(frag, struct frag_queue, q);
net = container_of(fq->q.net, struct net, nf_frag.frags); net = container_of(fq->q.fqdir, struct net, nf_frag.frags);
ip6frag_expire_frag_queue(net, fq); ip6frag_expire_frag_queue(net, fq);
} }
...@@ -276,7 +276,7 @@ static int nf_ct_frag6_queue(struct frag_queue *fq, struct sk_buff *skb, ...@@ -276,7 +276,7 @@ static int nf_ct_frag6_queue(struct frag_queue *fq, struct sk_buff *skb,
fq->ecn |= ecn; fq->ecn |= ecn;
if (payload_len > fq->q.max_size) if (payload_len > fq->q.max_size)
fq->q.max_size = payload_len; fq->q.max_size = payload_len;
add_frag_mem_limit(fq->q.net, skb->truesize); add_frag_mem_limit(fq->q.fqdir, skb->truesize);
/* The first fragment. /* The first fragment.
* nhoffset is obtained from the first fragment, of course. * nhoffset is obtained from the first fragment, of course.
......
...@@ -79,7 +79,7 @@ static void ip6_frag_expire(struct timer_list *t) ...@@ -79,7 +79,7 @@ static void ip6_frag_expire(struct timer_list *t)
struct net *net; struct net *net;
fq = container_of(frag, struct frag_queue, q); fq = container_of(frag, struct frag_queue, q);
net = container_of(fq->q.net, struct net, ipv6.frags); net = container_of(fq->q.fqdir, struct net, ipv6.frags);
ip6frag_expire_frag_queue(net, fq); ip6frag_expire_frag_queue(net, fq);
} }
...@@ -200,7 +200,7 @@ static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb, ...@@ -200,7 +200,7 @@ static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb,
fq->q.stamp = skb->tstamp; fq->q.stamp = skb->tstamp;
fq->q.meat += skb->len; fq->q.meat += skb->len;
fq->ecn |= ecn; fq->ecn |= ecn;
add_frag_mem_limit(fq->q.net, skb->truesize); add_frag_mem_limit(fq->q.fqdir, skb->truesize);
fragsize = -skb_network_offset(skb) + skb->len; fragsize = -skb_network_offset(skb) + skb->len;
if (fragsize > fq->q.max_size) if (fragsize > fq->q.max_size)
...@@ -254,7 +254,7 @@ static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb, ...@@ -254,7 +254,7 @@ static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb,
static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *skb, static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *skb,
struct sk_buff *prev_tail, struct net_device *dev) struct sk_buff *prev_tail, struct net_device *dev)
{ {
struct net *net = container_of(fq->q.net, struct net, ipv6.frags); struct net *net = container_of(fq->q.fqdir, struct net, ipv6.frags);
unsigned int nhoff; unsigned int nhoff;
void *reasm_data; void *reasm_data;
int payload_len; int payload_len;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment