Revision 3aa20508a6fe386c2a893027ef4c4ef78ee4eac2 authored by Linus Torvalds on 16 July 2015, 01:38:24 UTC, committed by Linus Torvalds on 16 July 2015, 01:38:24 UTC
Pull TPM bugfixes from James Morris.

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security:
  tpm, tpm_crb: fail when TPM2 ACPI table contents look corrupted
  tpm: Fix initialization of the cdev
2 parent s 9090fdb + 91ef5cc
Raw File
xen-hypercalls.sh
#!/bin/sh
out="$1"
shift
in="$@"

for i in $in; do
	eval $CPP $LINUXINCLUDE -dD -imacros "$i" -x c /dev/null
done | \
awk '$1 == "#define" && $2 ~ /__HYPERVISOR_[a-z][a-z_0-9]*/ { v[$3] = $2 }
	END {   print "/* auto-generated by scripts/xen-hypercall.sh */"
		for (i in v) if (!(v[i] in v))
			print "HYPERCALL("substr(v[i], 14)")"}' | sort -u >$out
back to top