diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-11-17 14:17:25 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-12-22 02:26:16 +0100 |
commit | 8bfb8b67ae63eb0ee81e9c928b11836dcd690d6c (patch) | |
tree | 49baa69966e7ef2aff40e05fcf8c2c2a3d3230d5 /pimd/pim_ifchannel.h | |
parent | pimd: Cleanup handling of pim_sock_read (diff) | |
download | frr-8bfb8b67ae63eb0ee81e9c928b11836dcd690d6c.tar.xz frr-8bfb8b67ae63eb0ee81e9c928b11836dcd690d6c.zip |
pimd: Allow storing of sg in string format
Debugs are extremely expensive currently. Let's
store 'struct prefix_sg sg' string format in
the ifchannel, upstream and msdp_sa structures.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_ifchannel.h')
-rw-r--r-- | pimd/pim_ifchannel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pimd/pim_ifchannel.h b/pimd/pim_ifchannel.h index b640cfd4d..a95f66551 100644 --- a/pimd/pim_ifchannel.h +++ b/pimd/pim_ifchannel.h @@ -86,6 +86,7 @@ struct pim_ifchannel { struct pim_ifchannel *parent; struct list *sources; struct prefix_sg sg; + char sg_str[PIM_SG_LEN]; struct interface *interface; /* backpointer to interface */ uint32_t flags; |