mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-16 00:25:01 +00:00
pimd: Add some vrf knowledge to some debugging statements
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
02a16316f3
commit
7c2bfc2a1d
@ -559,9 +559,9 @@ static int pim_mroute_msg(struct pim_instance *pim, const char *buf,
|
|||||||
ip_dst_str, sizeof(ip_dst_str));
|
ip_dst_str, sizeof(ip_dst_str));
|
||||||
|
|
||||||
zlog_warn(
|
zlog_warn(
|
||||||
"%s: igmp kernel upcall could not find usable interface for %s -> %s",
|
"%s(%s): igmp kernel upcall could not find usable interface for %s -> %s",
|
||||||
__PRETTY_FUNCTION__, ip_src_str,
|
__PRETTY_FUNCTION__, pim->vrf->name,
|
||||||
ip_dst_str);
|
ip_src_str, ip_dst_str);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -577,9 +577,9 @@ static int pim_mroute_msg(struct pim_instance *pim, const char *buf,
|
|||||||
sizeof(ip_dst_str));
|
sizeof(ip_dst_str));
|
||||||
|
|
||||||
zlog_warn(
|
zlog_warn(
|
||||||
"%s: igmp kernel upcall on %s(%p) for %s -> %s",
|
"%s(%s): igmp kernel upcall on %s(%p) for %s -> %s",
|
||||||
__PRETTY_FUNCTION__, ifp->name, igmp,
|
__PRETTY_FUNCTION__, pim->vrf->name, ifp->name,
|
||||||
ip_src_str, ip_dst_str);
|
igmp, ip_src_str, ip_dst_str);
|
||||||
}
|
}
|
||||||
if (igmp)
|
if (igmp)
|
||||||
pim_igmp_packet(igmp, (char *)buf, buf_size);
|
pim_igmp_packet(igmp, (char *)buf, buf_size);
|
||||||
|
Loading…
Reference in New Issue
Block a user