Lines Matching refs:fscache_object
43 void fscache_objlist_add(struct fscache_object *obj) in fscache_objlist_add()
45 struct fscache_object *xobj; in fscache_objlist_add()
54 xobj = rb_entry(parent, struct fscache_object, objlist_link); in fscache_objlist_add()
73 void fscache_objlist_remove(struct fscache_object *obj) in fscache_objlist_remove()
89 static struct fscache_object *fscache_objlist_lookup(loff_t *_pos) in fscache_objlist_lookup()
91 struct fscache_object *pobj, *obj = NULL, *minobj = NULL; in fscache_objlist_lookup()
102 return (struct fscache_object *)(long)++(*_pos); in fscache_objlist_lookup()
104 return (struct fscache_object *)pos; in fscache_objlist_lookup()
106 pobj = (struct fscache_object *)pos; in fscache_objlist_lookup()
109 obj = rb_entry(p, struct fscache_object, objlist_link); in fscache_objlist_lookup()
164 struct fscache_object *obj = v; in fscache_objlist_show()