[Xenomai-git] Jan Kiszka : nucleus: xnheap_destroy does not fail

2009-10-27 Thread GIT version control
Module: xenomai-abe
Branch: analogy
Commit: 07fb72f1abe00ac5ea394ff9b19a6dc86e9938a3
URL:
http://git.xenomai.org/?p=xenomai-abe.git;a=commit;h=07fb72f1abe00ac5ea394ff9b19a6dc86e9938a3

Author: Jan Kiszka 
Date:   Tue Oct 20 13:14:23 2009 +0200

nucleus: xnheap_destroy does not fail

There is no error returned by xnheap_destroy. So drop its return value
and update all callers.

Signed-off-by: Jan Kiszka 

---

 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 9ca2591..5080201 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);
 
@@ -1270,7 +1266,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 0a24735..9480f64 100644
--- a/ksrc/skins/native/heap.c
+++ b/ksrc/skins/native/heap.c
@@ -415,7 +415,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_priva

[Xenomai-git] Jan Kiszka : nucleus: xnheap_destroy does not fail

2009-10-25 Thread GIT version control
Module: xenomai-gch
Branch: for-head
Commit: 07fb72f1abe00ac5ea394ff9b19a6dc86e9938a3
URL:
http://git.xenomai.org/?p=xenomai-gch.git;a=commit;h=07fb72f1abe00ac5ea394ff9b19a6dc86e9938a3

Author: Jan Kiszka 
Date:   Tue Oct 20 13:14:23 2009 +0200

nucleus: xnheap_destroy does not fail

There is no error returned by xnheap_destroy. So drop its return value
and update all callers.

Signed-off-by: Jan Kiszka 

---

 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 9ca2591..5080201 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);
 
@@ -1270,7 +1266,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 0a24735..9480f64 100644
--- a/ksrc/skins/native/heap.c
+++ b/ksrc/skins/native/heap.c
@@ -415,7 +415,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_priv

[Xenomai-git] Jan Kiszka : nucleus: xnheap_destroy does not fail

2009-10-20 Thread GIT version control
Module: xenomai-head
Branch: master
Commit: 07fb72f1abe00ac5ea394ff9b19a6dc86e9938a3
URL:
http://git.xenomai.org/?p=xenomai-head.git;a=commit;h=07fb72f1abe00ac5ea394ff9b19a6dc86e9938a3

Author: Jan Kiszka 
Date:   Tue Oct 20 13:14:23 2009 +0200

nucleus: xnheap_destroy does not fail

There is no error returned by xnheap_destroy. So drop its return value
and update all callers.

Signed-off-by: Jan Kiszka 

---

 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 9ca2591..5080201 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);
 
@@ -1270,7 +1266,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 0a24735..9480f64 100644
--- a/ksrc/skins/native/heap.c
+++ b/ksrc/skins/native/heap.c
@@ -415,7 +415,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_priv