From: Greg KH <gregkh@linuxfoundation.org>
To: Mariusz Skamra <mariusz.skamra@codecoup.pl>
Cc: linux-bluetooth@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH] Bluetooth: Fix CIS host feature condition
Date: Thu, 12 Feb 2026 08:48:25 +0100 [thread overview]
Message-ID: <2026021216-lyrically-tactful-d3b3@gregkh> (raw)
In-Reply-To: <20260212074111.316980-1-mariusz.skamra@codecoup.pl>
On Thu, Feb 12, 2026 at 08:41:11AM +0100, Mariusz Skamra wrote:
> This fixes the condition for sending the LE Set Host Feature command.
> The command is sent to indicate host support for Connected Isochronous
> Streams in this case. It has been observed that the system could not
> initialize BIS-only capable controllers because the controllers do not
> support the command.
>
> As per Core v6.2 | Vol 4, Part E, Table 3.1 the command shall be
> supported if CIS Central or CIS Peripheral is supported; otherwise,
> the command is optional.
>
> Signed-off-by: Mariusz Skamra <mariusz.skamra@codecoup.pl>
> ---
> net/bluetooth/hci_sync.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/net/bluetooth/hci_sync.c b/net/bluetooth/hci_sync.c
> index f04a90bce4a9..0b0dc0965f5a 100644
> --- a/net/bluetooth/hci_sync.c
> +++ b/net/bluetooth/hci_sync.c
> @@ -4592,7 +4592,7 @@ static int hci_le_set_host_features_sync(struct hci_dev *hdev)
> {
> int err;
>
> - if (iso_capable(hdev)) {
> + if (cis_capable(hdev)) {
> /* Connected Isochronous Channels (Host Support) */
> err = hci_le_set_host_feature_sync(hdev, 32,
> (iso_enabled(hdev) ? 0x01 :
> --
> 2.53.0
>
>
<formletter>
This is not the correct way to submit patches for inclusion in the
stable kernel tree. Please read:
https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
for how to do this properly.
</formletter>
next prev parent reply other threads:[~2026-02-12 7:48 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-12 7:41 [PATCH] Bluetooth: Fix CIS host feature condition Mariusz Skamra
2026-02-12 7:48 ` Greg KH [this message]
2026-02-12 8:09 ` bluez.test.bot
2026-02-12 8:16 ` [PATCH] " Paul Menzel
2026-02-12 10:05 ` Mariusz Skamra
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=2026021216-lyrically-tactful-d3b3@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=linux-bluetooth@vger.kernel.org \
--cc=mariusz.skamra@codecoup.pl \
--cc=stable@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