TARGETS = bpf TARGETS += breakpoints TARGETS += capabilities TARGETS += cpu-hotplug TARGETS += efivarfs TARGETS += exec TARGETS += firmware TARGETS += ftrace TARGETS += futex TARGETS += gpio TARGETS += ipc TARGETS += kcmp TARGETS += lib TARGETS += membarrier TARGETS += memfd TARGETS += memory-hotplug TARGETS += mount TARGETS += mqueue TARGETS += net TARGETS += nsfs TARGETS += powerpc TARGETS += pstore TARGETS += ptrace TARGETS += seccomp TARGETS += sigaltstack TARGETS += size TARGETS += static_keys TARGETS += sync TARGETS += sysctl ifneq (1, $(quicktest)) TARGETS += timers endif TARGETS += user TARGETS += vm TARGETS += x86 TARGETS += zram #Please keep the TARGETS list alphabetically sorted # Run "make quicktest=1 run_tests" or # "make quicktest=1 kselftest from top level Makefile TARGETS_HOTPLUG = cpu-hotplug TARGETS_HOTPLUG += memory-hotplug # Clear LDFLAGS and MAKEFLAGS if called from main # Makefile to avoid test build failures when test # Makefile doesn't have explicit build rules. ifeq (1,$(MAKELEVEL)) override LDFLAGS = override MAKEFLAGS = endif all: for TARGET in $(TARGETS); do \ make -C $$TARGET; \ done; run_tests: all for TARGET in $(TARGETS); do \ make -C $$TARGET run_tests; \ done; hotplug: for TARGET in $(TARGETS_HOTPLUG); do \ make -C $$TARGET; \ done; run_hotplug: hotplug for TARGET in $(TARGETS_HOTPLUG); do \ make -C $$TARGET run_full_test; \ done; clean_hotplug: for TARGET in $(TARGETS_HOTPLUG); do \ make -C $$TARGET clean; \ done; run_pstore_crash: make -C pstore run_crash INSTALL_PATH ?= install INSTALL_PATH := $(abspath $(INSTALL_PATH)) ALL_SCRIPT := $(INSTALL_PATH)/run_kselftest.sh install: ifdef INSTALL_PATH @# Ask all targets to install their files mkdir -p $(INSTALL_PATH) for TARGET in $(TARGETS); do \ make -C $$TARGET INSTALL_PATH=$(INSTALL_PATH)/$$TARGET install; \ done; @# Ask all targets to emit their test scripts echo "#!/bin/sh" > $(ALL_SCRIPT) echo "cd \$$(dirname \$$0)" >> $(ALL_SCRIPT) echo "ROOT=\$$PWD" >> $(ALL_SCRIPT) for TARGET in $(TARGETS); do \ echo "echo ; echo Running tests in $$TARGET" >> $(ALL_SCRIPT); \ echo "echo ========================================" >> $(ALL_SCRIPT); \ echo "cd $$TARGET" >> $(ALL_SCRIPT); \ make -s --no-print-directory -C $$TARGET emit_tests >> $(ALL_SCRIPT); \ echo "cd \$$ROOT" >> $(ALL_SCRIPT); \ done; chmod u+x $(ALL_SCRIPT) else $(error Error: set INSTALL_PATH to use install) endif clean: for TARGET in $(TARGETS); do \ make -C $$TARGET clean; \ done; .PHONY: install ec2434d8fb46'/>
path: root/include/dt-bindings/gpio
diff options
context:
space:
mode:
authorHarsh Jain <harsh@chelsio.com>2017-02-01 21:10:28 +0530
committerHerbert Xu <herbert@gondor.apana.org.au>2017-02-03 17:45:48 +0800
commit0b529f143e8baad441a5aac9ad55ec2434d8fb46 (patch)
treefd816e548e12745d4776ad0bd661bec142d3ea06 /include/dt-bindings/gpio
parentc26819900036f5b91608051a0fc7c76f6b4ffc7b (diff)
crypto: algif_aead - Fix kernel panic on list_del
Kernel panics when userspace program try to access AEAD interface. Remove node from Linked List before freeing its memory. Cc: <stable@vger.kernel.org> Signed-off-by: Harsh Jain <harsh@chelsio.com> Reviewed-by: Stephan Müller <smueller@chronox.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/dt-bindings/gpio')