diff options
author | Willem de Bruijn <willemb@google.com> | 2017-08-03 16:29:37 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-03 21:37:29 -0700 |
commit | 98ba0bd5505dcbb90322a4be07bcfe6b8a18c73f (patch) | |
tree | e9c2bbb059a118f41a5acf90e2a349ab704d8863 /include/net/sock.h | |
parent | 84b7187ca2338832e3af58eb5123c02bb6921e4e (diff) | |
download | blackbird-op-linux-98ba0bd5505dcbb90322a4be07bcfe6b8a18c73f.tar.gz blackbird-op-linux-98ba0bd5505dcbb90322a4be07bcfe6b8a18c73f.zip |
sock: allocate skbs from optmem
Add sock_omalloc and sock_ofree to be able to allocate control skbs,
for instance for looping errors onto sk_error_queue.
The transmit budget (sk_wmem_alloc) is involved in transmit skb
shaping, most notably in TCP Small Queues. Using this budget for
control packets would impact transmission.
Signed-off-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sock.h')
-rw-r--r-- | include/net/sock.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/sock.h b/include/net/sock.h index 393c38e9f6aa..0f778d3c4300 100644 --- a/include/net/sock.h +++ b/include/net/sock.h @@ -1531,6 +1531,8 @@ struct sk_buff *sock_wmalloc(struct sock *sk, unsigned long size, int force, gfp_t priority); void __sock_wfree(struct sk_buff *skb); void sock_wfree(struct sk_buff *skb); +struct sk_buff *sock_omalloc(struct sock *sk, unsigned long size, + gfp_t priority); void skb_orphan_partial(struct sk_buff *skb); void sock_rfree(struct sk_buff *skb); void sock_efree(struct sk_buff *skb); |