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

[PATCH] Fix gcc 3.5 compile issue in mm/mempolicy.c

Fix another gcc 3.5 compile issue, this time the default_policy prototype
was not marked static whereas the definition was. There is no need for
the prototype, so remove it.
Signed-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 f947ff8a
...@@ -68,9 +68,6 @@ struct mempolicy { ...@@ -68,9 +68,6 @@ struct mempolicy {
} v; } v;
}; };
/* An NULL mempolicy pointer is a synonym of &default_policy. */
extern struct mempolicy default_policy;
/* /*
* Support for managing mempolicy data objects (clone, copy, destroy) * Support for managing mempolicy data objects (clone, copy, destroy)
* The default fast path of a NULL MPOL_DEFAULT policy is always inlined. * The default fast path of a NULL MPOL_DEFAULT policy is always inlined.
......
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