Lines Matching defs:cachefiles_cache

50 struct cachefiles_cache {  struct
51 struct fscache_cache cache; /* FS-Cache record */
52 struct vfsmount *mnt; /* mountpoint holding the cache */
53 struct dentry *graveyard; /* directory into which dead objects go */
54 struct file *cachefilesd; /* manager daemon handle */
55 const struct cred *cache_cred; /* security override for accessing cache */
56 struct mutex daemon_mutex; /* command serialisation mutex */
57 wait_queue_head_t daemon_pollwq; /* poll waitqueue for daemon */
58 struct rb_root active_nodes; /* active nodes (can't be culled) */
59 rwlock_t active_lock; /* lock for active_nodes */
60 atomic_t gravecounter; /* graveyard uniquifier */
61 unsigned frun_percent; /* when to stop culling (% files) */
62 unsigned fcull_percent; /* when to start culling (% files) */
63 unsigned fstop_percent; /* when to stop allocating (% files) */
64 unsigned brun_percent; /* when to stop culling (% blocks) */
65 unsigned bcull_percent; /* when to start culling (% blocks) */
66 unsigned bstop_percent; /* when to stop allocating (% blocks) */
67 unsigned bsize; /* cache's block size */
68 unsigned bshift; /* min(ilog2(PAGE_SIZE / bsize), 0) */
69 uint64_t frun; /* when to stop culling */
70 uint64_t fcull; /* when to start culling */
71 uint64_t fstop; /* when to stop allocating */
72 sector_t brun; /* when to stop culling */
73 sector_t bcull; /* when to start culling */
74 sector_t bstop; /* when to stop allocating */
75 unsigned long flags;
80 char *rootdirname; /* name of cache root directory */
81 char *secctx; /* LSM security context */
82 char *tag; /* cache binding tag */