From: Bastien Nocera <hadess@hadess.net>
To: linux-bluetooth@vger.kernel.org
Cc: Bastien Nocera <hadess@hadess.net>
Subject: [PATCH 1/2] hostname: Add more debug in soft failure cases
Date: Wed, 20 Sep 2017 14:54:44 +0200 [thread overview]
Message-ID: <20170920125445.24792-1-hadess@hadess.net> (raw)
So it's easier to debug problems with the hostname plugin.
---
plugins/hostname.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/plugins/hostname.c b/plugins/hostname.c
index 4f9dfe6d8..f876d0afb 100644
--- a/plugins/hostname.c
+++ b/plugins/hostname.c
@@ -82,8 +82,10 @@ static void update_name(struct btd_adapter *adapter, gpointer user_data)
{
const char *hostname = get_hostname();
- if (hostname == NULL)
+ if (hostname == NULL) {
+ DBG ("No hostname available yet");
return;
+ }
if (btd_adapter_is_default(adapter)) {
DBG("name: %s", hostname);
@@ -281,13 +283,16 @@ static int hostname_init(void)
hostname_client = g_dbus_client_new(conn, "org.freedesktop.hostname1",
"/org/freedesktop/hostname1");
- if (!hostname_client)
+ if (!hostname_client) {
+ DBG("Failed to get hostname client");
return -EIO;
+ }
hostname_proxy = g_dbus_proxy_new(hostname_client,
"/org/freedesktop/hostname1",
"org.freedesktop.hostname1");
if (!hostname_proxy) {
+ DBG("Failed to get hostname proxy");
g_dbus_client_unref(hostname_client);
hostname_client = NULL;
return -EIO;
@@ -297,6 +302,7 @@ static int hostname_init(void)
err = btd_register_adapter_driver(&hostname_driver);
if (err < 0) {
+ DBG("Failed to register adapter driver");
g_dbus_proxy_unref(hostname_proxy);
hostname_proxy = NULL;
g_dbus_client_unref(hostname_client);
--
2.14.1
next reply other threads:[~2017-09-20 12:54 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-20 12:54 Bastien Nocera [this message]
2017-09-20 12:54 ` [PATCH 2/2] hostname: Fix "BlueZ 5.XX" adapter name on startup Bastien Nocera
2017-09-20 15:48 ` Marcel Holtmann
2017-09-20 16:35 ` Bastien Nocera
2017-09-20 16:59 ` Marcel Holtmann
2017-09-20 18:57 ` Luiz Augusto von Dentz
2017-09-22 13:13 ` Bastien Nocera
2017-10-05 15:40 ` Bastien Nocera
2017-11-28 9:45 ` Bastien Nocera
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=20170920125445.24792-1-hadess@hadess.net \
--to=hadess@hadess.net \
--cc=linux-bluetooth@vger.kernel.org \
/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).