• Home
  • Raw
  • Download

Lines Matching full:smt

28 static const char ID_sccs[] = "@(#)smt.c	2.43 98/11/23 (C) SK " ;
153 * init SMT agent
194 * SMT task
205 DB_SMT("SMT agent task"); in smt_agent_task()
398 DB_SMT("SMT : UNA expired"); in smt_event()
421 DB_SMT("SMT : DNA expired"); in smt_event()
506 DB_SMT("SMT : received packet [%s] at 0x%p", in smt_received_pack()
508 DB_SMT("SMT : version %d, class %s", in smt_received_pack()
527 DB_SMT("SMT : ignoring NSA with A-indicator set from %s", in smt_received_pack()
543 * check SMT version in smt_received_pack()
559 DB_SMT("SMT : version = %d, dest = %s", in smt_received_pack()
567 DB_SMT("SMT: info length error, len = %d", sm->smt_len); in smt_received_pack()
575 DB_SMT("SMT: NIF with para problem, ignoring"); in smt_received_pack()
589 DB_SMT("SMT : updated my UNA = %s", in smt_received_pack()
619 DB_SMT("SMT : replying to NIF request %s", in smt_received_pack()
628 DB_SMT("SMT : received NIF response from %s", in smt_received_pack()
632 DB_SMT("SMT : duplicate address"); in smt_received_pack()
647 DB_SMT("SMT : updated my DNA"); in smt_received_pack()
674 DB_SMT("SMT : NIF test TID ok"); in smt_received_pack()
677 DB_SMT("SMT : expected TID %lx, got %x", in smt_received_pack()
689 DB_SMT("SMT : replying to SIF Config request from %s", in smt_received_pack()
696 DB_SMT("SMT : replying to SIF Operation request from %s", in smt_received_pack()
704 DB_SMT("SMT: received ECF reply from %s", in smt_received_pack()
707 DB_SMT("SMT: ECHODATA missing"); in smt_received_pack()
711 DB_SMT("SMT : ECF test TID ok"); in smt_received_pack()
714 DB_SMT("SMT : ECF test UNA ok"); in smt_received_pack()
717 DB_SMT("SMT : ECF test DNA ok"); in smt_received_pack()
720 DB_SMT("SMT : expected TID %lx, got %x", in smt_received_pack()
729 DB_SMT("SMT: ECF with para problem,sending RDF"); in smt_received_pack()
734 DB_SMT("SMT - sending ECF reply to %s", in smt_received_pack()
767 DB_SMT("SMT - received ESF, sending RDF"); in smt_received_pack()
785 DB_SMT("SMT: ignoring PMF-SET with I/G set"); in smt_received_pack()
801 DB_SMT("SMT : class = %d, send RDF to %s", in smt_received_pack()
809 DB_SMT("SMT: discarding invalid frame, reason = %d", illegal); in smt_received_pack()
827 * send SMT frame
871 DB_SMT("SMT: sending RDF to %s,reason = 0x%x", in smt_send_rdf()
876 * note: get framelength from MAC length, NOT from SMT header in smt_send_rdf()
877 * smt header length is included in sm_len in smt_send_rdf()
884 rdf->smt.smt_tid = sm->smt_tid ; /* use TID from sm */ in smt_send_rdf()
885 rdf->smt.smt_dest = sm->smt_source ; /* set dest = source */ in smt_send_rdf()
922 rdf->smt.smt_len += len ; in smt_send_rdf()
951 nif->smt.smt_dest = *dest ; /* destination address */ in smt_send_nif()
952 nif->smt.smt_tid = tid ; /* transaction ID */ in smt_send_nif()
1014 ecf->smt.smt_dest = *dest ; /* destination address */ in smt_send_ecf()
1015 ecf->smt.smt_tid = tid ; /* transaction ID */ in smt_send_ecf()
1046 sif->smt.smt_dest = *dest ; /* destination address */ in smt_send_sif_config()
1047 sif->smt.smt_tid = tid ; /* transaction ID */ in smt_send_sif_config()
1096 sif->smt.smt_dest = *dest ; /* destination address */ in smt_send_sif_operation()
1097 sif->smt.smt_tid = tid ; /* transaction ID */ in smt_send_sif_operation()
1103 * get and initialize SMT frame
1109 struct smt_header *smt ; in smt_build_frame() local
1120 smt = smtod(mb, struct smt_header *) ; in smt_build_frame()
1121 smt->smt_dest = fddi_broadcast ; /* set dest = broadcast */ in smt_build_frame()
1122 smt->smt_class = class ; in smt_build_frame()
1123 smt->smt_type = type ; in smt_build_frame()
1129 smt->smt_version = SMT_VID ; in smt_build_frame()
1132 smt->smt_version = SMT_VID_2 ; in smt_build_frame()
1135 smt->smt_tid = smt_get_tid(smc) ; /* set transaction ID */ in smt_build_frame()
1136 smt->smt_pad = 0 ; in smt_build_frame()
1137 smt->smt_len = length - sizeof(struct smt_header) ; in smt_build_frame()
1143 struct smt_header *smt ; in smt_add_frame_len() local
1145 smt = smtod(mb, struct smt_header *) ; in smt_add_frame_len()
1146 smt->smt_len += len ; in smt_add_frame_len()
1392 * timer values are represented in SMT as 2's complement numbers in smt_fill_mac_status()
1655 DB_SMT("SMT: smt_check_para - missing para %hx", *p); in smt_check_para()
1681 DB_SMT("SMT : sm_to_para - length error %d", plen); in sm_to_para()
1685 DB_SMT("SMT : sm_to_para - odd length %d", plen); in sm_to_para()
1704 struct smt_header *smt ;
1714 smt = smtod(mb, struct smt_header *) ;
1715 smt->smt_dest = *dest ;
1716 smt->smt_source = smc->mib.m[MAC0].fddiMACSMTAddress ;
1939 DB_SMT("SMT: action %d code %d", class, code); in smt_action()