Lines Matching refs:compressor
776 sz = zcomp_available_show(zram->compressor, buf); in comp_algorithm_show()
786 char compressor[ARRAY_SIZE(zram->compressor)]; in comp_algorithm_store() local
789 strlcpy(compressor, buf, sizeof(compressor)); in comp_algorithm_store()
791 sz = strlen(compressor); in comp_algorithm_store()
792 if (sz > 0 && compressor[sz - 1] == '\n') in comp_algorithm_store()
793 compressor[sz - 1] = 0x00; in comp_algorithm_store()
795 if (!zcomp_available_algorithm(compressor)) in comp_algorithm_store()
805 strcpy(zram->compressor, compressor); in comp_algorithm_store()
1514 comp = zcomp_create(zram->compressor); in disksize_store()
1517 zram->compressor); in disksize_store()
1728 strlcpy(zram->compressor, default_compressor, sizeof(zram->compressor)); in zram_add()