-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
xen: build infrastructure for generating hypercall depending symbols
Today there are several places in the kernel which build tables containing one entry for each possible Xen hypercall. Create an infrastructure to be able to generate these tables at build time. Based-on-patch-by: Jan Beulich <jbeulich@suse.com> Signed-off-by: Juergen Gross <jgross@suse.com> Reviewed-by: David Vrabel <david.vrabel@citrix.com> Acked-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: David Vrabel <david.vrabel@citrix.com>
- Loading branch information
Juergen Gross
authored and
David Vrabel
committed
Mar 16, 2015
1 parent
b6a473a
commit 9b4ade2
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/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 |