Lines Matching refs:t
50 struct aoetgt *t = d->targets[0]; in aoedisk_show_mac() local
52 if (t == NULL) in aoedisk_show_mac()
54 return sysfs_emit(page, "%pm\n", t->addr); in aoedisk_show_mac()
62 struct aoetgt **t, **te; in aoedisk_show_netif() local
69 t = d->targets; in aoedisk_show_netif()
70 te = t + d->ntargets; in aoedisk_show_netif()
71 for (; t < te && *t; t++) { in aoedisk_show_netif()
72 ifp = (*t)->ifs; in aoedisk_show_netif()
114 struct aoetgt **t, **te; in aoe_debugfs_show() local
129 t = d->targets; in aoe_debugfs_show()
130 te = t + d->ntargets; in aoe_debugfs_show()
131 for (; t < te && *t; t++) { in aoe_debugfs_show()
133 seq_printf(s, "falloc: %ld\n", (*t)->falloc); in aoe_debugfs_show()
135 list_empty(&(*t)->ffree) ? NULL : (*t)->ffree.next); in aoe_debugfs_show()
136 seq_printf(s, "%pm:%d:%d:%d\n", (*t)->addr, (*t)->nout, in aoe_debugfs_show()
137 (*t)->maxout, (*t)->nframes); in aoe_debugfs_show()
138 seq_printf(s, "\tssthresh:%d\n", (*t)->ssthresh); in aoe_debugfs_show()
139 seq_printf(s, "\ttaint:%d\n", (*t)->taint); in aoe_debugfs_show()
140 seq_printf(s, "\tr:%d\n", (*t)->rpkts); in aoe_debugfs_show()
141 seq_printf(s, "\tw:%d\n", (*t)->wpkts); in aoe_debugfs_show()
142 ifp = (*t)->ifs; in aoe_debugfs_show()
143 ife = ifp + ARRAY_SIZE((*t)->ifs); in aoe_debugfs_show()