summaryrefslogtreecommitdiff
path: root/include/net/hwbm.h
blob: 47d08662501b7225bca6c17e4738ef0fa21f2264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef _HWBM_H
#define _HWBM_H

struct hwbm_pool {
	/* Capacity of the pool */
	int size;
	/* Size of the buffers managed */
	int frag_size;
	/* Number of buffers currently used by this pool */
	int buf_num;
	/* constructor called during alocation */
	int (*construct)(struct hwbm_pool *bm_pool, void *buf);
	/* protect acces to the buffer counter*/
	spinlock_t lock;
	/* private data */
	void *priv;
};
#ifdef CONFIG_HWBM
void hwbm_buf_free(struct hwbm_pool *bm_pool, void *buf);
int hwbm_pool_refill(struct hwbm_pool *bm_pool, gfp_t gfp);
int hwbm_pool_add(struct hwbm_pool *bm_pool, unsigned int buf_num, gfp_t gfp);
#else
void hwbm_buf_free(struct hwbm_pool *bm_pool, void *buf) {}
int hwbm_pool_refill(struct hwbm_pool *bm_pool, gfp_t gfp) { return 0; }
int hwbm_pool_add(struct hwbm_pool *bm_pool, unsigned int buf_num, gfp_t gfp)
{ return 0; }
#endif /* CONFIG_HWBM */
#endif /* _HWBM_H */
rivate-remove&id=6d5496483f5eb7b4da2e83c7b2149a21ad412d96'>switchdev: bridge: Offload mc router portsNogah Frankel1-0/+2 2017-02-10switchdev: bridge: Offload multicast disabledNogah Frankel1-0/+2 2017-02-10sched: move tcf_proto_destroy and tcf_destroy_chain helpers into cls_apiJiri Pirko2-2/+2 2017-02-10sched: rename tcf_destroy to tcf_destroy_protoJiri Pirko1-1/+1 2017-02-10ipv4: fib: Add events for FIB replace and appendIdo Schimmel1-1/+2 2017-02-09openvswitch: Add force commit.Jarno Rajahalme1-0/+5 2017-02-09openvswitch: Add original direction conntrack tuple to sw_flow_key.Jarno Rajahalme1-1/+19 2017-02-09openvswitch: Unionize ovs_key_ct_label with a u32 array.Jarno Rajahalme1-2/+6 2017-02-09sctp: implement sender-side procedures for Add Incoming/Outgoing Streams Requ...Xin Long2-0/+9 2017-02-09sctp: add support for generating stream reconf add incoming/outgoing streams ...Xin Long2-0/+10 2017-02-09sctp: implement sender-side procedures for SSN/TSN Reset Request ParameterXin Long2-0/+2 2017-02-09sctp: add support for generating stream reconf ssn/tsn reset request chunkXin Long2-0/+7 2017-02-09sctp: drop unnecessary __packed from some stream reconf structuresXin Long1-3/+3 2017-02-09cfg80211: fix NAN bands definitionLuca Coelho2-36/+39 2017-02-08ipv4: fib: Notify about nexthop status changesIdo Schimmel1-0/+7 2017-02-08net: stmmac: Remove the bus_setup function pointerLABBE Corentin1-1/+0 2017-02-08gro_cells: move to net/core/gro_cells.cEric Dumazet1-82/+4 2017-02-08net: phy: Add LED mode driver for Microsemi PHYs.Raju Lakkaraju