Message ID | 20231125-const-sysctl-v1-4-5e881b0e0290@weissschuh.net (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | sysctl: constify sysctl ctl_tables | expand |
diff --git a/net/sysctl_net.c b/net/sysctl_net.c index 051ed5f6fc93..29d871097ddc 100644 --- a/net/sysctl_net.c +++ b/net/sysctl_net.c @@ -132,8 +132,9 @@ static void ensure_safe_net_sysctl(struct net *net, const char *path, unsigned long addr; const char *where; - pr_debug(" procname=%s mode=%o proc_handler=%ps data=%p\n", - ent->procname, ent->mode, ent->proc_handler, ent->data); + pr_debug(" procname=%s mode=%o proc_handler=%ps/%ps data=%p\n", + ent->procname, ent->mode, ent->proc_handler, + ent->proc_handler_new, ent->data); /* If it's not writable inside the netns, then it can't hurt. */ if ((ent->mode & 0222) == 0) {
The sysctl core introduce an alternative handler function. Log it in the debug message, too. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> --- net/sysctl_net.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)