diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-10-05 20:52:19 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-10-05 22:21:53 +0200 |
commit | b8f77e5caf1de21a7ea3b1e5eca57dfa7f5a8bfe (patch) | |
tree | 6d03da1d4aeaee4519ca20c415d936488c26c6e6 /src | |
parent | a199777a33e38424e0b33384b3df28d301623ed3 (diff) |
Makefile: clang now builds the kernel, so use scan-build
Also add little stub for coccinelle and clean up semicolon issue it
found.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 8 | ||||
-rw-r--r-- | src/selftest/routingtable.h | 6 |
2 files changed, 8 insertions, 6 deletions
diff --git a/src/Makefile b/src/Makefile index d47473e..a8a7265 100644 --- a/src/Makefile +++ b/src/Makefile @@ -61,9 +61,11 @@ tools: tools-debug: $(MAKE) -C tools V=1 DEBUG_TOOLS=y -check: - $(MAKE) -C $(KERNELDIR) M=$(PWD) C=2 CF="-D__CHECK_ENDIAN__" CONFIG_WIREGUARD_DEBUG=y - $(MAKE) -C tools check +check: clean + scan-build --view --keep-going $(MAKE) module tools CONFIG_WIREGUARD_DEBUG=y C=2 CF="-D__CHECK_ENDIAN__" + +coccicheck: clean + $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_WIREGUARD_DEBUG=y coccicheck MODE=report cloc: clean cloc $(wildcard *.c) $(wildcard *.h) diff --git a/src/selftest/routingtable.h b/src/selftest/routingtable.h index 2f052fa..951eb59 100644 --- a/src/selftest/routingtable.h +++ b/src/selftest/routingtable.h @@ -68,7 +68,7 @@ static __init void horrible_routing_table_free(struct horrible_routing_table *ta hlist_for_each_entry_safe (node, h, &table->head, table) { hlist_del(&node->table); kfree(node); - }; + } } static __init inline union nf_inet_addr horrible_cidr_to_mask(uint8_t cidr) { @@ -168,7 +168,7 @@ static __init void *horrible_routing_table_lookup_v4(struct horrible_routing_tab ret = node->value; break; } - }; + } return ret; } static __init void *horrible_routing_table_lookup_v6(struct horrible_routing_table *table, struct in6_addr *ip) @@ -182,7 +182,7 @@ static __init void *horrible_routing_table_lookup_v6(struct horrible_routing_tab ret = node->value; break; } - }; + } return ret; } |