Lines Matching refs:e
427 static void tipc_free_entry(struct outqueue_entry *e) in tipc_free_entry() argument
429 kfree(e->iov.iov_base); in tipc_free_entry()
430 kfree(e); in tipc_free_entry()
435 struct outqueue_entry *e, *safe; in tipc_clean_outqueues() local
438 list_for_each_entry_safe(e, safe, &con->outqueue, list) { in tipc_clean_outqueues()
439 list_del(&e->list); in tipc_clean_outqueues()
440 tipc_free_entry(e); in tipc_clean_outqueues()
448 struct outqueue_entry *e; in tipc_conn_sendmsg() local
455 e = tipc_alloc_entry(data, len); in tipc_conn_sendmsg()
456 if (!e) { in tipc_conn_sendmsg()
462 memcpy(&e->dest, addr, sizeof(struct sockaddr_tipc)); in tipc_conn_sendmsg()
465 list_add_tail(&e->list, &con->outqueue); in tipc_conn_sendmsg()
492 struct outqueue_entry *e; in tipc_send_to_sock() local
498 e = list_entry(con->outqueue.next, struct outqueue_entry, in tipc_send_to_sock()
500 if ((struct list_head *) e == &con->outqueue) in tipc_send_to_sock()
508 msg.msg_name = &e->dest; in tipc_send_to_sock()
511 ret = kernel_sendmsg(con->sock, &msg, &e->iov, 1, in tipc_send_to_sock()
512 e->iov.iov_len); in tipc_send_to_sock()
527 list_del(&e->list); in tipc_send_to_sock()
528 tipc_free_entry(e); in tipc_send_to_sock()