Skip to content

Commit a46471b

Browse files
committed
Fix counting of packets in transmit queue.
1 parent 1a2de05 commit a46471b

File tree

1 file changed

+31
-6
lines changed

1 file changed

+31
-6
lines changed

tq.c

+31-6
Original file line numberDiff line numberDiff line change
@@ -930,11 +930,17 @@ static int tq_is_empty (int chan)
930930
*
931931
*--------------------------------------------------------------------*/
932932

933+
//#define DEBUG2 1
934+
935+
933936
int tq_count (int chan, int prio, char *source, char *dest, int bytes)
934937
{
935938

936-
packet_t pp;
937-
int n;
939+
940+
#if DEBUG2
941+
text_color_set(DW_COLOR_DEBUG);
942+
dw_printf ("tq_count(chan=%d, prio=%d, source=\"%s\", dest=\"%s\", bytes=%d)\n", chan, prio, source, dest, bytes);
943+
#endif
938944

939945
if (prio == -1) {
940946
return (tq_count(chan, TQ_PRIO_0_HI, source, dest, bytes)
@@ -950,26 +956,44 @@ int tq_count (int chan, int prio, char *source, char *dest, int bytes)
950956
}
951957

952958
if (queue_head[chan][prio] == 0) {
959+
#if DEBUG2
960+
text_color_set(DW_COLOR_DEBUG);
961+
dw_printf ("tq_count: queue chan %d, prio %d is empty, returning 0.\n", chan, prio);
962+
#endif
953963
return (0);
954964
}
955965

956966
// Don't want lists being rearranged while we are traversing them.
957967

958968
dw_mutex_lock (&tq_mutex);
959969

960-
n = 0;
961-
pp = queue_head[chan][prio];
970+
int n = 0; // Result. Number of bytes or packets.
971+
packet_t pp = queue_head[chan][prio];;
972+
962973
while (pp != NULL) {
974+
if (ax25_get_num_addr(pp) >= AX25_MIN_ADDRS) {
975+
// Consider only real packets.
976+
963977
int count_it = 1;
964978

965979
if (source != NULL && *source != '\0') {
966980
char frame_source[AX25_MAX_ADDR_LEN];
967981
ax25_get_addr_with_ssid (pp, AX25_SOURCE, frame_source);
982+
#if DEBUG2
983+
// I'm cringing at the thought of printing while in a critical region. But it's only for temp debug. :-(
984+
text_color_set(DW_COLOR_DEBUG);
985+
dw_printf ("tq_count: compare to frame source %s\n", frame_source);
986+
#endif
968987
if (strcmp(source,frame_source) != 0) count_it = 0;
969988
}
970989
if (count_it && dest != NULL && *dest != '\0') {
971990
char frame_dest[AX25_MAX_ADDR_LEN];
972991
ax25_get_addr_with_ssid (pp, AX25_DESTINATION, frame_dest);
992+
#if DEBUG2
993+
// I'm cringing at the thought of printing while in a critical region. But it's only for debug debug. :-(
994+
text_color_set(DW_COLOR_DEBUG);
995+
dw_printf ("tq_count: compare to frame destination %s\n", frame_dest);
996+
#endif
973997
if (strcmp(dest,frame_dest) != 0) count_it = 0;
974998
}
975999

@@ -981,12 +1005,13 @@ int tq_count (int chan, int prio, char *source, char *dest, int bytes)
9811005
n++;
9821006
}
9831007
}
984-
pp = ax25_get_nextp(pp);
1008+
}
1009+
pp = ax25_get_nextp(pp);
9851010
}
9861011

9871012
dw_mutex_unlock (&tq_mutex);
9881013

989-
#if DEBUG
1014+
#if DEBUG2
9901015
text_color_set(DW_COLOR_DEBUG);
9911016
dw_printf ("tq_count(%d, %d, \"%s\", \"%s\", %d) returns %d\n", chan, prio, source, dest, bytes, n);
9921017
#endif

0 commit comments

Comments
 (0)