Lines Matching refs:sub
235 struct tipc_subscription *sub, *tmp;
238 list_for_each_entry_safe(sub, tmp, sub_list, sub_list) {
239 if (!s || !memcmp(s, &sub->evt.s, sizeof(*s))) {
240 tipc_sub_unsubscribe(sub);
366 struct tipc_subscription *sub;
378 sub = tipc_sub_subscribe(srv->net, s, con->conid);
379 if (!sub)
383 list_add(&sub->sub_list, &con->sub_list);
576 struct tipc_subscr sub;
580 sub.seq.type = type;
581 sub.seq.lower = lower;
582 sub.seq.upper = upper;
583 sub.timeout = TIPC_WAIT_FOREVER;
584 sub.filter = filter;
585 *(u64 *)&sub.usr_handle = (u64)port;
592 rc = tipc_conn_rcv_sub(tipc_topsrv(net), con, &sub);