diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2005-12-15 09:18:25 +0000 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-15 10:04:30 -0800 |
commit | 78d9955bb06493e7bd78e43dfdc17fb5f1dc59b6 (patch) | |
tree | 67254d5c6df42764f5666cd17a6c9b564353ed0a /mm | |
parent | 538bacf8a4802d209f955726b66891b8a921dabf (diff) | |
download | linux-3.10-78d9955bb06493e7bd78e43dfdc17fb5f1dc59b6.tar.gz linux-3.10-78d9955bb06493e7bd78e43dfdc17fb5f1dc59b6.tar.bz2 linux-3.10-78d9955bb06493e7bd78e43dfdc17fb5f1dc59b6.zip |
[PATCH] missing prototype (mm/page_alloc.c)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/page_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 3b21a13d841..fe14a8c87fc 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -1896,7 +1896,7 @@ static int __devinit pageset_cpuup_callback(struct notifier_block *nfb, static struct notifier_block pageset_notifier = { &pageset_cpuup_callback, NULL, 0 }; -void __init setup_per_cpu_pageset() +void __init setup_per_cpu_pageset(void) { int err; |