From: Josef Bacik <jbacik@fb.com>
To: <kernel-team@fb.com>, <grub-devel@gnu.org>
Subject: [PATCH 2/3] tcp: add a dprintf for opening tcp connections
Date: Fri, 11 Mar 2016 11:28:34 -0500 [thread overview]
Message-ID: <1457713715-31708-2-git-send-email-jbacik@fb.com> (raw)
In-Reply-To: <1457713715-31708-1-git-send-email-jbacik@fb.com>
In debugging strange timeouts and other network problems it has been helpful to
see when we're opening new connections to get an idea of where we're having a
breakdown.
Signed-off-by: Josef Bacik <jbacik@fb.com>
---
grub-core/net/tcp.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/grub-core/net/tcp.c b/grub-core/net/tcp.c
index 2d1706e..cb97d05 100644
--- a/grub-core/net/tcp.c
+++ b/grub-core/net/tcp.c
@@ -632,6 +632,8 @@ grub_net_tcp_open (char *server,
grub_uint8_t *nbd;
grub_net_link_level_address_t ll_target_addr;
grub_size_t headersize;
+ char addr_buf[GRUB_NET_MAX_STR_ADDR_LEN];
+ char gateway_buf[GRUB_NET_MAX_STR_ADDR_LEN];
err = grub_net_resolve_address (server, &addr);
if (err)
@@ -656,6 +658,11 @@ grub_net_tcp_open (char *server,
if (socket == NULL)
return NULL;
+ grub_net_addr_to_str (&addr, addr_buf);
+ grub_net_addr_to_str (&gateway, gateway_buf);
+ grub_dprintf("net", "opening connection to %s on inf %s via gateway %s\n",
+ addr_buf, inf->name, gateway_buf);
+
socket->out_port = out_port;
socket->inf = inf;
socket->out_nla = addr;
--
2.5.0
next prev parent reply other threads:[~2016-03-11 16:28 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-11 16:28 [PATCH 1/3] push/pop errno in initrd read file path Josef Bacik
2016-03-11 16:28 ` Josef Bacik [this message]
2016-03-11 16:28 ` [PATCH 3/3] pxenet: process transmit interrupts when out of resources Josef Bacik
2016-03-12 6:20 ` Andrei Borzenkov
2016-03-11 17:23 ` [PATCH 1/3] push/pop errno in initrd read file path Vladimir 'phcoder' Serbinenko
2016-03-11 18:13 ` Josef Bacik
2016-03-11 19:34 ` Vladimir 'phcoder' Serbinenko
2016-03-11 20:34 ` Josef Bacik
2016-03-11 22:00 ` Vladimir 'phcoder' Serbinenko
2016-03-12 7:01 ` Andrei Borzenkov
2016-03-15 17:26 ` Vladimir 'phcoder' Serbinenko
2016-11-10 12:49 ` Daniel Kiper
2016-11-18 14:51 ` Josef Bacik
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1457713715-31708-2-git-send-email-jbacik@fb.com \
--to=jbacik@fb.com \
--cc=grub-devel@gnu.org \
--cc=kernel-team@fb.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).