* [PATCH 06/13] Add compatibility call for kmem_cache_destroy()
@ 2009-11-24 2:24 Arnaud Lacombe
0 siblings, 0 replies; only message in thread
From: Arnaud Lacombe @ 2009-11-24 2:24 UTC (permalink / raw)
To: mcgrof; +Cc: linux-wireless, lrodriguez
On commit 133d205a, kmem_cache_destroy() was made returning void, while
older
kernel could return an error value.
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
---
compat-2.6.19.h | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/compat-2.6.19.h b/compat-2.6.19.h
index 7967390..017044c 100644
--- a/compat-2.6.19.h
+++ b/compat-2.6.19.h
@@ -7,6 +7,19 @@
/* Compat work for 2.6.19 */
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19))
+#include <linux/slab.h>
+
+static inline int
+compat_kmem_cache_destroy(struct kmem_cache *cachep)
+{
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19))
+ return kmem_cache_destroy(cachep);
+#else
+ kmem_cache_destroy(cachep);
+ return 0;
+#endif
+}
+
#endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)) */
#endif /* LINUX_26_19_COMPAT_H */
--
1.6.3.3.385.g60647.dirty
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-11-24 2:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-24 2:24 [PATCH 06/13] Add compatibility call for kmem_cache_destroy() Arnaud Lacombe
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).