Lines Matching refs:proto
17 proto_memory_pressure(const struct proto *prot) in proto_memory_pressure()
45 proto_memory_allocated(const struct proto *prot) in proto_memory_allocated()
56 static inline void proto_memory_pcpu_drain(struct proto *proto) in proto_memory_pcpu_drain() argument
58 int val = this_cpu_xchg(*proto->per_cpu_fw_alloc, 0); in proto_memory_pcpu_drain()
61 atomic_long_add(val, proto->memory_allocated); in proto_memory_pcpu_drain()
67 struct proto *proto = sk->sk_prot; in sk_memory_allocated_add() local
69 val = this_cpu_add_return(*proto->per_cpu_fw_alloc, val); in sk_memory_allocated_add()
72 proto_memory_pcpu_drain(proto); in sk_memory_allocated_add()
78 struct proto *proto = sk->sk_prot; in sk_memory_allocated_sub() local
80 val = this_cpu_sub_return(*proto->per_cpu_fw_alloc, val); in sk_memory_allocated_sub()
83 proto_memory_pcpu_drain(proto); in sk_memory_allocated_sub()