Commit f4939b75 authored by Anton Blanchard's avatar Anton Blanchard Committed by Linus Torvalds

[PATCH] prio-tree: remove function prototype inside function

I had a problem when compiling a 2.6 kernel with gcc 3.5 CVS.  The
prototype for prio_tree_remove in mm/prio_tree.c is inside another
function.  gcc 3.5 gets upset and removes the function completely.
Apparently this isnt valid C, so lets fix it up.

Details can be found here:

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17205Signed-off-by: default avatarAnton Blanchard <anton@samba.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 129b71fc
...@@ -81,6 +81,8 @@ static inline unsigned long prio_tree_maxindex(unsigned int bits) ...@@ -81,6 +81,8 @@ static inline unsigned long prio_tree_maxindex(unsigned int bits)
return index_bits_to_maxindex[bits - 1]; return index_bits_to_maxindex[bits - 1];
} }
static void prio_tree_remove(struct prio_tree_root *, struct prio_tree_node *);
/* /*
* Extend a priority search tree so that it can store a node with heap_index * Extend a priority search tree so that it can store a node with heap_index
* max_heap_index. In the worst case, this algorithm takes O((log n)^2). * max_heap_index. In the worst case, this algorithm takes O((log n)^2).
...@@ -90,8 +92,6 @@ static inline unsigned long prio_tree_maxindex(unsigned int bits) ...@@ -90,8 +92,6 @@ static inline unsigned long prio_tree_maxindex(unsigned int bits)
static struct prio_tree_node *prio_tree_expand(struct prio_tree_root *root, static struct prio_tree_node *prio_tree_expand(struct prio_tree_root *root,
struct prio_tree_node *node, unsigned long max_heap_index) struct prio_tree_node *node, unsigned long max_heap_index)
{ {
static void prio_tree_remove(struct prio_tree_root *,
struct prio_tree_node *);
struct prio_tree_node *first = NULL, *prev, *last = NULL; struct prio_tree_node *first = NULL, *prev, *last = NULL;
if (max_heap_index > prio_tree_maxindex(root->index_bits)) if (max_heap_index > prio_tree_maxindex(root->index_bits))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment