Lines Matching defs:option
1085 #define get_coption_desc "get compression option of a compressed file"
1093 struct f2fs_comp_option option;
1104 ret = ioctl(fd, F2FS_IOC_GET_COMPRESS_OPTION, &option);
1108 printf("compression algorithm:%u\n", option.algorithm);
1109 printf("compression cluster log size:%u\n", option.log_cluster_size);
1114 #define set_coption_desc "set compression option of a compressed file"
1122 struct f2fs_comp_option option;
1131 option.algorithm = atoi(argv[1]);
1132 option.log_cluster_size = atoi(argv[2]);
1136 ret = ioctl(fd, F2FS_IOC_SET_COMPRESS_OPTION, &option);
1140 printf("set compression option: algorithm=%u, log_cluster_size=%u\n",
1141 option.algorithm, option.log_cluster_size);
1252 #define rename_desc "rename source to target file with fsync option"