5 # Copyright 2015 6WIND S.A.
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
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
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.
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.
33 # Load config options:
34 # - DPDK_CHECKPATCH_PATH
35 # - DPDK_CHECKPATCH_LINE_LENGTH
36 . $(dirname $(readlink -e $0))/load-devel-config
38 length=${DPDK_CHECKPATCH_LINE_LENGTH:-80}
40 # override default Linux options
42 options="$options --max-line-length=$length"
43 options="$options --show-types"
44 options="$options --ignore=LINUX_VERSION_CODE,\
45 FILE_PATH_CHANGES,MAINTAINERS_STYLE,\
46 VOLATILE,PREFER_PACKED,PREFER_ALIGNED,PREFER_PRINTF,\
47 PREFER_KERNEL_TYPES,BIT_MACRO,CONST_STRUCT,\
48 SPLIT_STRING,LONG_LINE_STRING,\
49 LINE_SPACING,PARENTHESIS_ALIGNMENT,NETWORKING_BLOCK_COMMENT_STYLE,\
50 NEW_TYPEDEFS,COMPARISON_TO_NULL"
54 usage: $(basename $0) [-q] [-v] [-nX|patch1 [patch2] ...]]
56 Run Linux kernel checkpatch.pl with DPDK options.
57 The environment variable DPDK_CHECKPATCH_PATH must be set.
59 The patches to check can be from stdin, files specified on the command line,
60 or latest git commits limited with -n option (default limit: origin/master).
67 while getopts hn:qv ARG ; do
72 h ) print_usage ; exit 0 ;;
73 ? ) print_usage ; exit 1 ;;
76 shift $(($OPTIND - 1))
78 if [ ! -x "$DPDK_CHECKPATCH_PATH" ] ; then
81 echo 'Cannot execute DPDK_CHECKPATCH_PATH' >&2
88 check () { # <patch> <commit> <title>
90 ! $verbose || printf '\n### %s\n\n' "$3"
92 report=$($DPDK_CHECKPATCH_PATH $options "$1" 2>/dev/null)
93 elif [ -n "$2" ] ; then
94 report=$(git format-patch --find-renames --no-stat --stdout -1 $commit |
95 $DPDK_CHECKPATCH_PATH $options - 2>/dev/null)
97 report=$($DPDK_CHECKPATCH_PATH $options - 2>/dev/null)
99 [ $? -ne 0 ] || return 0
100 $verbose || printf '\n### %s\n\n' "$3"
101 printf '%s\n' "$report" | sed -n '1,/^total:.*lines checked$/p'
102 status=$(($status + 1))
105 if [ -n "$1" ] ; then
106 for patch in "$@" ; do
107 # Subject can be on 2 lines
108 subject=$(sed '/^Subject: */!d;s///;N;s,\n[[:space:]]\+, ,;s,\n.*,,;q' "$patch")
109 check "$patch" '' "$subject"
111 elif [ ! -t 0 ] ; then # stdin
112 subject=$(while read header value ; do
113 if [ "$header" = 'Subject:' ] ; then
115 continuation=$(echo "$next" | sed -n 's,^[[:space:]]\+, ,p')
116 echo $value$continuation
120 check '' '' "$subject"
122 if [ $number -eq 0 ] ; then
123 commits=$(git rev-list --reverse origin/master..)
125 commits=$(git rev-list --reverse --max-count=$number HEAD)
127 for commit in $commits ; do
128 subject=$(git log --format='%s' -1 $commit)
129 check '' $commit "$subject"
132 pass=$(($total - $status))
133 $quiet || printf '\n%d/%d valid patch' $pass $total
134 $quiet || [ $pass -le 1 ] || printf 'es'
135 $quiet || printf '\n'