Revision ac4dfccb96571ca03af7cac64b7a0b2952c97f3a authored by Yong Zhi on 15 September 2021, 06:32:30 UTC, committed by Mark Brown on 15 September 2021, 12:07:51 UTC
Fix @buf arg given to hex_dump_to_buffer() and stack address used
in dump error output.

Fixes: e657c18a01c8 ('ASoC: SOF: Add xtensa support')
Signed-off-by: Yong Zhi <yong.zhi@intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Daniel Baluta <daniel.baluta@gmail.com>
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
Link: https://lore.kernel.org/r/20210915063230.29711-1-peter.ujfalusi@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 7bd5d97
Raw File
Kconfig
# SPDX-License-Identifier: GPL-2.0-only
menuconfig BPFILTER
	bool "BPF based packet filtering framework (BPFILTER)"
	depends on BPF && INET
	select USERMODE_DRIVER
	help
	  This builds experimental bpfilter framework that is aiming to
	  provide netfilter compatible functionality via BPF

if BPFILTER
config BPFILTER_UMH
	tristate "bpfilter kernel module with user mode helper"
	depends on CC_CAN_LINK
	depends on m || CC_CAN_LINK_STATIC
	default m
	help
	  This builds bpfilter kernel module with embedded user mode helper

	  Note: To compile this as built-in, your toolchain must support
	  building static binaries, since rootfs isn't mounted at the time
	  when __init functions are called and do_execv won't be able to find
	  the elf interpreter.
endif
back to top