From: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
To: linux-bluetooth@vger.kernel.org
Subject: sniff mode
Date: Mon, 24 Aug 2009 15:26:42 -0300 [thread overview]
Message-ID: <2d5a2c100908241126k6cf31de0s282c0f360b6948ec@mail.gmail.com> (raw)
Hi,
It is just me or hci_conn_enter_active_mode will never do what its
name suggests. This check will always succeed:
if (conn->mode != HCI_CM_SNIFF || !conn->power_save)
goto timer;
But in hci_mode_change_evt whatever mode different than HCI_CM_ACTIVE
reset power_save to zero:
if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend)) {
if (conn->mode == HCI_CM_ACTIVE)
conn->power_save = 1;
else
conn->power_save = 0;
}
So it seems that if mode is SNIFF power_save is 0, so this check will
only fail if mode is in fact HCI_CM_ACTIVE, and then latter on we got
this:
if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend)) {
struct hci_cp_exit_sniff_mode cp;
cp.handle = cpu_to_le16(conn->handle);
hci_send_cmd(hdev, HCI_OP_EXIT_SNIFF_MODE, sizeof(cp), &cp);
}
I was expecting that only when mode is HCI_CM_SNIFF it would send
HCI_OP_EXIT_SNIFF_MODE, or Im missing something?
--
Luiz Augusto von Dentz
Engenheiro de Computação
next reply other threads:[~2009-08-24 18:26 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-24 18:26 Luiz Augusto von Dentz [this message]
2009-08-24 18:40 ` sniff mode Marcel Holtmann
2009-08-24 19:26 ` Luiz Augusto von Dentz
2009-08-24 19:33 ` Marcel Holtmann
2009-08-24 20:58 ` Luiz Augusto von Dentz
2009-08-24 21:12 ` Marcel Holtmann
2009-08-26 7:21 ` Ville Tervo
2009-08-26 18:04 ` Marcel Holtmann
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=2d5a2c100908241126k6cf31de0s282c0f360b6948ec@mail.gmail.com \
--to=luiz.dentz@gmail.com \
--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