Messages in this thread Patch in this message |  | | Subject | [PATCH] zcache: fix typo "64_BIT" | From | Paul Bolle <> | Date | Sat, 09 Mar 2013 22:19:35 +0100 |
| |
Signed-off-by: Paul Bolle <pebolle@tiscali.nl> --- Untested! This specifically needs testing on (some) 64 bit platforms, because this means HAVE_ALIGNED_STRUCT_PAGE will not be selected anymore on those platforms.
drivers/staging/zcache/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/zcache/Kconfig b/drivers/staging/zcache/Kconfig index 7358270..5c37145 100644 --- a/drivers/staging/zcache/Kconfig +++ b/drivers/staging/zcache/Kconfig @@ -15,7 +15,7 @@ config RAMSTER depends on CONFIGFS_FS=y && SYSFS=y && !HIGHMEM && ZCACHE=y depends on NET # must ensure struct page is 8-byte aligned - select HAVE_ALIGNED_STRUCT_PAGE if !64_BIT + select HAVE_ALIGNED_STRUCT_PAGE if !64BIT default n help RAMster allows RAM on other machines in a cluster to be utilized -- 1.7.11.7
|  |