Searched refs:mempool (Results 1 - 25 of 64) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ceph/
H A Dmsgpool.h4 #include <linux/mempool.h>
H A Dosd_client.h6 #include <linux/mempool.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dbtree.h5 #include <linux/mempool.h>
31 * @mempool: mempool used for node allocations
36 mempool_t *mempool; member in struct:btree_head
44 * btree_alloc - allocate function for the mempool
51 * btree_free - free function for the mempool
58 * btree_init_mempool - initialise a btree with given mempool
61 * @mempool: the mempool to use
64 * the mempool
[all...]
H A Dbtree-128.h6 mempool_t *mempool)
8 btree_init_mempool(&head->h, mempool);
5 btree_init_mempool128(struct btree_head128 *head, mempool_t *mempool) argument
H A Dbtree-type.h14 mempool_t *mempool)
16 btree_init_mempool(&head->h, mempool);
13 init_mempool(BTREE_TYPE_HEAD *head, mempool_t *mempool) argument
H A Di2o.h31 #include <linux/mempool.h>
411 /* MFA and I2O message used by mempool */
489 * Contains slab cache and mempool information
494 mempool_t *mempool; member in struct:i2o_pool
554 struct i2o_pool in_msg; /* mempool for inbound messages */
831 * allocated from a mempool. But because a MFA is allocated from the
840 struct i2o_msg_mfa *mmsg = mempool_alloc(c->in_msg.mempool, GFP_ATOMIC);
848 mempool_free(mmsg, c->in_msg.mempool);
874 mempool_free(mmsg, c->in_msg.mempool);
902 * also returns the allocated memory back to the msg_pool mempool
[all...]
H A Dpktcdvd.h116 #include <linux/mempool.h>
284 mempool_t *rb_pool; /* mempool for pkt_rb_node allocations */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dwrite-qt.c222 append_u8 (struct obstack *mempool, unsigned char value) argument
228 obstack_grow (mempool, data, 1);
233 append_u16 (struct obstack *mempool, unsigned short value) argument
240 obstack_grow (mempool, data, 2);
245 append_u32 (struct obstack *mempool, unsigned int value) argument
254 obstack_grow (mempool, data, 4);
259 append_base_string (struct obstack *mempool, const char *string) argument
262 append_u32 (mempool, length);
263 obstack_grow (mempool, string, length);
268 append_unicode_string (struct obstack *mempool, cons argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/vxge/
H A Dvxge-config.c1096 dma_object = ring->mempool->memblocks_dma_arr;
1319 ring->mempool = __vxge_hw_mempool_create(hldev,
1328 if (ring->mempool == NULL) {
1427 if (ring->mempool)
1428 __vxge_hw_mempool_destroy(ring->mempool);
1438 * Will resize mempool up to %num_allocate value.
1441 __vxge_hw_mempool_grow(struct vxge_hw_mempool *mempool, u32 num_allocate, argument
1444 u32 i, first_time = mempool->memblocks_allocated == 0 ? 1 : 0;
1445 u32 n_items = mempool->items_per_memblock;
1446 u32 start_block_idx = mempool
1542 struct vxge_hw_mempool *mempool = NULL; local
1646 __vxge_hw_mempool_destroy(struct vxge_hw_mempool *mempool) argument
[all...]
H A Dvxge-config.h855 * @mempool: Memory pool, the pool from which descriptors get allocated.
890 struct vxge_hw_mempool *mempool; member in struct:__vxge_hw_ring
947 * @mempool: Memory pool, from which descriptors get allocated.
972 struct vxge_hw_mempool *mempool; member in struct:__vxge_hw_fifo
1994 struct vxge_hw_mempool *mempool,
2000 void *memblock = mempool->memblocks_arr[memblock_idx];
2004 vxge_assert(offset >= 0 && (u32)offset < mempool->memblock_size);
2006 (*memblock_item_idx) = (u32) offset / mempool->item_size;
2007 vxge_assert((*memblock_item_idx) < mempool->items_per_memblock);
2009 return (u8 *)mempool
1993 __vxge_hw_mempool_item_priv( struct vxge_hw_mempool *mempool, u32 memblock_idx, void *item, u32 *memblock_item_idx) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dbtree.c97 node = mempool_alloc(head->mempool, gfp);
182 void btree_init_mempool(struct btree_head *head, mempool_t *mempool) argument
185 head->mempool = mempool;
192 head->mempool = mempool_create(0, btree_alloc, btree_free, NULL);
193 if (!head->mempool)
201 mempool_destroy(head->mempool);
202 head->mempool = NULL;
441 mempool_free(node, head->mempool);
476 mempool_free(new, head->mempool);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/message/i2o/
H A Dmemory.c259 * i2o_pool_alloc - Allocate an slab cache and mempool
260 * @mempool: pointer to struct i2o_pool to write data into.
266 * mempool which uses the slab cache for allocation and freeing.
283 pool->mempool = mempool_create_slab_pool(min_nr, pool->slab);
284 if (!pool->mempool)
301 * i2o_pool_free - Free slab cache and mempool again
302 * @mempool: pointer to struct i2o_pool which should be freed
304 * Note that you have to return all objects to the mempool again before
309 mempool_destroy(pool->mempool);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/mm/
H A DMakefile10 obj-y := bootmem.o filemap.o mempool.o oom_kill.o fadvise.o \
H A Dbounce.c12 #include <linux/mempool.h>
H A Dmempool.c2 * linux/mm/mempool.c
14 #include <linux/mempool.h>
314 * A simple mempool-backed page allocator that allocates pages
H A Dhighmem.c24 #include <linux/mempool.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/pohmelfs/
H A Dmcache.c18 #include <linux/mempool.h>
H A Dlock.c20 #include <linux/mempool.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/scsi/
H A Dzfcp_def.h21 #include <linux/mempool.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/fnic/
H A Dfnic.h144 struct mempool;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/infiniband/ulp/iser/
H A Discsi_iser.h54 #include <linux/mempool.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/
H A DMakefile111 dbus-marshal-basic.h dbus-memory.c dbus-mempool.c \
112 dbus-mempool.h dbus-pipe.c dbus-pipe.h dbus-string.c \
166 libdbus_1_la-dbus-mempool.lo libdbus_1_la-dbus-pipe.lo \
203 dbus-marshal-basic.h dbus-memory.c dbus-mempool.c \
204 dbus-mempool.h dbus-pipe.c dbus-pipe.h dbus-string.c \
280 libdbus_internal_la-dbus-mempool.lo \
738 dbus-mempool.c \
739 dbus-mempool.h \
939 include ./$(DEPDIR)/libdbus_1_la-dbus-mempool.Plo
1002 include ./$(DEPDIR)/libdbus_internal_la-dbus-mempool
[all...]
H A DMakefile.in111 dbus-marshal-basic.h dbus-memory.c dbus-mempool.c \
112 dbus-mempool.h dbus-pipe.c dbus-pipe.h dbus-string.c \
166 libdbus_1_la-dbus-mempool.lo libdbus_1_la-dbus-pipe.lo \
203 dbus-marshal-basic.h dbus-memory.c dbus-mempool.c \
204 dbus-mempool.h dbus-pipe.c dbus-pipe.h dbus-string.c \
280 libdbus_internal_la-dbus-mempool.lo \
740 dbus-mempool.c \
741 dbus-mempool.h \
941 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdbus_1_la-dbus-mempool.Plo@am__quote@
1004 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdbus_internal_la-dbus-mempool
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/solo6x10/
H A Dsolo6010-g723.c21 #include <linux/mempool.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/block/
H A Dblk-integrity.c24 #include <linux/mempool.h>

Completed in 124 milliseconds

123