netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] netfilter: xtables: Add helper macro for xt_match boilerplate
@ 2015-07-26 11:57 Vaishali Thakkar
  2015-07-30 12:24 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 3+ messages in thread
From: Vaishali Thakkar @ 2015-07-26 11:57 UTC (permalink / raw)
  To: Pablo Neira Ayuso
  Cc: Patrick McHardy, Jozsef Kadlecsik, netfilter-devel, coreteam,
	linux-kernel

For simple modules that contain a single xt_match without any
additional setup code then ends up being a block of duplicated
boilerplate. This patch adds a new macro, module_xt_match(),
which replaces the module_init()/module_exit() registrations with
template functions.

Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
---
 include/linux/netfilter/x_tables.h | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/include/linux/netfilter/x_tables.h b/include/linux/netfilter/x_tables.h
index 286098a..4ebf66b 100644
--- a/include/linux/netfilter/x_tables.h
+++ b/include/linux/netfilter/x_tables.h
@@ -142,6 +142,16 @@ struct xt_match {
 	unsigned short family;
 };
 
+/**
+ * module_xt_match() - Helper macro for registering a netfilter driver
+ * @__xt_match: xt_match struct
+ * Helper macro for netfilter drivers which do not do anything special in module
+ * init/exit. This eliminates a lot of boilerplate. Each module may only
+ * use this macro once, and calling it replaces module_init() and module_exit()
+ */
+#define module_xt_match(__xt_match) \
+	module_driver(__xt_match, xt_register_match, xt_unregister_match)
+
 /* Registration hooks for targets. */
 struct xt_target {
 	struct list_head list;
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-07-31  2:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-26 11:57 [PATCH] netfilter: xtables: Add helper macro for xt_match boilerplate Vaishali Thakkar
2015-07-30 12:24 ` Pablo Neira Ayuso
2015-07-31  2:03   ` Vaishali Thakkar

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).