drivers: align PCI driver definitions
[dpdk.git] / scripts / checkpatches.sh
1 #! /bin/sh
2
3 # BSD LICENSE
4 #
5 # Copyright 2015 6WIND S.A.
6 #
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
9 # are met:
10 #
11 #   * Redistributions of source code must retain the above copyright
12 #     notice, this list of conditions and the following disclaimer.
13 #   * Redistributions in binary form must reproduce the above copyright
14 #     notice, this list of conditions and the following disclaimer in
15 #     the documentation and/or other materials provided with the
16 #     distribution.
17 #   * Neither the name of 6WIND S.A. nor the names of its
18 #     contributors may be used to endorse or promote products derived
19 #     from this software without specific prior written permission.
20 #
21 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
33 # Load config options:
34 # - DPDK_CHECKPATCH_PATH
35 # - DPDK_CHECKPATCH_LINE_LENGTH
36 . $(dirname $(readlink -e $0))/load-devel-config
37
38 length=${DPDK_CHECKPATCH_LINE_LENGTH:-80}
39
40 # override default Linux options
41 options="--no-tree"
42 options="$options --max-line-length=$length"
43 options="$options --show-types"
44 options="$options --ignore=LINUX_VERSION_CODE,FILE_PATH_CHANGES,\
45 VOLATILE,PREFER_PACKED,PREFER_ALIGNED,PREFER_PRINTF,PREFER_KERNEL_TYPES,BIT_MACRO,\
46 SPLIT_STRING,LINE_SPACING,PARENTHESIS_ALIGNMENT,NETWORKING_BLOCK_COMMENT_STYLE,\
47 NEW_TYPEDEFS,COMPARISON_TO_NULL"
48
49 print_usage () {
50         cat <<- END_OF_HELP
51         usage: $(basename $0) [-q] [-v] [-nX|patch1 [patch2] ...]]
52
53         Run Linux kernel checkpatch.pl with DPDK options.
54         The environment variable DPDK_CHECKPATCH_PATH must be set.
55
56         The patches to check can be from files specified on the command line,
57         or latest git commits limited with -n option (default limit: origin/master).
58         END_OF_HELP
59 }
60
61 number=0
62 quiet=false
63 verbose=false
64 while getopts hn:qv ARG ; do
65         case $ARG in
66                 n ) number=$OPTARG ;;
67                 q ) quiet=true && options="$options --no-summary" ;;
68                 v ) verbose=true ;;
69                 h ) print_usage ; exit 0 ;;
70                 ? ) print_usage ; exit 1 ;;
71         esac
72 done
73 shift $(($OPTIND - 1))
74
75 if [ ! -x "$DPDK_CHECKPATCH_PATH" ] ; then
76         print_usage >&2
77         echo
78         echo 'Cannot execute DPDK_CHECKPATCH_PATH' >&2
79         exit 1
80 fi
81
82 total=0
83 status=0
84
85 check () { # <patch> <commit> <title>
86         total=$(($total + 1))
87         ! $verbose || printf '\n### %s\n\n' "$3"
88         if [ -n "$1" ] ; then
89                 report=$($DPDK_CHECKPATCH_PATH $options "$1" 2>/dev/null)
90         elif [ -n "$2" ] ; then
91                 report=$(git format-patch --no-stat --stdout -1 $commit |
92                         $DPDK_CHECKPATCH_PATH $options - 2>/dev/null)
93         fi
94         [ $? -ne 0 ] || continue
95         $verbose || printf '\n### %s\n\n' "$3"
96         printf '%s\n' "$report" | sed -n '1,/^total:.*lines checked$/p'
97         status=$(($status + 1))
98 }
99
100 if [ -z "$1" ] ; then
101         if [ $number -eq 0 ] ; then
102                 commits=$(git rev-list --reverse origin/master..)
103         else
104                 commits=$(git rev-list --reverse --max-count=$number HEAD)
105         fi
106         for commit in $commits ; do
107                 subject=$(git log --format='%s' -1 $commit)
108                 check '' $commit "$subject"
109         done
110 else
111         for patch in "$@" ; do
112                 subject=$(sed -n 's,^Subject: ,,p' "$patch")
113                 check "$patch" '' "$subject"
114         done
115 fi
116 pass=$(($total - $status))
117 $quiet || printf '\n%d/%d valid patch' $pass $total
118 $quiet || [ $pass -le 1 ] || printf 'es'
119 $quiet || printf '\n'
120 exit $status