diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-09-23 10:04:25 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-23 10:04:25 +0300 |
| commit | f731266e954895dd60212613d9920622b823116e (patch) | |
| tree | 6135038b9a6180f60f30c6bee274293cf09fad34 | |
| parent | 9e3b5187b7ef67b98e0535ee0d470557f37994fa (diff) | |
| parent | a843c5ba2a64593652a0d91c854e185e044c17f8 (diff) | |
Merge pull request #11997 from sri-mohan1/sri-zebra-dbg1
zebra: changes for code maintainability
| -rw-r--r-- | zebra/kernel_socket.c | 7 | ||||
| -rw-r--r-- | zebra/rtadv.c | 3 |
2 files changed, 4 insertions, 6 deletions
diff --git a/zebra/kernel_socket.c b/zebra/kernel_socket.c index 4c089ee194..e76d8c0cc4 100644 --- a/zebra/kernel_socket.c +++ b/zebra/kernel_socket.c @@ -534,7 +534,7 @@ int ifm_read(struct if_msghdr *ifm) /* paranoia: sanity check structure */ if (ifm->ifm_msglen < sizeof(struct if_msghdr)) { flog_err(EC_ZEBRA_NETLINK_LENGTH_ERROR, - "ifm_read: ifm->ifm_msglen %d too short", + "%s: ifm->ifm_msglen %d too short", __func__, ifm->ifm_msglen); return -1; } @@ -1388,9 +1388,8 @@ static void kernel_read(struct thread *thread) * can assume they have the whole message. */ if (rtm->rtm_msglen != nbytes) { - zlog_debug( - "kernel_read: rtm->rtm_msglen %d, nbytes %d, type %d", - rtm->rtm_msglen, nbytes, rtm->rtm_type); + zlog_debug("%s: rtm->rtm_msglen %d, nbytes %d, type %d", + __func__, rtm->rtm_msglen, nbytes, rtm->rtm_type); return; } diff --git a/zebra/rtadv.c b/zebra/rtadv.c index bf959980be..93590a2f16 100644 --- a/zebra/rtadv.c +++ b/zebra/rtadv.c @@ -227,8 +227,7 @@ static void rtadv_send_packet(int sock, struct interface *ifp, adata = calloc(1, CMSG_SPACE(sizeof(struct in6_pktinfo))); if (adata == NULL) { - zlog_debug( - "rtadv_send_packet: can't malloc control data"); + zlog_debug("%s: can't malloc control data", __func__); exit(-1); } } |
