mirror of
https://passt.top/passt
synced 2025-06-12 18:45:34 +02:00
flow, tcp: Add flow-centric dispatch for deferred flow handling
tcp_defer_handler(), amongst other things, scans the flow table and does some processing for each TCP connection. When we add other protocols to the flow table, they're likely to want some similar scanning. It makes more sense for cache friendliness to perform a single scan of the flow table and dispatch to the protocol specific handlers, rather than having each protocol separately scan the table. To that end, add a new flow_defer_handler() handling all flow-linked deferred operations. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
c97bb527d6
commit
b43e4483ed
5 changed files with 28 additions and 17 deletions
1
flow.h
1
flow.h
|
@ -67,6 +67,7 @@ static inline bool flow_sidx_eq(flow_sidx_t a, flow_sidx_t b)
|
|||
union flow;
|
||||
|
||||
void flow_table_compact(struct ctx *c, union flow *hole);
|
||||
void flow_defer_handler(struct ctx *c);
|
||||
|
||||
void flow_log_(const struct flow_common *f, int pri, const char *fmt, ...)
|
||||
__attribute__((format(printf, 3, 4)));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue