diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-04-26 23:02:09 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-07-05 13:03:14 -0400 |
| commit | 605df8d44fab7a39429ed2d165fd06f0d98d3d0b (patch) | |
| tree | 9554c05ae40845c70913cd3ea869b99fc73100e0 /zebra/kernel_socket.c | |
| parent | a014450441aeb1bf3f335d98903eee41e955867e (diff) | |
zebra: Use zebra dplane for RTM link and addr
a) Move the reads of link and address information
into the dplane
b) Move the startup read of data into the dplane
as well.
c) Break up startup reading of the linux kernel data
into multiple phases. As that we have implied ordering
of data that must be read first and if the dplane has
taken over some data reading then we must delay initial
read-in of other data.
Fixes: #13288
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/kernel_socket.c')
| -rw-r--r-- | zebra/kernel_socket.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/zebra/kernel_socket.c b/zebra/kernel_socket.c index ccbe9b27cf..fff3e6416f 100644 --- a/zebra/kernel_socket.c +++ b/zebra/kernel_socket.c @@ -1468,6 +1468,14 @@ static void routing_socket(struct zebra_ns *zns) event_add_read(zrouter.master, kernel_read, NULL, routing_sock, NULL); } +void interface_list_second(struct zebra_ns *zns) +{ +} + +void interface_list_tunneldump(struct zebra_ns *zns) +{ +} + /* Exported interface function. This function simply calls routing_socket (). */ void kernel_init(struct zebra_ns *zns) |
