Lines Matching refs:value
44 /* The number of same-value filled pages currently stored in zswap */
121 /* Enable/disable handling same-value filled pages (enabled by default) */
156 * decompression. For a same value filled page length is 0.
159 * value - value of the same-value filled pages which have same content
169 unsigned long value;
993 static int zswap_is_page_same_filled(void *ptr, unsigned long *value)
1003 *value = page[0];
1007 static void zswap_fill_page(void *ptr, unsigned long value)
1012 memset_l(page, value, PAGE_SIZE / sizeof(unsigned long));
1027 unsigned long handle, value;
1075 if (zswap_is_page_same_filled(src, &value)) {
1079 entry->value = value;
1185 zswap_fill_page(dst, entry->value);