Lines Matching refs:fscache_object
48 void fscache_objlist_add(struct fscache_object *obj) in fscache_objlist_add()
50 struct fscache_object *xobj; in fscache_objlist_add()
59 xobj = rb_entry(parent, struct fscache_object, objlist_link); in fscache_objlist_add()
78 void fscache_objlist_remove(struct fscache_object *obj) in fscache_objlist_remove()
94 static struct fscache_object *fscache_objlist_lookup(loff_t *_pos) in fscache_objlist_lookup()
96 struct fscache_object *pobj, *obj = NULL, *minobj = NULL; in fscache_objlist_lookup()
107 return (struct fscache_object *)(long)++(*_pos); in fscache_objlist_lookup()
109 return (struct fscache_object *)pos; in fscache_objlist_lookup()
111 pobj = (struct fscache_object *)pos; in fscache_objlist_lookup()
114 obj = rb_entry(p, struct fscache_object, objlist_link); in fscache_objlist_lookup()
169 struct fscache_object *obj = v; in fscache_objlist_show()