File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7070FUSE_SETUPMAPPING = 48
7171FUSE_REMOVEMAPPING = 49
7272
73- FUSE_BIG_WRITES = ( 1 << 5 )
74- FUSE_DO_READDIRPLUS = ( 1 << 13 )
75- FUSE_READDIRPLUS_AUTO = ( 1 << 14 )
76- FUSE_WRITEBACK_CACHE = ( 1 << 16 )
77- FUSE_MAP_ALIGNMENT = ( 1 << 29 )
78-
79- FOPEN_KEEP_CACHE = ( 1 << 1 )
80-
81- FATTR_MODE = ( 1 << 0 )
82- FATTR_UID = ( 1 << 1 )
83- FATTR_GID = ( 1 << 2 )
84- FATTR_SIZE = ( 1 << 3 )
85- FATTR_ATIME = ( 1 << 4 )
86- FATTR_MTIME = ( 1 << 5 )
87- FATTR_FH = ( 1 << 6 )
73+ FUSE_BIG_WRITES = 1 << 5
74+ FUSE_DO_READDIRPLUS = 1 << 13
75+ FUSE_READDIRPLUS_AUTO = 1 << 14
76+ FUSE_WRITEBACK_CACHE = 1 << 16
77+ FUSE_MAP_ALIGNMENT = 1 << 29
78+
79+ FOPEN_KEEP_CACHE = 1 << 1
80+
81+ FATTR_MODE = 1 << 0
82+ FATTR_UID = 1 << 1
83+ FATTR_GID = 1 << 2
84+ FATTR_SIZE = 1 << 3
85+ FATTR_ATIME = 1 << 4
86+ FATTR_MTIME = 1 << 5
87+ FATTR_FH = 1 << 6
8888
8989CACHE_TIMEOUT = 60
9090
Original file line number Diff line number Diff line change 2929from ..utils import get_instance_id_from_name
3030
3131
32- def _cleanup_load_resources (instance_name : str , instance_id : int , verbose : bool ) -> None :
32+ def _cleanup_load_resources (instance_name : str , _instance_id : int , verbose : bool ) -> None :
3333 """Clean up resources created by kerf load --image."""
3434 import shutil
3535
You can’t perform that action at this time.
0 commit comments