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,
140 kref_get(&data->refcount);
155 kref_get(&obj->ref);
168 and kref_get() it. That violates rule 3 because you are not already
186 kref_get(&entry->refcount);
270 kref_get_unless_zero() will return true, then use kref_get() instead.