This patch fixes the checkpatch.pl error to nfssvc.c: ERROR: do not initialise statics to 0 Signed-off-by: Wei Tang <tangwei@xxxxxxxxxxxxxxxxxxxx> --- fs/nfsd/nfssvc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/nfsd/nfssvc.c b/fs/nfsd/nfssvc.c index ad4e237..0809dee 100644 --- a/fs/nfsd/nfssvc.c +++ b/fs/nfsd/nfssvc.c @@ -206,7 +206,7 @@ static int nfsd_init_socks(struct net *net) return 0; } -static int nfsd_users = 0; +static int nfsd_users; static int nfsd_startup_generic(int nrservs) { -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html