* [PATCH] Remove function prototype inside function
@ 2004-08-27 8:13 Anton Blanchard
0 siblings, 0 replies; only message in thread
From: Anton Blanchard @ 2004-08-27 8:13 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel
Hi,
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=17205
Signed-off-by: Anton Blanchard <anton@samba.org>
===== mm/prio_tree.c 1.7 vs edited =====
--- 1.7/mm/prio_tree.c Mon Aug 23 18:15:12 2004
+++ edited/mm/prio_tree.c Fri Aug 27 16:28:34 2004
@@ -81,6 +81,8 @@
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
* max_heap_index. In the worst case, this algorithm takes O((log n)^2).
@@ -90,8 +92,6 @@
static struct prio_tree_node *prio_tree_expand(struct prio_tree_root *root,
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;
if (max_heap_index > prio_tree_maxindex(root->index_bits))
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-08-27 8:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-08-27 8:13 [PATCH] Remove function prototype inside function Anton Blanchard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®