Lines Matching defs:refcount
186 * refcount - the number of outstanding reference to the entry. This is needed
190 * be held while changing the refcount. Since the lock must
191 * be held, there is no reason to also make refcount atomic.
204 int refcount;
218 * - the refcount field of each entry in the tree
302 entry->refcount = 1;
410 entry->refcount++;
419 int refcount = --entry->refcount;
421 WARN_ON_ONCE(refcount < 0);
422 if (refcount == 0) {