From: Arnaud Lacombe <lacombar@gmail.com>
To: mcgrof@bombadil.infradead.org
Cc: linux-wireless@vger.kernel.org, lrodriguez@atheros.com
Subject: [PATCH 06/13] Add compatibility call for kmem_cache_destroy()
Date: Mon, 23 Nov 2009 21:24:42 -0500 [thread overview]
Message-ID: <4B0B43EA.9080304@gmail.com> (raw)
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
reply other threads:[~2009-11-24 2:25 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B0B43EA.9080304@gmail.com \
--to=lacombar@gmail.com \
--cc=linux-wireless@vger.kernel.org \
--cc=lrodriguez@atheros.com \
--cc=mcgrof@bombadil.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.