Lines Matching refs:fscache_object
46 void fscache_objlist_add(struct fscache_object *obj) in fscache_objlist_add()
48 struct fscache_object *xobj; in fscache_objlist_add()
57 xobj = rb_entry(parent, struct fscache_object, objlist_link); in fscache_objlist_add()
76 void fscache_objlist_remove(struct fscache_object *obj) in fscache_objlist_remove()
92 static struct fscache_object *fscache_objlist_lookup(loff_t *_pos) in fscache_objlist_lookup()
94 struct fscache_object *pobj, *obj = NULL, *minobj = NULL; in fscache_objlist_lookup()
105 return (struct fscache_object *)(long)++(*_pos); in fscache_objlist_lookup()
107 return (struct fscache_object *)pos; in fscache_objlist_lookup()
109 pobj = (struct fscache_object *)pos; in fscache_objlist_lookup()
112 obj = rb_entry(p, struct fscache_object, objlist_link); in fscache_objlist_lookup()
167 struct fscache_object *obj = v; in fscache_objlist_show()