diff options
author | Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> | 2011-01-20 23:10:26 +0100 |
---|---|---|
committer | Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> | 2011-01-20 23:10:26 +0100 |
commit | ed3c453a0787ddc10c5ce6010bd6ac663c740b68 (patch) | |
tree | 10f36ee9dd9883d95c0e2a680483fcdacefc4e28 /kernel/include | |
parent | eb873d2fc5240a873bc52d0cc57e4062288b291b (diff) |
Un-inline functions which are not small enough
Diffstat (limited to 'kernel/include')
-rw-r--r-- | kernel/include/linux/netfilter/ipset/ip_set_ahash.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kernel/include/linux/netfilter/ipset/ip_set_ahash.h b/kernel/include/linux/netfilter/ipset/ip_set_ahash.h index 05855a7..cee22d6 100644 --- a/kernel/include/linux/netfilter/ipset/ip_set_ahash.h +++ b/kernel/include/linux/netfilter/ipset/ip_set_ahash.h @@ -63,7 +63,7 @@ struct ip_set_hash { }; /* Compute htable_bits from the user input parameter hashsize */ -static inline u8 +static u8 htable_bits(u32 hashsize) { /* Assume that hashsize == 2^htable_bits */ @@ -81,7 +81,7 @@ htable_bits(u32 hashsize) /* Network cidr size book keeping when the hash stores different * sized networks */ -static inline void +static void add_cidr(struct ip_set_hash *h, u8 cidr, u8 host_mask) { u8 i; @@ -103,7 +103,7 @@ add_cidr(struct ip_set_hash *h, u8 cidr, u8 host_mask) h->nets[i].cidr = cidr; } -static inline void +static void del_cidr(struct ip_set_hash *h, u8 cidr, u8 host_mask) { u8 i; @@ -142,7 +142,7 @@ ahash_destroy(struct htable *t) } /* Calculate the actual memory size of the set data */ -static inline size_t +static size_t ahash_memsize(const struct ip_set_hash *h, size_t dsize, u8 host_mask) { u32 i; @@ -436,7 +436,7 @@ type_pf_del(struct ip_set *set, void *value, u32 timeout) /* Special test function which takes into account the different network * sizes added to the set */ -static inline int +static int type_pf_test_cidrs(struct ip_set *set, struct type_pf_elem *d, u32 timeout) { struct ip_set_hash *h = set->data; @@ -881,7 +881,7 @@ type_pf_tdel(struct ip_set *set, void *value, u32 timeout) } #ifdef IP_SET_HASH_WITH_NETS -static inline int +static int type_pf_ttest_cidrs(struct ip_set *set, struct type_pf_elem *d, u32 timeout) { struct ip_set_hash *h = set->data; @@ -1017,7 +1017,7 @@ type_pf_gc(unsigned long ul_set) add_timer(&h->gc); } -static inline void +static void type_pf_gc_init(struct ip_set *set) { struct ip_set_hash *h = set->data; |