summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorAnton Blanchard <anton@samba.org>2004-08-22 23:07:10 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-08-22 23:07:10 -0700
commitf2e335faed62349c41e8ce2f916511d663e86197 (patch)
treec301a3da8df9fd1324a5fdf2f629e286cbb1d802 /include/linux
parentf947ff8af30f75cb9cf0e966caf8f4809ad1b92e (diff)
[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: Anton Blanchard <anton@samba.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/mempolicy.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h
index 775c415908ae..9835ac230cc5 100644
--- a/include/linux/mempolicy.h
+++ b/include/linux/mempolicy.h
@@ -68,9 +68,6 @@ struct mempolicy {
} 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)
* The default fast path of a NULL MPOL_DEFAULT policy is always inlined.