aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ccids/lib/loss_interval.h
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2007-05-28 18:25:12 -0300
committerDavid S. Miller <davem@sunset.davemloft.net>2007-07-10 22:15:22 -0700
commitc70b729e662a1b3ee2ef5370c1e4c9bc3ddc239f (patch)
treeeddbd3ddd84e5ebfc0513f8c4dbe23c9eabd8492 /net/dccp/ccids/lib/loss_interval.h
parentloss_interval: unexport dccp_li_hist_interval_new (diff)
downloadlinux-dev-c70b729e662a1b3ee2ef5370c1e4c9bc3ddc239f.tar.xz
linux-dev-c70b729e662a1b3ee2ef5370c1e4c9bc3ddc239f.zip
loss_interval: Make dccp_li_hist_entry_{new,delete} private
Not used outside the loss_interval code anymore. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'net/dccp/ccids/lib/loss_interval.h')
-rw-r--r--net/dccp/ccids/lib/loss_interval.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/net/dccp/ccids/lib/loss_interval.h b/net/dccp/ccids/lib/loss_interval.h
index 653328d04ef0..8d3c9bfa4915 100644
--- a/net/dccp/ccids/lib/loss_interval.h
+++ b/net/dccp/ccids/lib/loss_interval.h
@@ -33,20 +33,6 @@ struct dccp_li_hist_entry {
u32 dccplih_interval;
};
-static inline struct dccp_li_hist_entry *
- dccp_li_hist_entry_new(struct dccp_li_hist *hist,
- const gfp_t prio)
-{
- return kmem_cache_alloc(hist->dccplih_slab, prio);
-}
-
-static inline void dccp_li_hist_entry_delete(struct dccp_li_hist *hist,
- struct dccp_li_hist_entry *entry)
-{
- if (entry != NULL)
- kmem_cache_free(hist->dccplih_slab, entry);
-}
-
extern void dccp_li_hist_purge(struct dccp_li_hist *hist,
struct list_head *list);