Re: [PATCH] Add a gfp-translate script to help understand page allocation failure reports

From: Minchan Kim
Date: Mon Jun 08 2009 - 10:30:53 EST


Hi, Mel.

How about handling it in kernel itself ?

I mean we can print human-readable pretty format instead of
non-understandable hex value. It can help us without knowing other's
people's machine configuration.

BTW, It would be better than now by your script.
Thanks for sharing good tip. :)

On Mon, Jun 8, 2009 at 10:29 PM, Mel Gorman<mel@xxxxxxxxx> wrote:
> The page allocation failure messages include a line that looks like
>
> page allocation failure. order:1, mode:0x4020
>
> The mode is easy to translate but irritating for the lazy and a bit error
> prone. This patch adds a very simple helper script gfp-translate for the mode:
> portion of the page allocation failure messages. An example usage looks like
>
> Âmel@machina:~/linux-2.6 $ scripts/gfp-translate 0x4020
> ÂSource: /home/mel/linux-2.6
> ÂParsing: 0x4020
> Â#define __GFP_HIGH Â Â(0x20) Â/* Should access emergency pools? */
> Â#define __GFP_COMP Â Â(0x4000) /* Add compound page metadata */
>
> The script is not a work of art but it has come in handy for me a few times
> so I thought I would share.
>
> Signed-off-by: Mel Gorman <mel@xxxxxxxxx>
> ---
> Âscripts/gfp-translate | Â 81 ++++++++++++++++++++++++++++++++++++++++++++++++++
> Â1 file changed, 81 insertions(+)
>
> diff --git a/scripts/gfp-translate b/scripts/gfp-translate
> new file mode 100755
> index 0000000..724db2d
> --- /dev/null
> +++ b/scripts/gfp-translate
> @@ -0,0 +1,81 @@
> +#!/bin/bash
> +# Translate the bits making up a GFP mask
> +# (c) 2009, Mel Gorman <mel@xxxxxxxxx>
> +# Licensed under the terms of the GNU GPL License version 2
> +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
> +}
> +
> +# Parse command-line arguements
> +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 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
> +TMPFILE=`mktemp -t gfptranslate-XXXXXX` || exit 1
> +grep "^#define __GFP" $SOURCE/include/linux/gfp.h | sed -e 's/(__force gfp_t)//' | sed -e 's/u)/)/' | grep -v GFP_BITS | sed -e 's/)\//) \//' > $TMPFILE
> +
> +# Parse the flags
> +IFS="
> +"
> +echo Source: $SOURCE
> +echo Parsing: $GFPMASK
> +for LINE in `cat $TMPFILE`; do
> + Â Â Â MASK=`echo $LINE | awk '{print $3}'`
> + Â Â Â if [ $(($GFPMASK&$MASK)) -ne 0 ]; then
> + Â Â Â Â Â Â Â echo $LINE
> + Â Â Â fi
> +done
> +
> +rm -f $TMPFILE
> +exit 0
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at Âhttp://vger.kernel.org/majordomo-info.html
> Please read the FAQ at Âhttp://www.tux.org/lkml/
>


--
Kinds regards,
Minchan Kim
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/