Skip to content

Commit

Permalink
Merge pull request MRtrix3#1040 from CanWood/patch-1
Browse files Browse the repository at this point in the history
Detect lustre to avoid memory mapping files
  • Loading branch information
Lestropie authored Jul 6, 2017
2 parents a707161 + eae1732 commit 73e60f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/file/mmap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ namespace MR

if (fsbuf.f_type == 0xff534d42 /* CIFS */|| fsbuf.f_type == 0x6969 /* NFS */ ||
fsbuf.f_type == 0x65735546 /* FUSE */ || fsbuf.f_type == 0x517b /* SMB */ ||
fsbuf.f_type == 0x47504653 /* GPFS */
fsbuf.f_type == 0x47504653 /* GPFS */ || fsbuf.f_type == 0xbd00bd0 /* LUSTRE */

#ifdef MRTRIX_MACOSX
|| fsbuf.f_type == 0x0017 /* OSXFUSE */
Expand Down

0 comments on commit 73e60f2

Please sign in to comment.