aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/zsmalloc
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/zsmalloc')
-rw-r--r--drivers/staging/zsmalloc/Kconfig5
-rw-r--r--drivers/staging/zsmalloc/zsmalloc-main.c1
2 files changed, 5 insertions, 1 deletions
diff --git a/drivers/staging/zsmalloc/Kconfig b/drivers/staging/zsmalloc/Kconfig
index 3e7a8d4d217..8e2c6a05a17 100644
--- a/drivers/staging/zsmalloc/Kconfig
+++ b/drivers/staging/zsmalloc/Kconfig
@@ -1,6 +1,9 @@
1config ZSMALLOC 1config ZSMALLOC
2 tristate "Memory allocator for compressed pages" 2 tristate "Memory allocator for compressed pages"
3 depends on SPARSEMEM 3 # X86 dependency is because of the use of __flush_tlb_one and set_pte
4 # in zsmalloc-main.c.
5 # TODO: convert these to portable functions
6 depends on SPARSEMEM && X86
4 default n 7 default n
5 help 8 help
6 zsmalloc is a slab-based memory allocator designed to store 9 zsmalloc is a slab-based memory allocator designed to store
diff --git a/drivers/staging/zsmalloc/zsmalloc-main.c b/drivers/staging/zsmalloc/zsmalloc-main.c
index 189fb42313b..455fc2f9724 100644
--- a/drivers/staging/zsmalloc/zsmalloc-main.c
+++ b/drivers/staging/zsmalloc/zsmalloc-main.c
@@ -26,6 +26,7 @@
26#include <asm/pgtable.h> 26#include <asm/pgtable.h>
27#include <linux/cpumask.h> 27#include <linux/cpumask.h>
28#include <linux/cpu.h> 28#include <linux/cpu.h>
29#include <linux/vmalloc.h>
29 30
30#include "zsmalloc.h" 31#include "zsmalloc.h"
31#include "zsmalloc_int.h" 32#include "zsmalloc_int.h"