Skip to content

Commit

Permalink
fixup! gnrc_sixlowpan_frag_sfr: add support for queue-based ECN
Browse files Browse the repository at this point in the history
  • Loading branch information
miri64 committed Mar 12, 2021
1 parent 7fa1970 commit b944fb3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ static void _6lo_dispatch_send(gnrc_pktsnip_t *frame, void *ctx, unsigned page)
assert(frame->type == GNRC_NETTYPE_NETIF);
assert(frame->next->type == GNRC_NETTYPE_SIXLOWPAN);
queue_state = msg_avail_thread(netif->pid);
queue_size = msg_queue_len(netif->pid);
queue_size = msg_queue_capacity(netif->pid);
assert(queue_state > 0);

if ((queue_state * CONFIG_GNRC_SIXLOWPAN_SFR_ECN_NETIF_DEN) >
Expand Down

0 comments on commit b944fb3

Please sign in to comment.