All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 08/13] Add compatibility macro for register_sysctl_table()
@ 2009-11-24  2:25 Arnaud Lacombe
  2009-12-01  7:24 ` Luis R. Rodriguez
  2009-12-01  8:38 ` [PATCH 1/5] Add posix SHUT_RD/SHUT_WR/SHUT_RDWR macros Arnaud Lacombe
  0 siblings, 2 replies; 8+ messages in thread
From: Arnaud Lacombe @ 2009-11-24  2:25 UTC (permalink / raw)
  To: mcgrof; +Cc: linux-wireless, lrodriguez

The API was changed on commit 0b4d4147. register_sysctl_table() lost its
last
argument.

Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
---
 compat-2.6.21.h |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/compat-2.6.21.h b/compat-2.6.21.h
index c185cfb..263ebd2 100644
--- a/compat-2.6.21.h
+++ b/compat-2.6.21.h
@@ -7,6 +7,13 @@
 /* Compat work for 2.6.21 */
 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,21))

+#include <linux/sysctl.h>
+
+#define register_sysctl_table(table)				\
+	({							\
+		register_sysctl_table((table), 0);		\
+	})
+
 #endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,21)) */

 #endif /* LINUX_26_21_COMPAT_H */
-- 
1.6.3.3.385.g60647.dirty



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

end of thread, other threads:[~2009-12-01 17:58 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-24  2:25 [PATCH 08/13] Add compatibility macro for register_sysctl_table() Arnaud Lacombe
2009-12-01  7:24 ` Luis R. Rodriguez
2009-12-01  8:38 ` [PATCH 1/5] Add posix SHUT_RD/SHUT_WR/SHUT_RDWR macros Arnaud Lacombe
2009-12-01  8:38   ` [PATCH 2/5] Add compatibility call for dev_get_stats() Arnaud Lacombe
2009-12-01  8:38     ` [PATCH 3/5] Add more `skb->dst' accessors Arnaud Lacombe
2009-12-01  8:38       ` [PATCH 4/5] Add `enum nf_inet_hooks' Arnaud Lacombe
2009-12-01  8:38         ` [PATCH 5/5] Trailing space nits Arnaud Lacombe
2009-12-01 17:58   ` [PATCH 1/5] Add posix SHUT_RD/SHUT_WR/SHUT_RDWR macros Luis R. Rodriguez

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.