* [PATCH 1/3] X25: Move SYSCTL ifdefs into header
@ 2009-11-25 1:15 andrew hendry
2009-11-27 22:34 ` Eric W. Biederman
0 siblings, 1 reply; 2+ messages in thread
From: andrew hendry @ 2009-11-25 1:15 UTC (permalink / raw)
To: netdev; +Cc: linux-kernel, linux-x25
Moves the CONFIG_SYSCTL ifdefs in x25_init into header.
Signed-off-by: Andrew Hendry <andrew.hendry@gmail.com>
diff -uprN -X a/Documentation/dontdiff a/include/net/x25.h b/include/net/x25.h
--- a/include/net/x25.h 2009-11-10 11:32:31.000000000 +1100
+++ b/include/net/x25.h 2009-11-25 09:05:21.000000000 +1100
@@ -287,8 +287,14 @@ extern unsigned long x25_display_timer(s
extern void x25_check_rbuf(struct sock *);
/* sysctl_net_x25.c */
+#ifdef CONFIG_SYSCTL
extern void x25_register_sysctl(void);
extern void x25_unregister_sysctl(void);
+#else
+static inline void x25_register_sysctl(void) {};
+static inline void x25_unregister_sysctl(void) {};
+#endif /* CONFIG_SYSCTL */
+
struct x25_skb_cb {
unsigned flags;
};
diff -uprN -X a/Documentation/dontdiff a/net/x25/af_x25.c b/net/x25/af_x25.c
--- a/net/x25/af_x25.c 2009-11-17 10:30:18.000000000 +1100
+++ b/net/x25/af_x25.c 2009-11-25 09:04:25.000000000 +1100
@@ -1667,9 +1667,7 @@ static int __init x25_init(void)
printk(KERN_INFO "X.25 for Linux Version 0.2\n");
-#ifdef CONFIG_SYSCTL
x25_register_sysctl();
-#endif
x25_proc_init();
out:
return rc;
@@ -1682,9 +1680,7 @@ static void __exit x25_exit(void)
x25_link_free();
x25_route_free();
-#ifdef CONFIG_SYSCTL
x25_unregister_sysctl();
-#endif
unregister_netdevice_notifier(&x25_dev_notifier);
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 1/3] X25: Move SYSCTL ifdefs into header
2009-11-25 1:15 [PATCH 1/3] X25: Move SYSCTL ifdefs into header andrew hendry
@ 2009-11-27 22:34 ` Eric W. Biederman
0 siblings, 0 replies; 2+ messages in thread
From: Eric W. Biederman @ 2009-11-27 22:34 UTC (permalink / raw)
To: andrew hendry; +Cc: netdev, linux-kernel, linux-x25
andrew hendry <andrew.hendry@gmail.com> writes:
> Moves the CONFIG_SYSCTL ifdefs in x25_init into header.
This looks like a reasonable change and it doesn't conflict
with my pending changes in the sysctl tree.
Acked-by: "Eric W. Biederman" <ebiederm@xmission.com>
>
> Signed-off-by: Andrew Hendry <andrew.hendry@gmail.com>
>
> diff -uprN -X a/Documentation/dontdiff a/include/net/x25.h b/include/net/x25.h
> --- a/include/net/x25.h 2009-11-10 11:32:31.000000000 +1100
> +++ b/include/net/x25.h 2009-11-25 09:05:21.000000000 +1100
> @@ -287,8 +287,14 @@ extern unsigned long x25_display_timer(s
> extern void x25_check_rbuf(struct sock *);
>
> /* sysctl_net_x25.c */
> +#ifdef CONFIG_SYSCTL
> extern void x25_register_sysctl(void);
> extern void x25_unregister_sysctl(void);
> +#else
> +static inline void x25_register_sysctl(void) {};
> +static inline void x25_unregister_sysctl(void) {};
> +#endif /* CONFIG_SYSCTL */
> +
> struct x25_skb_cb {
> unsigned flags;
> };
> diff -uprN -X a/Documentation/dontdiff a/net/x25/af_x25.c b/net/x25/af_x25.c
> --- a/net/x25/af_x25.c 2009-11-17 10:30:18.000000000 +1100
> +++ b/net/x25/af_x25.c 2009-11-25 09:04:25.000000000 +1100
> @@ -1667,9 +1667,7 @@ static int __init x25_init(void)
>
> printk(KERN_INFO "X.25 for Linux Version 0.2\n");
>
> -#ifdef CONFIG_SYSCTL
> x25_register_sysctl();
> -#endif
> x25_proc_init();
> out:
> return rc;
> @@ -1682,9 +1680,7 @@ static void __exit x25_exit(void)
> x25_link_free();
> x25_route_free();
>
> -#ifdef CONFIG_SYSCTL
> x25_unregister_sysctl();
> -#endif
>
> unregister_netdevice_notifier(&x25_dev_notifier);
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-11-27 22:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-25 1:15 [PATCH 1/3] X25: Move SYSCTL ifdefs into header andrew hendry
2009-11-27 22:34 ` Eric W. Biederman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).