2 # SPDX-License-Identifier: GPL-2.0-only
3 # Translate the bits making up a GFP mask
4 # (c) 2009, Mel Gorman <mel@csn.ul.ie>
8 # Helper function to report failures and exit
11 if [ "$TMPFILE" != "" ]; then
18 echo "usage: gfp-translate [-h] [ --source DIRECTORY ] gfpmask"
22 # Parse command-line arguments
23 while [ $# -gt 0 ]; do
42 # Guess the kernel source directory if it's not set. Preference is in order of
45 if [ "$SOURCE" = "" ]; then
46 if [ -r "/usr/src/linux/Makefile" ]; then
49 if [ -r "`pwd`/Makefile" ]; then
54 # Confirm that a source directory exists
55 if [ ! -r "$SOURCE/Makefile" ]; then
56 die
"Could not locate kernel source directory or it is invalid"
59 # Confirm that a GFP mask has been specified
60 if [ "$GFPMASK" = "none" ]; then
64 # Extract GFP flags from the kernel source
65 TMPFILE
=`mktemp -t gfptranslate-XXXXXX.c` ||
exit 1
68 echo Parsing
: $GFPMASK
75 // Try to fool compiler.h into not including extra stuff
76 #define __ASSEMBLY__ 1
78 #include <generated/autoconf.h>
79 #include <linux/gfp_types.h>
81 static const char *masks[] = {
84 sed -nEe 's/^[[:space:]]+(___GFP_.*)_BIT,.*$/\1/p' $SOURCE/include
/linux
/gfp_types.h |
87 #if defined($b) && ($b > 0)
96 int main(int argc, char *argv[])
98 unsigned long long mask = $GFPMASK;
100 for (int i = 0; i < sizeof(mask) * 8; i++) {
101 unsigned long long bit = 1ULL << i;
103 printf("\t%-25s0x%llx\n",
104 (i < ___GFP_LAST_BIT && masks[i]) ?
105 masks[i] : "*** INVALID ***",
114 ${CC:-gcc} -Wall -o ${TMPFILE}.bin -I $SOURCE/include $TMPFILE && ${TMPFILE}.bin
116 rm -f $TMPFILE ${TMPFILE}.bin