Lines Matching full:smt
145 * init SMT agent
186 * SMT task
197 DB_SMT("SMT agent task"); in smt_agent_task()
390 DB_SMT("SMT : UNA expired"); in smt_event()
413 DB_SMT("SMT : DNA expired"); in smt_event()
498 DB_SMT("SMT : received packet [%s] at 0x%p", in smt_received_pack()
500 DB_SMT("SMT : version %d, class %s", in smt_received_pack()
519 DB_SMT("SMT : ignoring NSA with A-indicator set from %pM", in smt_received_pack()
535 * check SMT version in smt_received_pack()
551 DB_SMT("SMT : version = %d, dest = %pM", in smt_received_pack()
559 DB_SMT("SMT: info length error, len = %d", sm->smt_len); in smt_received_pack()
567 DB_SMT("SMT: NIF with para problem, ignoring"); in smt_received_pack()
581 DB_SMT("SMT : updated my UNA = %pM", in smt_received_pack()
611 DB_SMT("SMT : replying to NIF request %pM", in smt_received_pack()
620 DB_SMT("SMT : received NIF response from %pM", in smt_received_pack()
624 DB_SMT("SMT : duplicate address"); in smt_received_pack()
639 DB_SMT("SMT : updated my DNA"); in smt_received_pack()
666 DB_SMT("SMT : NIF test TID ok"); in smt_received_pack()
669 DB_SMT("SMT : expected TID %lx, got %x", in smt_received_pack()
681 DB_SMT("SMT : replying to SIF Config request from %pM", in smt_received_pack()
688 DB_SMT("SMT : replying to SIF Operation request from %pM", in smt_received_pack()
696 DB_SMT("SMT: received ECF reply from %pM", in smt_received_pack()
699 DB_SMT("SMT: ECHODATA missing"); in smt_received_pack()
703 DB_SMT("SMT : ECF test TID ok"); in smt_received_pack()
706 DB_SMT("SMT : ECF test UNA ok"); in smt_received_pack()
709 DB_SMT("SMT : ECF test DNA ok"); in smt_received_pack()
712 DB_SMT("SMT : expected TID %lx, got %x", in smt_received_pack()
721 DB_SMT("SMT: ECF with para problem,sending RDF"); in smt_received_pack()
726 DB_SMT("SMT - sending ECF reply to %pM", in smt_received_pack()
759 DB_SMT("SMT - received ESF, sending RDF"); in smt_received_pack()
777 DB_SMT("SMT: ignoring PMF-SET with I/G set"); in smt_received_pack()
793 DB_SMT("SMT : class = %d, send RDF to %pM", in smt_received_pack()
801 DB_SMT("SMT: discarding invalid frame, reason = %d", illegal); in smt_received_pack()
819 * send SMT frame
863 DB_SMT("SMT: sending RDF to %pM,reason = 0x%x", in smt_send_rdf()
868 * note: get framelength from MAC length, NOT from SMT header in smt_send_rdf()
869 * smt header length is included in sm_len in smt_send_rdf()
876 rdf->smt.smt_tid = sm->smt_tid ; /* use TID from sm */ in smt_send_rdf()
877 rdf->smt.smt_dest = sm->smt_source ; /* set dest = source */ in smt_send_rdf()
914 rdf->smt.smt_len += len ; in smt_send_rdf()
943 nif->smt.smt_dest = *dest ; /* destination address */ in smt_send_nif()
944 nif->smt.smt_tid = tid ; /* transaction ID */ in smt_send_nif()
1006 ecf->smt.smt_dest = *dest ; /* destination address */ in smt_send_ecf()
1007 ecf->smt.smt_tid = tid ; /* transaction ID */ in smt_send_ecf()
1038 sif->smt.smt_dest = *dest ; /* destination address */ in smt_send_sif_config()
1039 sif->smt.smt_tid = tid ; /* transaction ID */ in smt_send_sif_config()
1088 sif->smt.smt_dest = *dest ; /* destination address */ in smt_send_sif_operation()
1089 sif->smt.smt_tid = tid ; /* transaction ID */ in smt_send_sif_operation()
1095 * get and initialize SMT frame
1101 struct smt_header *smt ; in smt_build_frame() local
1112 smt = smtod(mb, struct smt_header *) ; in smt_build_frame()
1113 smt->smt_dest = fddi_broadcast ; /* set dest = broadcast */ in smt_build_frame()
1114 smt->smt_class = class ; in smt_build_frame()
1115 smt->smt_type = type ; in smt_build_frame()
1121 smt->smt_version = SMT_VID ; in smt_build_frame()
1124 smt->smt_version = SMT_VID_2 ; in smt_build_frame()
1127 smt->smt_tid = smt_get_tid(smc) ; /* set transaction ID */ in smt_build_frame()
1128 smt->smt_pad = 0 ; in smt_build_frame()
1129 smt->smt_len = length - sizeof(struct smt_header) ; in smt_build_frame()
1135 struct smt_header *smt ; in smt_add_frame_len() local
1137 smt = smtod(mb, struct smt_header *) ; in smt_add_frame_len()
1138 smt->smt_len += len ; in smt_add_frame_len()
1384 * timer values are represented in SMT as 2's complement numbers in smt_fill_mac_status()
1648 DB_SMT("SMT: smt_check_para - missing para %hx", *p); in smt_check_para()
1674 DB_SMT("SMT : sm_to_para - length error %d", plen); in sm_to_para()
1678 DB_SMT("SMT : sm_to_para - odd length %d", plen); in sm_to_para()
1697 struct smt_header *smt ;
1707 smt = smtod(mb, struct smt_header *) ;
1708 smt->smt_dest = *dest ;
1709 smt->smt_source = smc->mib.m[MAC0].fddiMACSMTAddress ;
1910 DB_SMT("SMT: action %d code %d", class, code); in smt_action()