Lines Matching defs:fscache_volume
72 struct fscache_volume { struct
73 refcount_t ref;
74 atomic_t n_cookies; /* Number of data cookies in volume */
75 atomic_t n_accesses; /* Number of cache accesses in progress */
76 unsigned int debug_id;
77 unsigned int key_hash; /* Hash of key string */
78 u8 *key; /* Volume ID, eg. "afs@example.com@1234" */
79 struct list_head proc_link; /* Link in /proc/fs/fscache/volumes */
80 struct hlist_bl_node hash_link; /* Link in hash table */
81 struct work_struct work;
82 struct fscache_cache *cache; /* The cache in which this resides */
83 void *cache_priv; /* Cache private data */
84 spinlock_t lock;
85 unsigned long flags;
109 struct fscache_volume *volume; /* Parent volume of this file. */ argument