Home
last modified time | relevance | path

Searched refs:hwbm_pool (Results 1 – 5 of 5) sorted by relevance

/linux-6.1.9/include/net/
Dhwbm.h7 struct hwbm_pool { struct
15 int (*construct)(struct hwbm_pool *bm_pool, void *buf); argument
22 void hwbm_buf_free(struct hwbm_pool *bm_pool, void *buf); argument
23 int hwbm_pool_refill(struct hwbm_pool *bm_pool, gfp_t gfp);
24 int hwbm_pool_add(struct hwbm_pool *bm_pool, unsigned int buf_num);
26 static inline void hwbm_buf_free(struct hwbm_pool *bm_pool, void *buf) {} in hwbm_buf_free()
28 static inline int hwbm_pool_refill(struct hwbm_pool *bm_pool, gfp_t gfp) in hwbm_pool_refill()
31 static inline int hwbm_pool_add(struct hwbm_pool *bm_pool, in hwbm_pool_add()
/linux-6.1.9/drivers/net/ethernet/marvell/
Dmvneta_bm.c93 int mvneta_bm_construct(struct hwbm_pool *hwbm_pool, void *buf) in mvneta_bm_construct() argument
96 (struct mvneta_bm_pool *)hwbm_pool->priv; in mvneta_bm_construct()
122 size_bytes = sizeof(u32) * bm_pool->hwbm_pool.size; in mvneta_bm_pool_create()
183 struct hwbm_pool *hwbm_pool = &new_pool->hwbm_pool; in mvneta_bm_pool_use() local
188 hwbm_pool->frag_size = in mvneta_bm_pool_use()
191 hwbm_pool->construct = mvneta_bm_construct; in mvneta_bm_pool_use()
192 hwbm_pool->priv = new_pool; in mvneta_bm_pool_use()
193 mutex_init(&hwbm_pool->buf_lock); in mvneta_bm_pool_use()
204 num = hwbm_pool_add(hwbm_pool, hwbm_pool->size); in mvneta_bm_pool_use()
205 if (num != hwbm_pool->size) { in mvneta_bm_pool_use()
[all …]
Dmvneta_bm.h111 struct hwbm_pool hwbm_pool; member
141 int mvneta_bm_construct(struct hwbm_pool *hwbm_pool, void *buf);
169 static inline int mvneta_bm_construct(struct hwbm_pool *hwbm_pool, void *buf) in mvneta_bm_construct() argument
Dmvneta.c1208 struct hwbm_pool *hwbm_pool = &bm_pool->hwbm_pool; in mvneta_bm_update_mtu() local
1213 if (hwbm_pool->buf_num) { in mvneta_bm_update_mtu()
1221 hwbm_pool->frag_size = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) + in mvneta_bm_update_mtu()
1225 num = hwbm_pool_add(hwbm_pool, hwbm_pool->size); in mvneta_bm_update_mtu()
1226 if (num != hwbm_pool->size) { in mvneta_bm_update_mtu()
1228 bm_pool->id, num, hwbm_pool->size); in mvneta_bm_update_mtu()
2610 err = hwbm_pool_refill(&bm_pool->hwbm_pool, GFP_ATOMIC); in mvneta_rx_hwbm()
2624 frag_size = bm_pool->hwbm_pool.frag_size; in mvneta_rx_hwbm()
/linux-6.1.9/net/core/
Dhwbm.c13 void hwbm_buf_free(struct hwbm_pool *bm_pool, void *buf) in hwbm_buf_free()
23 int hwbm_pool_refill(struct hwbm_pool *bm_pool, gfp_t gfp) in hwbm_pool_refill()
46 int hwbm_pool_add(struct hwbm_pool *bm_pool, unsigned int buf_num) in hwbm_pool_add()