Searched defs:cachefiles_cache (Results 1 – 2 of 2) sorted by relevance
88 struct cachefiles_cache { struct89 struct fscache_cache *cache; /* Cache cookie */90 struct vfsmount *mnt; /* mountpoint holding the cache */91 struct dentry *store; /* Directory into which live objects go */92 struct dentry *graveyard; /* directory into which dead objects go */93 struct file *cachefilesd; /* manager daemon handle */94 struct list_head volumes; /* List of volume objects */95 struct list_head object_list; /* List of active objects */96 spinlock_t object_list_lock; /* Lock for volumes and object_list */97 const struct cred *cache_cred; /* security override for accessing cache */[all …]
55 struct cachefiles_cache { struct56 struct fscache_cache cache; /* FS-Cache record */57 struct vfsmount *mnt; /* mountpoint holding the cache */58 struct dentry *graveyard; /* directory into which dead objects go */59 struct file *cachefilesd; /* manager daemon handle */60 const struct cred *cache_cred; /* security override for accessing cache */61 struct mutex daemon_mutex; /* command serialisation mutex */62 wait_queue_head_t daemon_pollwq; /* poll waitqueue for daemon */63 struct rb_root active_nodes; /* active nodes (can't be culled) */64 rwlock_t active_lock; /* lock for active_nodes */[all …]