Skip to content

Commit

Permalink
compat: Detect and use inet_frag_queue->list_evictor.
Browse files Browse the repository at this point in the history
Kernels 3.17 to 4.2 have a work queue to evict old fragments, but do not
track these fragments in an eviction list. On these kernels, we detect
the absence of the list_evictor and provide one. This commit fixes the
reliance on kernel versions in the case that this functionality is
backported.

Signed-off-by: Joe Stringer <[email protected]>
Acked-by: Pravin B Shelar <[email protected]>
  • Loading branch information
joestringer committed Feb 4, 2016
1 parent 6312929 commit e0d45da
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 9 deletions.
3 changes: 3 additions & 0 deletions acinclude.m4
Original file line number Diff line number Diff line change
Expand Up @@ -355,10 +355,13 @@ AC_DEFUN([OVS_CHECK_LINUX_COMPAT], [
[OVS_DEFINE([HAVE_INET_FRAGS_CONST])])
OVS_GREP_IFELSE([$KSRC/include/net/inet_frag.h], [last_in],
[OVS_DEFINE([HAVE_INET_FRAGS_LAST_IN])])
OVS_GREP_IFELSE([$KSRC/include/net/inet_frag.h], [inet_frag_evicting])
OVS_FIND_FIELD_IFELSE([$KSRC/include/net/inet_frag.h], [inet_frags],
[frags_work])
OVS_FIND_FIELD_IFELSE([$KSRC/include/net/inet_frag.h], [inet_frags],
[rwlock])
OVS_FIND_FIELD_IFELSE([$KSRC/include/net/inet_frag.h], [inet_frag_queue],
[list_evictor])
OVS_GREP_IFELSE([$KSRC/include/net/inetpeer.h], [vif],
[OVS_DEFINE([HAVE_INETPEER_VIF_SUPPORT])])
Expand Down
10 changes: 10 additions & 0 deletions datapath/linux/compat/include/net/inet_frag.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#define qp_flags(qp) (qp->q.flags)
#endif

#ifndef HAVE_INET_FRAG_QUEUE_WITH_LIST_EVICTOR
/**
* struct ovs_inet_frag_queue - fragment queue
*
Expand All @@ -44,6 +45,15 @@ static inline bool rpl_inet_frag_evicting(struct inet_frag_queue *q)
#endif
}
#define inet_frag_evicting rpl_inet_frag_evicting
#else /* HAVE_INET_FRAG_QUEUE_WITH_LIST_EVICTOR */
#ifndef HAVE_INET_FRAG_EVICTING
static inline bool rpl_inet_frag_evicting(struct inet_frag_queue *q)
{
return !hlist_unhashed(&q->list_evictor);
}
#define inet_frag_evicting rpl_inet_frag_evicting
#endif
#endif

static unsigned int rpl_frag_percpu_counter_batch = 130000;
#define frag_percpu_counter_batch rpl_frag_percpu_counter_batch
Expand Down
16 changes: 8 additions & 8 deletions datapath/linux/compat/inet_fragment.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ static bool inet_fragq_should_evict(const struct inet_frag_queue *q)
static unsigned int
inet_evict_bucket(struct inet_frags *f, struct inet_frag_bucket *hb)
{
#if LINUX_VERSION_CODE < KERNEL_VERSION(4,2,0)
#ifndef HAVE_INET_FRAG_QUEUE_WITH_LIST_EVICTOR
struct ovs_inet_frag_queue *ofq;
#endif
struct inet_frag_queue *fq;
Expand All @@ -147,23 +147,23 @@ inet_evict_bucket(struct inet_frags *f, struct inet_frag_bucket *hb)
if (!del_timer(&fq->timer))
continue;

#if LINUX_VERSION_CODE < KERNEL_VERSION(4,2,0)
#ifdef HAVE_INET_FRAG_QUEUE_WITH_LIST_EVICTOR
hlist_add_head(&fq->list_evictor, &expired);
#else
ofq = (struct ovs_inet_frag_queue *)fq;
hlist_add_head(&ofq->list_evictor, &expired);
#else
hlist_add_head(&fq->list_evictor, &expired);
#endif
++evicted;
}

spin_unlock(&hb->chain_lock);

#if LINUX_VERSION_CODE < KERNEL_VERSION(4,2,0)
hlist_for_each_entry_safe(ofq, n, &expired, list_evictor)
f->frag_expire((unsigned long) &ofq->fq);
#else
#ifdef HAVE_INET_FRAG_QUEUE_WITH_LIST_EVICTOR
hlist_for_each_entry_safe(fq, n, &expired, list_evictor)
f->frag_expire((unsigned long) fq);
#else
hlist_for_each_entry_safe(ofq, n, &expired, list_evictor)
f->frag_expire((unsigned long) &ofq->fq);
#endif

return evicted;
Expand Down
2 changes: 1 addition & 1 deletion datapath/linux/compat/ip_fragment.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ struct ipfrag_skb_cb
struct ipq {
union {
struct inet_frag_queue q;
#if LINUX_VERSION_CODE < KERNEL_VERSION(4,2,0)
#ifndef HAVE_INET_FRAG_QUEUE_WITH_LIST_EVICTOR
struct ovs_inet_frag_queue oq;
#endif
};
Expand Down

0 comments on commit e0d45da

Please sign in to comment.