From 29bed51b7443212659a8aa1630251f57957f2f89 Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Thu, 26 Apr 2018 00:06:15 -0400 Subject: zebra: fix write task collision Only one I/O task can be scheduled per file descriptor. Having two separate tasks for buffer filling and buffer flushing was breaking that invariant and causing messages to never be written. Signed-off-by: Quentin Young --- zebra/zserv.h | 1 - 1 file changed, 1 deletion(-) (limited to 'zebra/zserv.h') diff --git a/zebra/zserv.h b/zebra/zserv.h index fc338d89e..a1b55bf8e 100644 --- a/zebra/zserv.h +++ b/zebra/zserv.h @@ -72,7 +72,6 @@ struct zserv { /* Threads for read/write. */ struct thread *t_read; struct thread *t_write; - struct thread *t_flush; /* default routing table this client munges */ int rtm_table; -- cgit v1.2.3