Lines Matching refs:tune2fs_dict
126 tune2fs_dict = {}
133 tune2fs_dict[option] = int(value)
135 tune2fs_dict[option] = value
137 return tune2fs_dict
140 def ext_mkfs_options(tune2fs_dict, mkfs_option):
179 if key not in tune2fs_dict:
182 mkfs_option[value] = conversions[key](tune2fs_dict, key)
184 mkfs_option[value] = tune2fs_dict[key]
213 tune2fs_dict = {}
228 tune2fs_dict['naming: version'] = pair
238 tune2fs_dict[tagged_key] = int(value.rstrip(','))
240 tune2fs_dict[tagged_key] = value.rstrip(',')
242 return tune2fs_dict
245 def xfs_mkfs_options(tune2fs_dict, mkfs_option):
268 mkfs_option['-l size'] = tune2fs_dict['log: bsize'] * (
269 tune2fs_dict['log: blocks'])
272 mkfs_option[value] = tune2fs_dict[key]
322 tune2fs_dict = ext_tunables(dev)
323 ext_mkfs_options(tune2fs_dict, current_opt)