Lines Matching defs:kref
81 * @kref: reference counter to connection object
94 struct kref kref;
124 static void tipc_conn_kref_release(struct kref *kref)
126 struct tipc_conn *con = container_of(kref, struct tipc_conn, kref);
148 kref_put(&con->kref, tipc_conn_kref_release);
153 kref_get(&con->kref);
189 kref_init(&con->kref);
222 if (!connected(con) || !kref_get_unless_zero(&con->kref))