Lines Matching refs:e
423 static void tipc_free_entry(struct outqueue_entry *e) in tipc_free_entry() argument
425 kfree(e->iov.iov_base); in tipc_free_entry()
426 kfree(e); in tipc_free_entry()
431 struct outqueue_entry *e, *safe; in tipc_clean_outqueues() local
434 list_for_each_entry_safe(e, safe, &con->outqueue, list) { in tipc_clean_outqueues()
435 list_del(&e->list); in tipc_clean_outqueues()
436 tipc_free_entry(e); in tipc_clean_outqueues()
444 struct outqueue_entry *e; in tipc_conn_sendmsg() local
451 e = tipc_alloc_entry(data, len); in tipc_conn_sendmsg()
452 if (!e) { in tipc_conn_sendmsg()
458 memcpy(&e->dest, addr, sizeof(struct sockaddr_tipc)); in tipc_conn_sendmsg()
461 list_add_tail(&e->list, &con->outqueue); in tipc_conn_sendmsg()
488 struct outqueue_entry *e; in tipc_send_to_sock() local
494 e = list_entry(con->outqueue.next, struct outqueue_entry, in tipc_send_to_sock()
496 if ((struct list_head *) e == &con->outqueue) in tipc_send_to_sock()
504 msg.msg_name = &e->dest; in tipc_send_to_sock()
507 ret = kernel_sendmsg(con->sock, &msg, &e->iov, 1, in tipc_send_to_sock()
508 e->iov.iov_len); in tipc_send_to_sock()
523 list_del(&e->list); in tipc_send_to_sock()
524 tipc_free_entry(e); in tipc_send_to_sock()