We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
/proc/mounts
1 parent a49af74 commit e7c8d7bCopy full SHA for e7c8d7b
cuda_bindings/tests/test_cufile.py
@@ -107,7 +107,8 @@ def isSupportedFilesystem():
107
if current_dir.startswith(mount_point):
108
fs_type_lower = fs_type.lower()
109
logging.info(f"Current filesystem type: {fs_type_lower}")
110
- return fs_type_lower in ["ext4", "xfs"]
+ if fs_type_lower in ("ext4", "xfs"):
111
+ return True
112
113
# If we get here, we couldn't determine the filesystem type
114
logging.warning("Could not determine filesystem type from /proc/mounts")
0 commit comments