https://github.com/torvalds/linux
Revision 7c7fedd51c02f4418e8b2eed64bdab601f882aa4 authored by Tobias Brunner on 29 November 2016, 16:05:20 UTC, committed by Steffen Klassert on 30 November 2016, 10:09:39 UTC
When handling inbound packets, the two halves of the sequence number
stored on the skb are already in network order.

Fixes: 7021b2e1cddd ("esp4: Switch to new AEAD interface")
Signed-off-by: Tobias Brunner <tobias@strongswan.org>
Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
1 parent 83e2d05
Raw File
Tip revision: 7c7fedd51c02f4418e8b2eed64bdab601f882aa4 authored by Tobias Brunner on 29 November 2016, 16:05:20 UTC
esp4: Fix integrity verification when ESN are used
Tip revision: 7c7fedd
Makefile
# Makefile for the Linux sound card driver
#

obj-$(CONFIG_SOUND) += soundcore.o
obj-$(CONFIG_SOUND_PRIME) += oss/
obj-$(CONFIG_DMASOUND) += oss/
obj-$(CONFIG_SND) += core/ i2c/ drivers/ isa/ pci/ ppc/ arm/ sh/ synth/ usb/ \
	firewire/ sparc/ spi/ parisc/ pcmcia/ mips/ soc/ atmel/ hda/
obj-$(CONFIG_SND_AOA) += aoa/

# This one must be compilable even if sound is configured out
obj-$(CONFIG_AC97_BUS) += ac97_bus.o

ifeq ($(CONFIG_SND),y)
  obj-y += last.o
endif

soundcore-objs  := sound_core.o
back to top