• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/cxgb3/

Lines Matching refs:t3c_tid

499 	void *ctx = p->t3c_tid.ctx;
658 p->t3c_tid.ctx = ctx;
659 p->t3c_tid.client = client;
680 p->t3c_tid.ctx = ctx;
681 p->t3c_tid.client = client;
740 struct t3c_tid_entry *t3c_tid;
742 t3c_tid = lookup_atid(&(T3C_DATA(dev))->tid_maps, atid);
743 if (t3c_tid && t3c_tid->ctx && t3c_tid->client &&
744 t3c_tid->client->handlers &&
745 t3c_tid->client->handlers[CPL_ACT_OPEN_RPL]) {
746 return t3c_tid->client->handlers[CPL_ACT_OPEN_RPL] (dev, skb,
747 t3c_tid->
760 struct t3c_tid_entry *t3c_tid;
762 t3c_tid = lookup_stid(&(T3C_DATA(dev))->tid_maps, stid);
763 if (t3c_tid && t3c_tid->ctx && t3c_tid->client->handlers &&
764 t3c_tid->client->handlers[p->opcode]) {
765 return t3c_tid->client->handlers[p->opcode] (dev, skb,
766 t3c_tid->ctx);
778 struct t3c_tid_entry *t3c_tid;
780 t3c_tid = lookup_tid(&(T3C_DATA(dev))->tid_maps, hwtid);
781 if (t3c_tid && t3c_tid->ctx && t3c_tid->client->handlers &&
782 t3c_tid->client->handlers[p->opcode]) {
783 return t3c_tid->client->handlers[p->opcode]
784 (dev, skb, t3c_tid->ctx);
797 struct t3c_tid_entry *t3c_tid;
807 t3c_tid = lookup_stid(t, stid);
808 if (t3c_tid && t3c_tid->ctx && t3c_tid->client->handlers &&
809 t3c_tid->client->handlers[CPL_PASS_ACCEPT_REQ]) {
810 return t3c_tid->client->handlers[CPL_PASS_ACCEPT_REQ]
811 (dev, skb, t3c_tid->ctx);
845 struct t3c_tid_entry *t3c_tid;
847 t3c_tid = lookup_tid(&(T3C_DATA(dev))->tid_maps, hwtid);
848 if (t3c_tid && t3c_tid->ctx && t3c_tid->client->handlers &&
849 t3c_tid->client->handlers[p->opcode]) {
850 return t3c_tid->client->handlers[p->opcode]
851 (dev, skb, t3c_tid->ctx);
891 struct t3c_tid_entry *t3c_tid;
901 t3c_tid = lookup_atid(t, atid);
902 if (t3c_tid && t3c_tid->ctx && t3c_tid->client->handlers &&
903 t3c_tid->client->handlers[CPL_ACT_ESTABLISH]) {
904 return t3c_tid->client->handlers[CPL_ACT_ESTABLISH]
905 (dev, skb, t3c_tid->ctx);
945 struct t3c_tid_entry *t3c_tid;
947 t3c_tid = lookup_tid(&(T3C_DATA(dev))->tid_maps, hwtid);
948 if (t3c_tid && t3c_tid->ctx && t3c_tid->client->handlers &&
949 t3c_tid->client->handlers[opcode]) {
950 return t3c_tid->client->handlers[opcode] (dev, skb,
951 t3c_tid->ctx);