3 * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/sched.h>
15 static enum fscache_checkaux afs_vnode_cache_check_aux(void *cookie_netfs_data,
20 struct fscache_netfs afs_cache_netfs = {
25 struct fscache_cookie_def afs_cell_cache_index_def = {
27 .type = FSCACHE_COOKIE_TYPE_INDEX,
30 struct fscache_cookie_def afs_volume_cache_index_def = {
32 .type = FSCACHE_COOKIE_TYPE_INDEX,
35 struct fscache_cookie_def afs_vnode_cache_index_def = {
37 .type = FSCACHE_COOKIE_TYPE_DATAFILE,
38 .check_aux = afs_vnode_cache_check_aux,
42 * check that the auxiliary data indicates that the entry is still valid
44 static enum fscache_checkaux afs_vnode_cache_check_aux(void *cookie_netfs_data,
49 struct afs_vnode *vnode = cookie_netfs_data;
50 struct afs_vnode_cache_aux aux;
52 _enter("{%x,%x,%llx},%p,%u",
53 vnode->fid.vnode, vnode->fid.unique, vnode->status.data_version,
56 memcpy(&aux, buffer, sizeof(aux));
58 /* check the size of the data is what we're expecting */
59 if (buflen != sizeof(aux)) {
60 _leave(" = OBSOLETE [len %hx != %zx]", buflen, sizeof(aux));
61 return FSCACHE_CHECKAUX_OBSOLETE;
64 if (vnode->status.data_version != aux.data_version) {
65 _leave(" = OBSOLETE [vers %llx != %llx]",
66 aux.data_version, vnode->status.data_version);
67 return FSCACHE_CHECKAUX_OBSOLETE;
71 return FSCACHE_CHECKAUX_OKAY;