Lines Matching refs:compressor
992 sz = zcomp_available_show(zram->compressor, buf); in comp_algorithm_show()
1002 char compressor[ARRAY_SIZE(zram->compressor)]; in comp_algorithm_store() local
1005 strlcpy(compressor, buf, sizeof(compressor)); in comp_algorithm_store()
1007 sz = strlen(compressor); in comp_algorithm_store()
1008 if (sz > 0 && compressor[sz - 1] == '\n') in comp_algorithm_store()
1009 compressor[sz - 1] = 0x00; in comp_algorithm_store()
1011 if (!zcomp_available_algorithm(compressor)) in comp_algorithm_store()
1021 strcpy(zram->compressor, compressor); in comp_algorithm_store()
1744 comp = zcomp_create(zram->compressor); in disksize_store()
1747 zram->compressor); in disksize_store()
1958 strlcpy(zram->compressor, default_compressor, sizeof(zram->compressor)); in zram_add()