Lines Matching refs:fscache_object
42 void fscache_objlist_add(struct fscache_object *obj) in fscache_objlist_add()
44 struct fscache_object *xobj; in fscache_objlist_add()
53 xobj = rb_entry(parent, struct fscache_object, objlist_link); in fscache_objlist_add()
72 void fscache_objlist_remove(struct fscache_object *obj) in fscache_objlist_remove()
88 static struct fscache_object *fscache_objlist_lookup(loff_t *_pos) in fscache_objlist_lookup()
90 struct fscache_object *pobj, *obj = NULL, *minobj = NULL; in fscache_objlist_lookup()
101 return (struct fscache_object *)(long)++(*_pos); in fscache_objlist_lookup()
103 return (struct fscache_object *)pos; in fscache_objlist_lookup()
105 pobj = (struct fscache_object *)pos; in fscache_objlist_lookup()
108 obj = rb_entry(p, struct fscache_object, objlist_link); in fscache_objlist_lookup()
163 struct fscache_object *obj = v; in fscache_objlist_show()