From: Jan Kiszka <jan.kiszka@domain.hid>
To: Philippe Gerum <rpm@xenomai.org>
Cc: xenomai@xenomai.org
Subject: [Xenomai-core] [PATCH v3 4/9] nucleus: xnheap_destroy does not fail
Date: Tue, 20 Oct 2009 13:37:25 +0200 [thread overview]
Message-ID: <20091020113725.9069.63679.stgit@domain.hid> (raw)
In-Reply-To: <20091020113724.9069.23594.stgit@domain.hid>
There is no error returned by xnheap_destroy. So drop its return value
and update all callers.
Signed-off-by: Jan Kiszka <jan.kiszka@domain.hid>
---
include/nucleus/heap.h | 12 ++++++------
ksrc/nucleus/heap.c | 17 +++++++----------
ksrc/skins/native/heap.c | 2 +-
ksrc/skins/native/queue.c | 2 +-
ksrc/skins/rtai/shm.c | 5 ++---
5 files changed, 17 insertions(+), 21 deletions(-)
diff --git a/include/nucleus/heap.h b/include/nucleus/heap.h
index f39ef64..ca691bf 100644
--- a/include/nucleus/heap.h
+++ b/include/nucleus/heap.h
@@ -226,12 +226,12 @@ int xnheap_init(xnheap_t *heap,
u_long heapsize,
u_long pagesize);
-int xnheap_destroy(xnheap_t *heap,
- void (*flushfn)(xnheap_t *heap,
- void *extaddr,
- u_long extsize,
- void *cookie),
- void *cookie);
+void xnheap_destroy(xnheap_t *heap,
+ void (*flushfn)(xnheap_t *heap,
+ void *extaddr,
+ u_long extsize,
+ void *cookie),
+ void *cookie);
int xnheap_extend(xnheap_t *heap,
void *extaddr,
diff --git a/ksrc/nucleus/heap.c b/ksrc/nucleus/heap.c
index 0a9bfdf..4958daa 100644
--- a/ksrc/nucleus/heap.c
+++ b/ksrc/nucleus/heap.c
@@ -253,9 +253,6 @@ EXPORT_SYMBOL_GPL(xnheap_init);
* @param cookie If @a flushfn is non-NULL, @a cookie is an opaque
* pointer which will be passed unmodified to @a flushfn.
*
- * @return 0 is returned on success, or -EBUSY if external mappings
- * are still pending on the heap memory.
- *
* Environments:
*
* This service can be called from:
@@ -267,16 +264,17 @@ EXPORT_SYMBOL_GPL(xnheap_init);
* Rescheduling: never.
*/
-int xnheap_destroy(xnheap_t *heap,
- void (*flushfn) (xnheap_t *heap,
+void xnheap_destroy(xnheap_t *heap,
+ void (*flushfn)(xnheap_t *heap,
void *extaddr,
- u_long extsize, void *cookie), void *cookie)
+ u_long extsize, void *cookie),
+ void *cookie)
{
xnholder_t *holder;
spl_t s;
if (!flushfn)
- return 0;
+ return;
xnlock_get_irqsave(&heap->lock, s);
@@ -287,8 +285,6 @@ int xnheap_destroy(xnheap_t *heap,
}
xnlock_put_irqrestore(&heap->lock, s);
-
- return 0;
}
EXPORT_SYMBOL_GPL(xnheap_destroy);
@@ -1267,7 +1263,8 @@ int xnheap_init_mapped(xnheap_t *heap, u_long heapsize, int memflags)
int xnheap_destroy_mapped(xnheap_t *heap, void (*release)(struct xnheap *heap),
void __user *mapaddr)
{
- return xnheap_destroy(heap, &xnheap_free_extent, NULL);
+ xnheap_destroy(heap, &xnheap_free_extent, NULL);
+ return 0;
}
#endif /* !CONFIG_XENO_OPT_PERVASIVE */
diff --git a/ksrc/skins/native/heap.c b/ksrc/skins/native/heap.c
index 9c3810c..0d7ad83 100644
--- a/ksrc/skins/native/heap.c
+++ b/ksrc/skins/native/heap.c
@@ -416,7 +416,7 @@ int rt_heap_delete_inner(RT_HEAP *heap, void __user *mapaddr)
__heap_post_release, mapaddr);
else
#endif /* CONFIG_XENO_OPT_PERVASIVE */
- err = xnheap_destroy(&heap->heap_base, &__heap_flush_private, NULL);
+ xnheap_destroy(&heap->heap_base, &__heap_flush_private, NULL);
xnlock_get_irqsave(&nklock, s);
diff --git a/ksrc/skins/native/queue.c b/ksrc/skins/native/queue.c
index 527bde8..f913675 100644
--- a/ksrc/skins/native/queue.c
+++ b/ksrc/skins/native/queue.c
@@ -377,7 +377,7 @@ int rt_queue_delete_inner(RT_QUEUE *q, void __user *mapaddr)
__queue_post_release, mapaddr);
else
#endif /* CONFIG_XENO_OPT_PERVASIVE */
- err = xnheap_destroy(&q->bufpool, &__queue_flush_private, NULL);
+ xnheap_destroy(&q->bufpool, &__queue_flush_private, NULL);
xnlock_get_irqsave(&nklock, s);
diff --git a/ksrc/skins/rtai/shm.c b/ksrc/skins/rtai/shm.c
index 81de434..fddf455 100644
--- a/ksrc/skins/rtai/shm.c
+++ b/ksrc/skins/rtai/shm.c
@@ -295,9 +295,8 @@ static int _shm_free(unsigned long name)
#ifdef CONFIG_XENO_OPT_PERVASIVE
ret = xnheap_destroy_mapped(p->heap, NULL, NULL);
#else /* !CONFIG_XENO_OPT_PERVASIVE */
- ret =
- xnheap_destroy(p->heap,
- &__heap_flush_private, NULL);
+ xnheap_destroy(p->heap,
+ &__heap_flush_private, NULL);
#endif /* !CONFIG_XENO_OPT_PERVASIVE */
if (ret)
goto unlock_and_exit;
next prev parent reply other threads:[~2009-10-20 11:37 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-20 11:37 [Xenomai-core] [PATCH v3 0/9] heap setup/cleanup fixes, refactorings & more Jan Kiszka
2009-10-20 11:37 ` [Xenomai-core] [PATCH v3 6/9] rtai: Try to fix _shm_free Jan Kiszka
2009-10-24 17:25 ` Philippe Gerum
2009-10-20 11:37 ` [Xenomai-core] [PATCH v3 3/9] nucleus: Fix race window in heap mapping procedure Jan Kiszka
2009-10-20 11:37 ` [Xenomai-core] [PATCH v3 5/9] nucleus: Avoid returning errors from xnheap_destroy_mapped Jan Kiszka
2009-10-24 17:22 ` Philippe Gerum
2009-11-02 16:04 ` Philippe Gerum
2009-11-02 16:41 ` Jan Kiszka
2009-11-02 16:51 ` Philippe Gerum
2009-11-02 16:57 ` Jan Kiszka
2009-11-02 18:01 ` Jan Kiszka
2009-11-02 18:19 ` [Xenomai-help] Xenomai on ARMadeus Pierre Ficheux
2009-11-02 18:22 ` Gilles Chanteperdrix
2009-11-02 18:38 ` Gilles Chanteperdrix
2009-11-02 19:19 ` gwenhael.goavec
2009-11-02 22:29 ` Gilles Chanteperdrix
2009-11-03 7:36 ` gwenhael.goavec
[not found] ` <20091103082204.248eed59@domain.hid>
2009-11-04 13:14 ` Gilles Chanteperdrix
[not found] ` <fbc4f538a6f4d84cfe514aba0985a525.squirrel@domain.hid>
2009-11-12 14:59 ` Gilles Chanteperdrix
2009-11-02 18:26 ` [Xenomai-core] [PATCH v3 5/9] nucleus: Avoid returning errors from xnheap_destroy_mapped Philippe Gerum
2009-11-03 8:26 ` Jan Kiszka
2009-10-20 11:37 ` [Xenomai-core] [PATCH v3 1/9] native: Release fastlock to the proper heap Jan Kiszka
2009-10-20 11:37 ` [Xenomai-core] [PATCH v3 2/9] nucleus: Use Linux spin lock for heap list management Jan Kiszka
2009-10-20 11:37 ` Jan Kiszka [this message]
2009-10-20 11:37 ` [Xenomai-core] [PATCH v3 7/9] native: Do not requeue on auto-cleanup errors Jan Kiszka
2009-10-20 11:37 ` [Xenomai-core] [PATCH v3 9/9] nucleus: Include all heaps in statistics Jan Kiszka
2009-10-20 23:41 ` Philippe Gerum
2009-10-22 10:52 ` Jan Kiszka
2009-11-11 12:59 ` Jan Kiszka
2009-11-15 17:38 ` Philippe Gerum
2009-11-16 12:38 ` Jan Kiszka
2009-10-20 11:37 ` [Xenomai-core] [PATCH v3 8/9] native: Fix memory leak on heap/queue auto-deletion Jan Kiszka
2009-10-22 10:30 ` [Xenomai-core] [PATCH] native: Avoid double release on queue/heap auto-cleanup Jan Kiszka
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=20091020113725.9069.63679.stgit@domain.hid \
--to=jan.kiszka@domain.hid \
--cc=rpm@xenomai.org \
--cc=xenomai@xenomai.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.