Re: [PATCH v2] Bluetooth: Move force_bredr_smp debugfs into hci_debugfs_create_bredr

2020-10-27 Thread Alain Michaud
t; > On Tue, Sep 29, 2020 at 4:03 PM Claire Chang wrote: > > > > Avoid multiple attempts to create the debugfs entry, force_bredr_smp, > > by moving it from the SMP registration to the BR/EDR controller init > > section. hci_debugfs_create_bredr is only called when HCI_SE

Re: linux-next: build failure after merge of the bluetooth tree

2020-07-27 Thread Alain Michaud
Same here, thanks for the fix! On Mon, Jul 27, 2020 at 1:22 AM Christoph Hellwig wrote: > > The fixup looks good to me, thanks.

Re: [RFC PATCH v1 1/2] Bluetooth: queue ACL packets if no handle is found

2020-07-17 Thread Alain Michaud
Hi Marcel, On Fri, Jul 17, 2020 at 2:51 AM Marcel Holtmann wrote: > > Hi Alain, > > > >>> There is a possibility that an ACL packet is received before we > > >>> receive the HCI connect event for the corresponding handle. If this > > >>> happens, we discard the ACL packet. > > >>> > > >>> Rather

Re: [RFC PATCH v1 1/2] Bluetooth: queue ACL packets if no handle is found

2020-07-15 Thread Alain Michaud
Resending in plain text. On Wed, Jul 15, 2020 at 9:56 AM Alain Michaud wrote: > > Hi Marcel, > > Sorry, just got around to this. > > On Tue, Jun 30, 2020 at 2:55 AM Marcel Holtmann wrote: >> >> Hi Archie, >> >> >>> There is a possibility that

Re: [PATCH] Revert "serial: 8250: Fix max baud limit in generic 8250 port"

2020-07-01 Thread Alain Michaud
Adding the bluetooth list as well per the Bluetooth impact. On Wed, Jul 1, 2020 at 7:39 AM Serge Semin wrote: > > Hello Lukas, > > On Wed, Jul 01, 2020 at 06:30:01AM +0200, Lukas Wunner wrote: > > On Tue, Jun 30, 2020 at 04:42:11PM -0700, Daniel Winkler wrote: > > > This reverts commit 0eeaf6298

[PATCH v2] bluetooth: Adding a configurable autoconnect timeout

2020-06-15 Thread Alain Michaud
This patch adds a configurable LE autoconnect timeout. Signed-off-by: Alain Michaud --- Changes in v1: Fixing longer than 80 char line. include/net/bluetooth/hci_core.h | 1 + net/bluetooth/hci_core.c | 1 + net/bluetooth/hci_event.c| 2 +- net/bluetooth/hci_request.c

Re: [PATCH] Bluetooth: Check scan state before disabling during suspend

2020-06-02 Thread Alain Michaud
; - hci_req_add_le_scan_disable(&req); > > + /* Disable LE passive scan if enabled */ > > + if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) > > + hci_req_add_le_scan_disable(&req); > > > >