]> git.ipfire.org Git - thirdparty/linux.git/blame - scripts/xen-hypercalls.sh
mm: remove both instances of __vmalloc_node_flags
[thirdparty/linux.git] / scripts / xen-hypercalls.sh
CommitLineData
9b4ade22 1#!/bin/sh
b2441318 2# SPDX-License-Identifier: GPL-2.0
9b4ade22
JG
3out="$1"
4shift
5in="$@"
6
7for i in $in; do
8 eval $CPP $LINUXINCLUDE -dD -imacros "$i" -x c /dev/null
9done | \
10awk '$1 == "#define" && $2 ~ /__HYPERVISOR_[a-z][a-z_0-9]*/ { v[$3] = $2 }
11 END { print "/* auto-generated by scripts/xen-hypercall.sh */"
12 for (i in v) if (!(v[i] in v))
13 print "HYPERCALL("substr(v[i], 14)")"}' | sort -u >$out