Lines Matching defs:value
48 /* The number of same-value filled pages currently stored in zswap */
128 * Enable/disable handling same-value filled pages (enabled by default).
129 * If disabled every page is considered non-same-value filled.
135 /* Enable/disable handling non-same-value filled pages (enabled by default) */
193 * decompression. For a same value filled page length is 0, and both
197 * value - value of the same-value filled pages which have same content
209 unsigned long value;
1163 static int zswap_is_page_same_filled(void *ptr, unsigned long *value)
1180 *value = val;
1185 static void zswap_fill_page(void *ptr, unsigned long value)
1190 memset_l(page, value, PAGE_SIZE / sizeof(unsigned long));
1207 unsigned long handle, value;
1271 if (zswap_is_page_same_filled(src, &value)) {
1275 entry->value = value;
1424 zswap_fill_page(dst, entry->value);