Lines Matching defs:kref
55 struct kref kref;
794 * @kref: Pointer to a kref.
796 * Called from kref_put. Back cast the kref into an event structure address.
801 lpfc_bsg_event_free(struct kref *kref)
803 struct lpfc_bsg_event *evt = container_of(kref, struct lpfc_bsg_event,
804 kref);
828 * lpfc_bsg_event_ref - increments the kref for an event
834 kref_get(&evt->kref);
844 kref_put(&evt->kref, lpfc_bsg_event_free);
869 kref_init(&evt->kref);