summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2016-12-16 16:27:43 +0100
committerTobias Klauser <tklauser@distanz.ch>2016-12-16 16:30:02 +0100
commit1d126c480176c337d1593c4978eee8d12f914442 (patch)
tree6a221bbd2693cc176dcc1d36a472fb949987d616 /arch
parent73e2e0c9b13c97df1c8565f6e158caac3c481b44 (diff)
net: packet: Introduce PACKET_RX_PUMP_BACK socket optionpacket-rx-pump-back
The PACKET_RX_PUMP_BACK socket options allows to immediately pump packets sent through PF_PACKET back into the network stack via dev_forward_skb() instead of submitting them to the device driver using deve_queue_xmit(). This feature might be useful to load the network stack with a lot of packets, similar to pktgen. Enable the setting using: int one = 1; setsockopt(fd, SOL_PACKET, PACKET_RX_PUMP_BACK, &one, sizeof(one)); By default, PACKET_RX_PUMP_BACK is disabled and needs to be explicitly enabled on PF_PACKET sockets. Suggested-by: Daniel Borkmann <daniel@iogearbox.net> Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'arch')
0 files changed, 0 insertions, 0 deletions
df84b6b4e5d599c7289526eed96541a0654&id2=877a021e08ccb6434718c0cc781fdf943c884cc0'>diff)
HID: cp2112: fix sleep-while-atomic
A recent commit fixing DMA-buffers on stack added a shared transfer buffer protected by a spinlock. This is broken as the USB HID request callbacks can sleep. Fix this up by replacing the spinlock with a mutex. Fixes: 1ffb3c40ffb5 ("HID: cp2112: make transfer buffers DMA capable") Cc: stable <stable@vger.kernel.org> # 4.9 Signed-off-by: Johan Hovold <johan@kernel.org> Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'tools/testing/selftests/powerpc/copyloops/copyuser_power7.S')