summaryrefslogtreecommitdiffstats
path: root/mm/swap.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/swap.c')
-rw-r--r--mm/swap.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mm/swap.c b/mm/swap.c
index 7b6a0eb49..80817ecf1 100644
--- a/mm/swap.c
+++ b/mm/swap.c
@@ -23,6 +23,7 @@
#include <linux/fs.h>
#include <linux/swapctl.h>
#include <linux/pagemap.h>
+#include <linux/init.h>
#include <asm/dma.h>
#include <asm/system.h> /* for cli()/sti() */
@@ -67,7 +68,7 @@ swapstat_t swapstats = {0};
/* General swap control */
/* Parse the kernel command line "swap=" option at load time: */
-void swap_setup(char *str, int *ints)
+__initfunc(void swap_setup(char *str, int *ints))
{
int * swap_vars[8] = {
&MAX_PAGE_AGE,
@@ -87,7 +88,7 @@ void swap_setup(char *str, int *ints)
}
/* Parse the kernel command line "buff=" option at load time: */
-void buff_setup(char *str, int *ints)
+__initfunc(void buff_setup(char *str, int *ints))
{
int * buff_vars[6] = {
&MAX_BUFF_AGE,