2009-06-17 06:33:04 +08:00
|
|
|
#!/bin/bash
|
2019-05-27 14:55:14 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2009-06-17 06:33:04 +08:00
|
|
|
# Translate the bits making up a GFP mask
|
|
|
|
# (c) 2009, Mel Gorman <mel@csn.ul.ie>
|
|
|
|
SOURCE=
|
|
|
|
GFPMASK=none
|
|
|
|
|
|
|
|
# Helper function to report failures and exit
|
|
|
|
die() {
|
|
|
|
echo ERROR: $@
|
|
|
|
if [ "$TMPFILE" != "" ]; then
|
|
|
|
rm -f $TMPFILE
|
|
|
|
fi
|
|
|
|
exit -1
|
|
|
|
}
|
|
|
|
|
|
|
|
usage() {
|
|
|
|
echo "usage: gfp-translate [-h] [ --source DIRECTORY ] gfpmask"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
tree-wide: Assorted spelling fixes
In particular, several occurances of funny versions of 'success',
'unknown', 'therefore', 'acknowledge', 'argument', 'achieve', 'address',
'beginning', 'desirable', 'separate' and 'necessary' are fixed.
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Cc: Joe Perches <joe@perches.com>
Cc: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2010-02-03 08:01:28 +08:00
|
|
|
# Parse command-line arguments
|
2009-06-17 06:33:04 +08:00
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case $1 in
|
|
|
|
--source)
|
|
|
|
SOURCE=$2
|
|
|
|
shift 2
|
|
|
|
;;
|
|
|
|
-h)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
--help)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
GFPMASK=$1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
# Guess the kernel source directory if it's not set. Preference is in order of
|
|
|
|
# o current directory
|
|
|
|
# o /usr/src/linux
|
|
|
|
if [ "$SOURCE" = "" ]; then
|
|
|
|
if [ -r "/usr/src/linux/Makefile" ]; then
|
|
|
|
SOURCE=/usr/src/linux
|
|
|
|
fi
|
|
|
|
if [ -r "`pwd`/Makefile" ]; then
|
|
|
|
SOURCE=`pwd`
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Confirm that a source directory exists
|
|
|
|
if [ ! -r "$SOURCE/Makefile" ]; then
|
|
|
|
die "Could not locate kernel source directory or it is invalid"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Confirm that a GFP mask has been specified
|
|
|
|
if [ "$GFPMASK" = "none" ]; then
|
|
|
|
usage
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Extract GFP flags from the kernel source
|
2024-08-24 00:38:50 +08:00
|
|
|
TMPFILE=`mktemp -t gfptranslate-XXXXXX.c` || exit 1
|
2009-06-17 06:33:04 +08:00
|
|
|
|
|
|
|
echo Source: $SOURCE
|
|
|
|
echo Parsing: $GFPMASK
|
|
|
|
|
2024-08-24 00:38:50 +08:00
|
|
|
(
|
|
|
|
cat <<EOF
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
// Try to fool compiler.h into not including extra stuff
|
|
|
|
#define __ASSEMBLY__ 1
|
|
|
|
|
|
|
|
#include <generated/autoconf.h>
|
|
|
|
#include <linux/gfp_types.h>
|
|
|
|
|
|
|
|
static const char *masks[] = {
|
|
|
|
EOF
|
|
|
|
|
|
|
|
sed -nEe 's/^[[:space:]]+(___GFP_.*)_BIT,.*$/\1/p' $SOURCE/include/linux/gfp_types.h |
|
|
|
|
while read b; do
|
|
|
|
cat <<EOF
|
|
|
|
#if defined($b) && ($b > 0)
|
|
|
|
[${b}_BIT] = "$b",
|
|
|
|
#endif
|
|
|
|
EOF
|
|
|
|
done
|
|
|
|
|
|
|
|
cat <<EOF
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
unsigned long long mask = $GFPMASK;
|
|
|
|
|
|
|
|
for (int i = 0; i < sizeof(mask) * 8; i++) {
|
|
|
|
unsigned long long bit = 1ULL << i;
|
|
|
|
if (mask & bit)
|
|
|
|
printf("\t%-25s0x%llx\n",
|
|
|
|
(i < ___GFP_LAST_BIT && masks[i]) ?
|
|
|
|
masks[i] : "*** INVALID ***",
|
|
|
|
bit);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
) > $TMPFILE
|
|
|
|
|
|
|
|
${CC:-gcc} -Wall -o ${TMPFILE}.bin -I $SOURCE/include $TMPFILE && ${TMPFILE}.bin
|
|
|
|
|
|
|
|
rm -f $TMPFILE ${TMPFILE}.bin
|
|
|
|
|
2009-06-17 06:33:04 +08:00
|
|
|
exit 0
|