summaryrefslogtreecommitdiff
path: root/pimd/pim_igmpv3.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2019-06-14 19:18:51 -0400
committerDonald Sharp <sharpd@cumulusnetworks.com>2019-06-14 19:22:43 -0400
commit8a3e7e9ed983e2d8b686b1087714fe45592090d5 (patch)
tree7b10e8388b27f43b7e166563238ae09d9e60c6c7 /pimd/pim_igmpv3.c
parent9bf5f19cae44fcd2e9d9b243a81f7cd9be5c49ce (diff)
pimd: Add debugs for channel_oil creation and deletion
Add some debugs so we can see channel oil creation and deletion events. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_igmpv3.c')
-rw-r--r--pimd/pim_igmpv3.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pimd/pim_igmpv3.c b/pimd/pim_igmpv3.c
index bc0460fa03..d9b940bba7 100644
--- a/pimd/pim_igmpv3.c
+++ b/pimd/pim_igmpv3.c
@@ -332,7 +332,8 @@ void igmp_source_free(struct igmp_source *source)
static void source_channel_oil_detach(struct igmp_source *source)
{
if (source->source_channel_oil) {
- pim_channel_oil_del(source->source_channel_oil);
+ pim_channel_oil_del(source->source_channel_oil,
+ __PRETTY_FUNCTION__);
source->source_channel_oil = NULL;
}
}