diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2006-03-20 20:16:17 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-20 20:16:17 -0500 |
commit | 9b07ef5ddaced1e822b1a1fb1da088eb15c45cb4 (patch) | |
tree | 57a33bb4ed32384a95e2c23d7039e8ed99c5b595 /net/dccp/ackvec.c | |
parent | fa23e2ecd30a584cdcb9b3de0149dbb5c073c20b (diff) |
[DCCP] ackvec: Introduce dccp_ackvec_slab
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ackvec.c')
-rw-r--r-- | net/dccp/ackvec.c | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/net/dccp/ackvec.c b/net/dccp/ackvec.c index 348374005db0..64408253b14e 100644 --- a/net/dccp/ackvec.c +++ b/net/dccp/ackvec.c | |||
@@ -13,10 +13,16 @@ | |||
13 | #include "dccp.h" | 13 | #include "dccp.h" |
14 | 14 | ||
15 | #include <linux/dccp.h> | 15 | #include <linux/dccp.h> |
16 | #include <linux/init.h> | ||
17 | #include <linux/errno.h> | ||
18 | #include <linux/kernel.h> | ||
16 | #include <linux/skbuff.h> | 19 | #include <linux/skbuff.h> |
20 | #include <linux/slab.h> | ||
17 | 21 | ||
18 | #include <net/sock.h> | 22 | #include <net/sock.h> |
19 | 23 | ||
24 | static kmem_cache_t *dccp_ackvec_slab; | ||
25 | |||
20 | int dccp_insert_option_ackvec(struct sock *sk, struct sk_buff *skb) | 26 | int dccp_insert_option_ackvec(struct sock *sk, struct sk_buff *skb) |
21 | { | 27 | { |
22 | struct dccp_sock *dp = dccp_sk(sk); | 28 | struct dccp_sock *dp = dccp_sk(sk); |
@@ -96,7 +102,7 @@ int dccp_insert_option_ackvec(struct sock *sk, struct sk_buff *skb) | |||
96 | 102 | ||
97 | struct dccp_ackvec *dccp_ackvec_alloc(const gfp_t priority) | 103 | struct dccp_ackvec *dccp_ackvec_alloc(const gfp_t priority) |
98 | { | 104 | { |
99 | struct dccp_ackvec *av = kmalloc(sizeof(*av), priority); | 105 | struct dccp_ackvec *av = kmem_cache_alloc(dccp_ackvec_slab, priority); |
100 | 106 | ||
101 | if (av != NULL) { | 107 | if (av != NULL) { |
102 | av->dccpav_buf_head = | 108 | av->dccpav_buf_head = |
@@ -115,7 +121,7 @@ struct dccp_ackvec *dccp_ackvec_alloc(const gfp_t priority) | |||
115 | 121 | ||
116 | void dccp_ackvec_free(struct dccp_ackvec *av) | 122 | void dccp_ackvec_free(struct dccp_ackvec *av) |
117 | { | 123 | { |
118 | kfree(av); | 124 | kmem_cache_free(dccp_ackvec_slab, av); |
119 | } | 125 | } |
120 | 126 | ||
121 | static inline u8 dccp_ackvec_state(const struct dccp_ackvec *av, | 127 | static inline u8 dccp_ackvec_state(const struct dccp_ackvec *av, |
@@ -420,3 +426,27 @@ int dccp_ackvec_parse(struct sock *sk, const struct sk_buff *skb, | |||
420 | len, value); | 426 | len, value); |
421 | return 0; | 427 | return 0; |
422 | } | 428 | } |
429 | |||
430 | static char dccp_ackvec_slab_msg[] __initdata = | ||
431 | KERN_CRIT "DCCP: Unable to create ack vectors slab cache\n"; | ||
432 | |||
433 | int __init dccp_ackvec_init(void) | ||
434 | { | ||
435 | dccp_ackvec_slab = kmem_cache_create("dccp_ackvec", | ||
436 | sizeof(struct dccp_ackvec), 0, | ||
437 | SLAB_HWCACHE_ALIGN, NULL, NULL); | ||
438 | if (dccp_ackvec_slab == NULL) { | ||
439 | printk(dccp_ackvec_slab_msg); | ||
440 | return -ENOBUFS; | ||
441 | } | ||
442 | |||
443 | return 0; | ||
444 | } | ||
445 | |||
446 | void dccp_ackvec_exit(void) | ||
447 | { | ||
448 | if (dccp_ackvec_slab != NULL) { | ||
449 | kmem_cache_destroy(dccp_ackvec_slab); | ||
450 | dccp_ackvec_slab = NULL; | ||
451 | } | ||
452 | } | ||