tfrc_tx_hist_slab   31 net/dccp/ccids/lib/packet_history.c static struct kmem_cache *tfrc_tx_hist_slab;
tfrc_tx_hist_slab   35 net/dccp/ccids/lib/packet_history.c 	tfrc_tx_hist_slab = kmem_cache_create("tfrc_tx_hist",
tfrc_tx_hist_slab   38 net/dccp/ccids/lib/packet_history.c 	return tfrc_tx_hist_slab == NULL ? -ENOBUFS : 0;
tfrc_tx_hist_slab   43 net/dccp/ccids/lib/packet_history.c 	if (tfrc_tx_hist_slab != NULL) {
tfrc_tx_hist_slab   44 net/dccp/ccids/lib/packet_history.c 		kmem_cache_destroy(tfrc_tx_hist_slab);
tfrc_tx_hist_slab   45 net/dccp/ccids/lib/packet_history.c 		tfrc_tx_hist_slab = NULL;
tfrc_tx_hist_slab   51 net/dccp/ccids/lib/packet_history.c 	struct tfrc_tx_hist_entry *entry = kmem_cache_alloc(tfrc_tx_hist_slab, gfp_any());
tfrc_tx_hist_slab   69 net/dccp/ccids/lib/packet_history.c 		kmem_cache_free(tfrc_tx_hist_slab, head);