]> git.baikalelectronics.ru Git - kernel.git/commit
net: change big iov allocations
authorEric Dumazet <edumazet@google.com>
Fri, 20 Apr 2012 18:04:01 +0000 (20:04 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sat, 21 Apr 2012 20:24:20 +0000 (16:24 -0400)
commitbd146e9acf84e5dc725e7b71c07a1ef7d8e7760d
treeeda84fcc25b12194b82c14786380121dbf86ec00
parent113136c2cce8d7cec78258f8f636ac8c0e1795a0
net: change big iov allocations

iov of more than 8 entries are allocated in sendmsg()/recvmsg() through
sock_kmalloc()

As these allocations are temporary only and small enough, it makes sense
to use plain kmalloc() and avoid sk_omem_alloc atomic overhead.

Slightly changed fast path to be even faster.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Mike Waychison <mikew@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/socket.c