#!/bin/bash cd Documentation/ # Check entries that should be removed obsolete="" for i in $(tail -n +12 00-INDEX |grep -E '^[a-zA-Z0-9]+'); do if [ ! -e $i ]; then obsolete="$obsolete $i" fi done # Check directory entries that should be added search="" dir="" for i in $(find . -maxdepth 1 -type d); do if [ "$i" != "." ]; then new=$(echo $i|perl -ne 's,./(.*),$1/,; print $_') search="$search $new" fi done for i in $search; do if [ "$(grep -P "^$i" 00-INDEX)" == "" ]; then dir="$dir $i" fi done # Check file entries that should be added search="" file="" for i in $(find . -maxdepth 1 -type f); do if [ "$i" != "./.gitignore" ]; then new=$(echo $i|perl -ne 's,./(.*),$1,; print $_') search="$search $new" fi done for i in $search; do if [ "$(grep -P "^$i\$" 00-INDEX)" == "" ]; then file="$file $i" fi done # Output its findings echo -e "Documentation/00-INDEX check results:\n" if [ "$obsolete" != "" ]; then echo -e "- Should remove those entries:\n\t$obsolete\n" else echo -e "- No obsolete entries\n" fi if [ "$dir" != "" ]; then echo -e "- Should document those directories:\n\t$dir\n" else echo -e "- No new directories to add\n" fi if [ "$file" != "" ]; then echo -e "- Should document those files:\n\t$file" else echo "- No new files to add" fi submit' value='switch'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/sched
AgeCommit message (Expand)AuthorFilesLines
2017-02-10net/act_pedit: Introduce 'add' operationAmir Vadai1-4/+26
2017-02-10net/act_pedit: Support using offset relative to the conventional network headersAmir Vadai1-16/+180
2017-02-10sched: check negative err value to safe one level of indentJiri Pirko1-13/+9
2017-02-10sched: add missing curly braces in else branch in tc_ctl_tfilterJiri Pirko1-1/+2
2017-02-10sched: move err set right before goto errout in tc_ctl_tfilterJiri Pirko1-10/+19
2017-02-10sched: push TC filter protocol creation into a separate functionJiri Pirko1-51/+59
2017-02-10sched: move tcf_proto_destroy and tcf_destroy_chain helpers into cls_apiJiri Pirko13-24/+32
2017-02-10sched: rename tcf_destroy to tcf_destroy_protoJiri Pirko2-6/+6
2017-02-07net/sched: act_mirred: remove duplicated include from act_mirred.cWei Yongjun1-2/+0
2017-02-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-nextDavid S. Miller1-1/+1
2017-02-03sched: cls_flower: expose priority to offloading netdeviceJiri Pirko1-0/+3
2017-02-03net/sched: act_ife: Change to use ife moduleYotam Gigi2-78/+33
2017-02-03net/sched: act_ife: Unexport ife_tlv_meta_encodeYotam Gigi1-2/+2
2017-02-02Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2-85/+48
2017-02-02skbuff: add and use skb_nfct helperFlorian Westphal1-1/+1