Lines Matching refs:kref_get
58 increment the refcount with kref_get() before passing it off::
60 kref_get(&data->refcount);
77 where a kref_put() cannot occur during the kref_get(), and the
78 structure must remain valid during the kref_get().
108 kref_get(&data->refcount);
126 any more and releasing it. The kref_get() does not require a lock,
133 incremented 2 times by kref_init() and kref_get().
144 kref_get(&data->refcount);
159 kref_get(&obj->ref);
172 and kref_get() it. That violates rule 3 because you are not already
190 kref_get(&entry->refcount);
274 kref_get_unless_zero() will return true, then use kref_get() instead.