Lines Matching defs:cachefiles_cache

73 struct cachefiles_cache {  struct
74 struct fscache_cache *cache; /* Cache cookie */
75 struct vfsmount *mnt; /* mountpoint holding the cache */
76 struct dentry *store; /* Directory into which live objects go */
77 struct dentry *graveyard; /* directory into which dead objects go */
78 struct file *cachefilesd; /* manager daemon handle */
79 struct list_head volumes; /* List of volume objects */
80 struct list_head object_list; /* List of active objects */
81 spinlock_t object_list_lock; /* Lock for volumes and object_list */
82 const struct cred *cache_cred; /* security override for accessing cache */
83 struct mutex daemon_mutex; /* command serialisation mutex */
84 wait_queue_head_t daemon_pollwq; /* poll waitqueue for daemon */
85 atomic_t gravecounter; /* graveyard uniquifier */
86 atomic_t f_released; /* number of objects released lately */
87 atomic_long_t b_released; /* number of blocks released lately */
88 atomic_long_t b_writing; /* Number of blocks being written */
89 unsigned frun_percent; /* when to stop culling (% files) */
90 unsigned fcull_percent; /* when to start culling (% files) */
91 unsigned fstop_percent; /* when to stop allocating (% files) */
92 unsigned brun_percent; /* when to stop culling (% blocks) */
93 unsigned bcull_percent; /* when to start culling (% blocks) */
94 unsigned bstop_percent; /* when to stop allocating (% blocks) */
95 unsigned bsize; /* cache's block size */
119 static inline bool cachefiles_in_ondemand_mode(struct cachefiles_cache *cache) in cachefiles_in_ondemand_mode() argument