Revision c45442055dfdeb265cc20c9eeaa9fd11a75fbf51 authored by Arnd Bergmann on 22 February 2016, 21:58:34 UTC, committed by Dan Williams on 24 February 2016, 01:17:20 UTC
A recent bugfix changed pfn_t to always be 64-bit wide, but did not
change the code in pmem.c, which is now broken on 32-bit architectures
as reported by gcc:

In file included from ../drivers/nvdimm/pmem.c:28:0:
drivers/nvdimm/pmem.c: In function 'pmem_alloc':
include/linux/pfn_t.h:15:17: error: large integer implicitly truncated to unsigned type [-Werror=overflow]
 #define PFN_DEV (1ULL << (BITS_PER_LONG_LONG - 3))

This changes the intermediate pfn_flags in struct pmem_device to
be 64 bit wide as well, so they can store the flags correctly.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: db78c22230d0 ("mm: fix pfn_t vs highmem")
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
1 parent 93f834d
History
File Mode Size
Kconfig -rw-r--r-- 803 bytes
Makefile -rw-r--r-- 263 bytes
crypto.c -rw-r--r-- 63.6 KB
debug.c -rw-r--r-- 3.8 KB
dentry.c -rw-r--r-- 2.6 KB
ecryptfs_kernel.h -rw-r--r-- 24.9 KB
file.c -rw-r--r-- 9.9 KB
inode.c -rw-r--r-- 32.3 KB
keystore.c -rw-r--r-- 79.0 KB
kthread.c -rw-r--r-- 4.9 KB
main.c -rw-r--r-- 25.4 KB
messaging.c -rw-r--r-- 13.9 KB
miscdev.c -rw-r--r-- 14.7 KB
mmap.c -rw-r--r-- 16.0 KB
read_write.c -rw-r--r-- 8.5 KB
super.c -rw-r--r-- 6.0 KB

back to top