On Thu, Mar 30, 2017 at 12:57:02AM +0530, Varsha Rao wrote: > Static variables are initialized to zero by default, so remove explicit > initalization. This patch fixes the checkpatch issue. Applied. But I had to add this chunk: diff --git a/iptables/xtables-restore.c b/iptables/xtables-restore.c index a551c8c19f7f..6afa0d0ec5b1 100644 --- a/iptables/xtables-restore.c +++ b/iptables/xtables-restore.c @@ -24,7 +24,7 @@ #define DEBUGP(x, args...) #endif -static int counters = 0, verbose = 0, noflush = 0; +static int counters, verbose, noflush; /* Keeping track of external matches and targets. */ static const struct option options[] = { You have to be more careful. It's good if you just fix all spots in one single go. Thanks! -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html