child_ep         1336 drivers/infiniband/hw/cxgb3/iwch_cm.c 	struct iwch_ep *child_ep, *parent_ep = ctx;
child_ep         1378 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep = alloc_ep(sizeof(*child_ep), GFP_KERNEL);
child_ep         1379 drivers/infiniband/hw/cxgb3/iwch_cm.c 	if (!child_ep) {
child_ep         1385 drivers/infiniband/hw/cxgb3/iwch_cm.c 	state_set(&child_ep->com, CONNECTING);
child_ep         1386 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->com.tdev = tdev;
child_ep         1387 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->com.cm_id = NULL;
child_ep         1388 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->com.local_addr.sin_family = AF_INET;
child_ep         1389 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->com.local_addr.sin_port = req->local_port;
child_ep         1390 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->com.local_addr.sin_addr.s_addr = req->local_ip;
child_ep         1391 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->com.remote_addr.sin_family = AF_INET;
child_ep         1392 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->com.remote_addr.sin_port = req->peer_port;
child_ep         1393 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->com.remote_addr.sin_addr.s_addr = req->peer_ip;
child_ep         1395 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->parent_ep = parent_ep;
child_ep         1396 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->tos = G_PASS_OPEN_TOS(ntohl(req->tos_tid));
child_ep         1397 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->l2t = l2t;
child_ep         1398 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->dst = dst;
child_ep         1399 drivers/infiniband/hw/cxgb3/iwch_cm.c 	child_ep->hwtid = hwtid;
child_ep         1400 drivers/infiniband/hw/cxgb3/iwch_cm.c 	timer_setup(&child_ep->timer, ep_timeout, 0);
child_ep         1401 drivers/infiniband/hw/cxgb3/iwch_cm.c 	cxgb3_insert_tid(tdev, &t3c_client, child_ep, hwtid);
child_ep         1402 drivers/infiniband/hw/cxgb3/iwch_cm.c 	accept_cr(child_ep, req->peer_ip, skb);
child_ep         2515 drivers/infiniband/hw/cxgb4/cm.c 	struct c4iw_ep *child_ep = NULL, *parent_ep;
child_ep         2575 drivers/infiniband/hw/cxgb4/cm.c 	child_ep = alloc_ep(sizeof(*child_ep), GFP_KERNEL);
child_ep         2576 drivers/infiniband/hw/cxgb4/cm.c 	if (!child_ep) {
child_ep         2582 drivers/infiniband/hw/cxgb4/cm.c 	err = import_ep(child_ep, iptype, peer_ip, dst, dev, false,
child_ep         2587 drivers/infiniband/hw/cxgb4/cm.c 		kfree(child_ep);
child_ep         2594 drivers/infiniband/hw/cxgb4/cm.c 	if (peer_mss && child_ep->mtu > (peer_mss + hdrs))
child_ep         2595 drivers/infiniband/hw/cxgb4/cm.c 		child_ep->mtu = peer_mss + hdrs;
child_ep         2597 drivers/infiniband/hw/cxgb4/cm.c 	skb_queue_head_init(&child_ep->com.ep_skb_list);
child_ep         2598 drivers/infiniband/hw/cxgb4/cm.c 	if (alloc_ep_skb_list(&child_ep->com.ep_skb_list, CN_MAX_CON_BUF))
child_ep         2601 drivers/infiniband/hw/cxgb4/cm.c 	state_set(&child_ep->com, CONNECTING);
child_ep         2602 drivers/infiniband/hw/cxgb4/cm.c 	child_ep->com.dev = dev;
child_ep         2603 drivers/infiniband/hw/cxgb4/cm.c 	child_ep->com.cm_id = NULL;
child_ep         2607 drivers/infiniband/hw/cxgb4/cm.c 			&child_ep->com.local_addr;
child_ep         2613 drivers/infiniband/hw/cxgb4/cm.c 		sin = (struct sockaddr_in *)&child_ep->com.local_addr;
child_ep         2619 drivers/infiniband/hw/cxgb4/cm.c 		sin = (struct sockaddr_in *)&child_ep->com.remote_addr;
child_ep         2624 drivers/infiniband/hw/cxgb4/cm.c 		sin6 = (struct sockaddr_in6 *)&child_ep->com.local_addr;
child_ep         2629 drivers/infiniband/hw/cxgb4/cm.c 		sin6 = (struct sockaddr_in6 *)&child_ep->com.local_addr;
child_ep         2635 drivers/infiniband/hw/cxgb4/cm.c 		sin6 = (struct sockaddr_in6 *)&child_ep->com.remote_addr;
child_ep         2642 drivers/infiniband/hw/cxgb4/cm.c 	child_ep->parent_ep = parent_ep;
child_ep         2643 drivers/infiniband/hw/cxgb4/cm.c 	child_ep->tos = tos;
child_ep         2644 drivers/infiniband/hw/cxgb4/cm.c 	child_ep->dst = dst;
child_ep         2645 drivers/infiniband/hw/cxgb4/cm.c 	child_ep->hwtid = hwtid;
child_ep         2648 drivers/infiniband/hw/cxgb4/cm.c 		 child_ep->tx_chan, child_ep->smac_idx, child_ep->rss_qid);
child_ep         2650 drivers/infiniband/hw/cxgb4/cm.c 	timer_setup(&child_ep->timer, ep_timeout, 0);
child_ep         2651 drivers/infiniband/hw/cxgb4/cm.c 	cxgb4_insert_tid(t, child_ep, hwtid,
child_ep         2652 drivers/infiniband/hw/cxgb4/cm.c 			 child_ep->com.local_addr.ss_family);
child_ep         2653 drivers/infiniband/hw/cxgb4/cm.c 	insert_ep_tid(child_ep);
child_ep         2654 drivers/infiniband/hw/cxgb4/cm.c 	if (accept_cr(child_ep, skb, req)) {
child_ep         2656 drivers/infiniband/hw/cxgb4/cm.c 		release_ep_resources(child_ep);
child_ep         2658 drivers/infiniband/hw/cxgb4/cm.c 		set_bit(PASS_ACCEPT_REQ, &child_ep->com.history);
child_ep         2661 drivers/infiniband/hw/cxgb4/cm.c 		sin6 = (struct sockaddr_in6 *)&child_ep->com.local_addr;
child_ep         2662 drivers/infiniband/hw/cxgb4/cm.c 		cxgb4_clip_get(child_ep->com.dev->rdev.lldi.ports[0],
child_ep         2667 drivers/infiniband/hw/cxgb4/cm.c 	c4iw_put_ep(&child_ep->com);