Lines Matching refs:tipc_conn

48 #define sock2con(x) ((struct tipc_conn *)(x)->sk_user_data)
65 struct tipc_conn { struct
72 int (*rx_action) (struct tipc_conn *con); argument
88 static void tipc_clean_outqueues(struct tipc_conn *con); argument
92 struct tipc_conn *con = container_of(kref, struct tipc_conn, kref); in tipc_conn_kref_release()
113 static void conn_put(struct tipc_conn *con) in conn_put()
118 static void conn_get(struct tipc_conn *con) in conn_get()
123 static struct tipc_conn *tipc_conn_lookup(struct tipc_server *s, int conid) in tipc_conn_lookup()
125 struct tipc_conn *con; in tipc_conn_lookup()
137 struct tipc_conn *con; in sock_data_ready()
151 struct tipc_conn *con; in sock_write_space()
163 static void tipc_register_callbacks(struct socket *sock, struct tipc_conn *con) in tipc_register_callbacks()
178 static void tipc_unregister_callbacks(struct tipc_conn *con) in tipc_unregister_callbacks()
187 static void tipc_close_conn(struct tipc_conn *con) in tipc_close_conn()
214 static struct tipc_conn *tipc_alloc_conn(struct tipc_server *s) in tipc_alloc_conn()
216 struct tipc_conn *con; in tipc_alloc_conn()
219 con = kzalloc(sizeof(struct tipc_conn), GFP_ATOMIC); in tipc_alloc_conn()
246 static int tipc_receive_from_sock(struct tipc_conn *con) in tipc_receive_from_sock()
288 static int tipc_accept_from_sock(struct tipc_conn *con) in tipc_accept_from_sock()
293 struct tipc_conn *newcon; in tipc_accept_from_sock()
322 static struct socket *tipc_create_listen_sock(struct tipc_conn *con) in tipc_create_listen_sock()
387 struct tipc_conn *con; in tipc_open_listening_sock()
433 static void tipc_clean_outqueues(struct tipc_conn *con) in tipc_clean_outqueues()
449 struct tipc_conn *con; in tipc_conn_sendmsg()
479 struct tipc_conn *con; in tipc_conn_terminate()
488 static void tipc_send_to_sock(struct tipc_conn *con) in tipc_send_to_sock()
540 struct tipc_conn *con = container_of(work, struct tipc_conn, rwork); in tipc_recv_work()
558 struct tipc_conn *con = container_of(work, struct tipc_conn, swork); in tipc_send_work()
619 struct tipc_conn *con; in tipc_server_stop()