diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-06-20 14:23:28 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-05 14:52:24 -0700 |
commit | 5cbde12cc945fabb8c2dae48ea9b0805d707439b (patch) | |
tree | 24634d3ce71abefb734f4c4513bedf28fe6a72ca | |
parent | 0be0ec9c364fc3a44837d58c2210432690a27ff4 (diff) | |
download | lwn-5cbde12cc945fabb8c2dae48ea9b0805d707439b.tar.gz lwn-5cbde12cc945fabb8c2dae48ea9b0805d707439b.zip |
staging/lustre: disable virtual block device for 64K pages
commit 0bf22be0da8ea74bc7ccc5b07d7855830be16eca upstream.
The lustre virtual block device cannot handle 64K pages and fails at compile
time. To avoid running into this error, let's disable the Kconfig option
for this driver in cases it doesn't support.
Reported-by: Dann Frazier <dann.frazier@canonical.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/lustre/lustre/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/lustre/lustre/Kconfig b/drivers/staging/lustre/lustre/Kconfig index 209e4c7e6f8a..4f65ba1158bf 100644 --- a/drivers/staging/lustre/lustre/Kconfig +++ b/drivers/staging/lustre/lustre/Kconfig @@ -57,4 +57,5 @@ config LUSTRE_TRANSLATE_ERRNOS config LUSTRE_LLITE_LLOOP tristate "Lustre virtual block device" depends on LUSTRE_FS && BLOCK + depends on !PPC_64K_PAGES && !ARM64_64K_PAGES default m |