Lines Matching defs:cachefiles_cache

87 struct cachefiles_cache {  struct
88 struct fscache_cache *cache; /* Cache cookie */
89 struct vfsmount *mnt; /* mountpoint holding the cache */
90 struct dentry *store; /* Directory into which live objects go */
91 struct dentry *graveyard; /* directory into which dead objects go */
92 struct file *cachefilesd; /* manager daemon handle */
93 struct list_head volumes; /* List of volume objects */
94 struct list_head object_list; /* List of active objects */
95 spinlock_t object_list_lock; /* Lock for volumes and object_list */
96 const struct cred *cache_cred; /* security override for accessing cache */
97 struct mutex daemon_mutex; /* command serialisation mutex */
98 wait_queue_head_t daemon_pollwq; /* poll waitqueue for daemon */
99 atomic_t gravecounter; /* graveyard uniquifier */
100 atomic_t f_released; /* number of objects released lately */
101 atomic_long_t b_released; /* number of blocks released lately */
102 atomic_long_t b_writing; /* Number of blocks being written */
103 unsigned frun_percent; /* when to stop culling (% files) */
104 unsigned fcull_percent; /* when to start culling (% files) */
105 unsigned fstop_percent; /* when to stop allocating (% files) */
106 unsigned brun_percent; /* when to stop culling (% blocks) */
107 unsigned bcull_percent; /* when to start culling (% blocks) */
108 unsigned bstop_percent; /* when to stop allocating (% blocks) */
109 unsigned bsize; /* cache's block size */
133 static inline bool cachefiles_in_ondemand_mode(struct cachefiles_cache *cache) in cachefiles_in_ondemand_mode() argument