Re: [PATCH] sysctl.c: Change a .proc_handler = proc_dointvec to

From: Alexey Dobriyan
Date: Sun Nov 15 2009 - 06:00:10 EST


> - .proc_handler = proc_dointvec
> + .proc_handler = &proc_dointvec,

NAK.

commit 6d9f239a1edb31d6133230f478fd1dc2da338ec5
Author: Alexey Dobriyan <adobriyan@xxxxxxxxx>
Date: Mon Nov 3 18:21:05 2008 -0800

net: '&' redux

I want to compile out proc_* and sysctl_* handlers totally and
stub them to NULL depending on config options, however usage of &
will prevent this, since taking adress of NULL pointer will break
compilation.

So, drop & in front of every ->proc_handler and every ->strategy
handler, it was never needed in fact.

Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx>
Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/