aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ntfs/layout.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2005-10-04 09:34:00 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2005-10-04 09:34:00 -0700
commitdd7205ed0f022a2a5e60eb7404e6c9f49d2301c3 (patch)
tree773021ad63126ff2dacff654bd41b03a4ad6389e /fs/ntfs/layout.h
parentMerge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6 (diff)
parentNTFS: Fix a 64-bitness bug where a left-shift could overflow a 32-bit variable (diff)
downloadlinux-dev-dd7205ed0f022a2a5e60eb7404e6c9f49d2301c3.tar.xz
linux-dev-dd7205ed0f022a2a5e60eb7404e6c9f49d2301c3.zip
Merge master.kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6
Diffstat (limited to 'fs/ntfs/layout.h')
-rw-r--r--fs/ntfs/layout.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ntfs/layout.h b/fs/ntfs/layout.h
index 01f2dfa39cec..5c248d404f05 100644
--- a/fs/ntfs/layout.h
+++ b/fs/ntfs/layout.h
@@ -309,7 +309,7 @@ typedef le16 MFT_RECORD_FLAGS;
* Note: The _LE versions will return a CPU endian formatted value!
*/
#define MFT_REF_MASK_CPU 0x0000ffffffffffffULL
-#define MFT_REF_MASK_LE const_cpu_to_le64(0x0000ffffffffffffULL)
+#define MFT_REF_MASK_LE const_cpu_to_le64(MFT_REF_MASK_CPU)
typedef u64 MFT_REF;
typedef le64 leMFT_REF;