Lines Matching defs:cres
145 struct netfs_cache_resources cres;
151 memset(&cres, 0, sizeof(cres));
155 ret = fscache_begin_read_operation(&cres, cookie);
159 ret = fscache_read(&cres, page_offset(page), &iter, NETFS_READ_HOLE_FAIL,
161 fscache_end_operation(&cres);
171 struct netfs_cache_resources cres;
176 memset(&cres, 0, sizeof(cres));
179 ret = fscache_begin_write_operation(&cres, cookie);
183 ret = cres.ops->prepare_write(&cres, &start, &len, i_size_read(inode),
186 ret = fscache_write(&cres, start, &iter, NULL, NULL);
187 fscache_end_operation(&cres);
226 struct netfs_cache_resources cres;
232 ret = fscache_begin_read_operation(&cres, cookie);
238 ret = cres.ops->query_occupancy(&cres, start, len, PAGE_SIZE,
245 fscache_end_operation(&cres);