~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/scripts/gfp-translate

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /scripts/gfp-translate (Version linux-6.12-rc7) and /scripts/gfp-translate (Version linux-4.15.18)


  1 #!/bin/bash                                         1 #!/bin/bash
  2 # SPDX-License-Identifier: GPL-2.0-only        << 
  3 # Translate the bits making up a GFP mask           2 # Translate the bits making up a GFP mask
  4 # (c) 2009, Mel Gorman <mel@csn.ul.ie>               3 # (c) 2009, Mel Gorman <mel@csn.ul.ie>
                                                   >>   4 # Licensed under the terms of the GNU GPL License version 2
  5 SOURCE=                                             5 SOURCE=
  6 GFPMASK=none                                        6 GFPMASK=none
  7                                                     7 
  8 # Helper function to report failures and exit       8 # Helper function to report failures and exit
  9 die() {                                             9 die() {
 10         echo ERROR: $@                             10         echo ERROR: $@
 11         if [ "$TMPFILE" != "" ]; then              11         if [ "$TMPFILE" != "" ]; then
 12                 rm -f $TMPFILE                     12                 rm -f $TMPFILE
 13         fi                                         13         fi
 14         exit -1                                    14         exit -1
 15 }                                                  15 }
 16                                                    16 
 17 usage() {                                          17 usage() {
 18         echo "usage: gfp-translate [-h] [ --so     18         echo "usage: gfp-translate [-h] [ --source DIRECTORY ] gfpmask"
 19         exit 0                                     19         exit 0
 20 }                                                  20 }
 21                                                    21 
 22 # Parse command-line arguments                     22 # Parse command-line arguments
 23 while [ $# -gt 0 ]; do                             23 while [ $# -gt 0 ]; do
 24         case $1 in                                 24         case $1 in
 25                 --source)                          25                 --source)
 26                         SOURCE=$2                  26                         SOURCE=$2
 27                         shift 2                    27                         shift 2
 28                         ;;                         28                         ;;
 29                 -h)                                29                 -h)
 30                         usage                      30                         usage
 31                         ;;                         31                         ;;
 32                 --help)                            32                 --help)
 33                         usage                      33                         usage
 34                         ;;                         34                         ;;
 35                 *)                                 35                 *)
 36                         GFPMASK=$1                 36                         GFPMASK=$1
 37                         shift                      37                         shift
 38                         ;;                         38                         ;;
 39         esac                                       39         esac
 40 done                                               40 done
 41                                                    41 
 42 # Guess the kernel source directory if it's no     42 # Guess the kernel source directory if it's not set. Preference is in order of
 43 # o current directory                              43 # o current directory
 44 # o /usr/src/linux                                 44 # o /usr/src/linux
 45 if [ "$SOURCE" = "" ]; then                        45 if [ "$SOURCE" = "" ]; then
 46         if [ -r "/usr/src/linux/Makefile" ]; t     46         if [ -r "/usr/src/linux/Makefile" ]; then
 47                 SOURCE=/usr/src/linux              47                 SOURCE=/usr/src/linux
 48         fi                                         48         fi
 49         if [ -r "`pwd`/Makefile" ]; then           49         if [ -r "`pwd`/Makefile" ]; then
 50                 SOURCE=`pwd`                       50                 SOURCE=`pwd`
 51         fi                                         51         fi
 52 fi                                                 52 fi
 53                                                    53 
 54 # Confirm that a source directory exists           54 # Confirm that a source directory exists
 55 if [ ! -r "$SOURCE/Makefile" ]; then               55 if [ ! -r "$SOURCE/Makefile" ]; then
 56         die "Could not locate kernel source di     56         die "Could not locate kernel source directory or it is invalid"
 57 fi                                                 57 fi
 58                                                    58 
 59 # Confirm that a GFP mask has been specified       59 # Confirm that a GFP mask has been specified
 60 if [ "$GFPMASK" = "none" ]; then                   60 if [ "$GFPMASK" = "none" ]; then
 61         usage                                      61         usage
 62 fi                                                 62 fi
 63                                                    63 
 64 # Extract GFP flags from the kernel source         64 # Extract GFP flags from the kernel source
 65 TMPFILE=`mktemp -t gfptranslate-XXXXXX.c` || e !!  65 TMPFILE=`mktemp -t gfptranslate-XXXXXX` || exit 1
                                                   >>  66 grep -q ___GFP $SOURCE/include/linux/gfp.h
                                                   >>  67 if [ $? -eq 0 ]; then
                                                   >>  68         grep "^#define ___GFP" $SOURCE/include/linux/gfp.h | sed -e 's/u$//' | grep -v GFP_BITS > $TMPFILE
                                                   >>  69 else
                                                   >>  70         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
                                                   >>  71 fi
 66                                                    72 
                                                   >>  73 # Parse the flags
                                                   >>  74 IFS="
                                                   >>  75 "
 67 echo Source: $SOURCE                               76 echo Source: $SOURCE
 68 echo Parsing: $GFPMASK                             77 echo Parsing: $GFPMASK
                                                   >>  78 for LINE in `cat $TMPFILE`; do
                                                   >>  79         MASK=`echo $LINE | awk '{print $3}'`
                                                   >>  80         if [ $(($GFPMASK&$MASK)) -ne 0 ]; then
                                                   >>  81                 echo $LINE
                                                   >>  82         fi
                                                   >>  83 done
 69                                                    84 
 70 (                                              !!  85 rm -f $TMPFILE
 71     cat <<EOF                                  << 
 72 #include <stdint.h>                            << 
 73 #include <stdio.h>                             << 
 74                                                << 
 75 // Try to fool compiler.h into not including e << 
 76 #define __ASSEMBLY__    1                      << 
 77                                                << 
 78 #include <generated/autoconf.h>                << 
 79 #include <linux/gfp_types.h>                   << 
 80                                                << 
 81 static const char *masks[] = {                 << 
 82 EOF                                            << 
 83                                                << 
 84     sed -nEe 's/^[[:space:]]+(___GFP_.*)_BIT,. << 
 85         while read b; do                       << 
 86             cat <<EOF                          << 
 87 #if defined($b) && ($b > 0)                    << 
 88         [${b}_BIT]      = "$b",                << 
 89 #endif                                         << 
 90 EOF                                            << 
 91         done                                   << 
 92                                                << 
 93     cat <<EOF                                  << 
 94 };                                             << 
 95                                                << 
 96 int main(int argc, char *argv[])               << 
 97 {                                              << 
 98         unsigned long long mask = $GFPMASK;    << 
 99                                                << 
100         for (int i = 0; i < sizeof(mask) * 8;  << 
101                 unsigned long long bit = 1ULL  << 
102                 if (mask & bit)                << 
103                         printf("\t%-25s0x%llx\ << 
104                                (i < ___GFP_LAS << 
105                                         masks[ << 
106                                bit);           << 
107         }                                      << 
108                                                << 
109         return 0;                              << 
110 }                                              << 
111 EOF                                            << 
112 ) > $TMPFILE                                   << 
113                                                << 
114 ${CC:-gcc} -Wall -o ${TMPFILE}.bin -I $SOURCE/ << 
115                                                << 
116 rm -f $TMPFILE ${TMPFILE}.bin                  << 
117                                                << 
118 exit 0                                             86 exit 0
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php