Yes, ack from me. regards,
Anders Widell On 09/26/2017 10:26 AM, Hans Nordebäck wrote:
Hi, Is it ok to push this patch? /Thanks Hans -----Original Message----- From: Hans Nordebäck Sent: den 7 september 2017 15:55 To: Anders Widell <[email protected]>; [email protected] Cc: [email protected]; Hans Nordebäck <[email protected]> Subject: [PATCH 1/1] mds: Improve log message at tipc overload [#2574] --- src/mds/mds_dt_tipc.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/mds/mds_dt_tipc.c b/src/mds/mds_dt_tipc.c index 37745e7f0..3b3b454fb 100644 --- a/src/mds/mds_dt_tipc.c +++ b/src/mds/mds_dt_tipc.c @@ -644,7 +644,6 @@ ssize_t recvfrom_connectionless(int sd, void *buf, size_t nbytes, int flags, (int)sz); } while (anc != NULL) { - /* Receipt of a normal data message never creates the TIPC_ERRINFO and TIPC_RETDATA objects, and only creates the TIPC_DESTNAME @@ -657,9 +656,13 @@ ssize_t recvfrom_connectionless(int sd, void *buf, size_t nbytes, int flags, 0)); if (anc_data[0] == TIPC_ERR_OVERLOAD) { LOG_ER( - "MDTM: undelivered message condition ancillary data: TIPC_ERR_OVERLOAD"); + "MDTM: From <0x%"PRIx32 ":%"PRIu32 "> undeliverable message condition ancillary data: TIPC_ERR_OVERLOAD", + ((struct sockaddr_tipc*) from)->addr.id.node, + ((struct sockaddr_tipc*) from)->addr.id.ref); m_MDS_LOG_CRITICAL( - "MDTM: undelivered message condition ancillary data: TIPC_ERR_OVERLOAD"); + "MDTM: From <0x%"PRIx32 ":%"PRIu32 "> undeliverable message condition ancillary data: TIPC_ERR_OVERLOAD ", + ((struct sockaddr_tipc*) from)->addr.id.node, + ((struct sockaddr_tipc*) from)->addr.id.ref); } else { /* TIPC_ERRINFO - TIPC error * code associated with a -- 2.14.1
------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Opensaf-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/opensaf-devel
