Maintainer: * Daniel Borkmann * Tobias Klauser Major contributors (> 30 commits): * Daniel Borkmann * Emmanuel Roullit * Markus Amend * Tobias Klauser * Christoph Jaeger * Herbert Haas * Minor contributors (<= 30 commits): * Stephen Wadeley * Hideo Hattori * Peter Stuge * Scott Moeller * Jesper Dangaard Brouer * Jaroslav Škarvada * Dennis Gilmore * Dan Horák * Doug Burks * Kartik Mistry * Ulrich Weber * Teguh * Markus Kötter * Jim Binder * Ronald W. Henderson * Stefan Seering * Jon Schipp * Sibir Chakraborty Notes: The order of authors with > 30 commits listed here is sorted by contributions from high to low through ``git log --no-merges $@ | grep Author: | \ cut -d: -f2 | cut -d\< -f1 | sort | uniq -c | sort -n -r''. The list of minor contributors is currently unsorted and contains people who have contributed code ``in some way'' (e.g. on the upstream or maintenance repositories), either through Git or email. Note that we have taken over the maintenance and further development of Herbert Haas' mausezahn [ˈmauzəˌtsa:n] utility after he passed away in 2011. There were no Git commit statistics available from the import of his project. The project is currently in a staging area, but will be fully integrated soon. (*) Want to join the core team? Submit enough great patches over a long time, implement what's on the TODO file and show an ongoing, active interest in supporting netsniff-ng. What's in it for you? If you ever come to Switzerland, you get a free beer on Daniel and you can meet some great people involved in this project. ;)
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2017-02-01 18:13:23 -0800
committerDavid S. Miller <davem@davemloft.net>2017-02-02 23:03:05 -0500
commitb9ea2a7be758f2c07a0c044645edc409a8a388fd (patch)
treedf87e4aeef3b72752d470fe67a5127e26b1b4838
parentbdcfa156039dcfe2be989b73c4ae1be3d5d0f804 (diff)
net: remove useless pfmemalloc setting
When __alloc_skb() allocates an skb from fast clone cache, setting pfmemalloc on the clone is not needed. Clone will be properly initialized later at skb_clone() time, including pfmemalloc field, as it is included in the headers_start/headers_end section which is fully copied. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/core/skbuff.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c