• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/net/tipc/

Lines Matching refs:tport

73 static u32 dispatch(struct tipc_port *tport, struct sk_buff *buf);
74 static void wakeupdispatch(struct tipc_port *tport);
279 struct tipc_port *tport;
291 tport = tipc_sk_port(sk);
310 tipc_disconnect(tport->ref);
321 res = tipc_deleteport(tport->ref);
515 struct tipc_port *tport = tipc_sk_port(sk);
539 if ((tport->published) ||
545 tport->conn_type = dest->addr.name.name.type;
546 tport->conn_instance = dest->addr.name.name.instance;
558 res = tipc_send2name(tport->ref,
565 res = tipc_send2port(tport->ref,
577 res = tipc_multicast(tport->ref,
595 !tport->congested);
623 struct tipc_port *tport = tipc_sk_port(sk);
644 res = tipc_send(tport->ref, m->msg_iovlen, m->msg_iov);
654 (!tport->congested || !tport->connected));
682 struct tipc_port *tport = tipc_sk_port(sk);
732 hdr_size = msg_hdr_sz(&tport->phdr);
739 bytes_to_send = tport->max_pkt - hdr_size;
816 * @tport: TIPC port associated with message
824 struct tipc_port *tport)
866 has_name = (tport->conn_type != 0);
867 anc_data[0] = tport->conn_type;
868 anc_data[1] = tport->conn_instance;
869 anc_data[2] = tport->conn_instance;
898 struct tipc_port *tport = tipc_sk_port(sk);
970 res = anc_data_recv(m, msg, tport);
999 (++tport->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
1000 tipc_acknowledge(tport->ref, tport->conn_unacked);
1025 struct tipc_port *tport = tipc_sk_port(sk);
1093 res = anc_data_recv(m, msg, tport);
1132 if (unlikely(++tport->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
1133 tipc_acknowledge(tport->ref, tport->conn_unacked);
1301 * @tport: TIPC port that received message
1309 static u32 dispatch(struct tipc_port *tport, struct sk_buff *buf)
1311 struct sock *sk = (struct sock *)tport->usr_handle;
1337 * @tport: port to wakeup
1342 static void wakeupdispatch(struct tipc_port *tport)
1344 struct sock *sk = (struct sock *)tport->usr_handle;
1598 struct tipc_port *tport = tipc_sk_port(sk);
1620 tipc_disconnect(tport->ref);
1623 tipc_shutdown(tport->ref);
1666 struct tipc_port *tport = tipc_sk_port(sk);
1683 res = tipc_set_portimportance(tport->ref, value);
1687 res = tipc_set_portunreliable(tport->ref, value);
1692 res = tipc_set_portunreturnable(tport->ref, value);
1725 struct tipc_port *tport = tipc_sk_port(sk);
1741 res = tipc_portimportance(tport->ref, &value);
1744 res = tipc_portunreliable(tport->ref, &value);
1747 res = tipc_portunreturnable(tport->ref, &value);