diff options
author | Donald Sharp <sharpd@nvidia.com> | 2022-08-11 19:40:50 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2022-08-11 19:40:50 +0200 |
commit | 4e5c95be91728c40b6afd789d229994cc9a7c9a7 (patch) | |
tree | c37d121a5b22becf910e768723298cff1dbcc843 /ospf6d | |
parent | ospfd: Add how many packets the interface has queued to send (diff) | |
download | frr-4e5c95be91728c40b6afd789d229994cc9a7c9a7.tar.xz frr-4e5c95be91728c40b6afd789d229994cc9a7c9a7.zip |
ospf6d: Remove unused variable
last_serviced_oi is always NULL. Remove
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ospf6d')
-rw-r--r-- | ospf6d/ospf6_message.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ospf6d/ospf6_message.c b/ospf6d/ospf6_message.c index 93a062b21..360a9db0d 100644 --- a/ospf6d/ospf6_message.c +++ b/ospf6d/ospf6_message.c @@ -2086,7 +2086,6 @@ static void ospf6_write(struct thread *thread) { struct ospf6 *ospf6 = THREAD_ARG(thread); struct ospf6_interface *oi; - struct ospf6_interface *last_serviced_oi = NULL; struct ospf6_header *oh; struct ospf6_packet *op; struct listnode *node; @@ -2106,9 +2105,7 @@ static void ospf6_write(struct thread *thread) assert(node); oi = listgetdata(node); - while ((pkt_count < ospf6->write_oi_count) && oi - && (last_serviced_oi != oi)) { - + while ((pkt_count < ospf6->write_oi_count) && oi) { op = ospf6_fifo_head(oi->obuf); assert(op); assert(op->length >= OSPF6_HEADER_SIZE); @@ -2221,7 +2218,6 @@ static void ospf6_write(struct thread *thread) list_delete_node(ospf6->oi_write_q, node); if (ospf6_fifo_head(oi->obuf) == NULL) { oi->on_write_q = 0; - last_serviced_oi = NULL; oi = NULL; } else { listnode_add(ospf6->oi_write_q, oi); |