Lines Matching refs:kref_get
37 increment the refcount with kref_get() before passing it off:
38 kref_get(&data->refcount);
52 where a kref_put() cannot occur during the kref_get(), and the
53 structure must remain valid during the kref_get().
83 kref_get(&data->refcount);
100 any more and releasing it. The kref_get() does not require a lock,
114 kref_get(&data->refcount);
129 kref_get(&obj->ref);
142 and kref_get() it. That violates rule 3 because you are not already
160 kref_get(&entry->refcount);
254 kref_get_unless_zero() will return true, then use kref_get() instead.