Hi Johan, > The HCI_MGMT flag needs to remain set even after closing an HCI device. > > Signed-off-by: Johan Hedberg <johan.hedberg@xxxxxxxxx> > --- > net/bluetooth/hci_core.c | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c > index 6d38d80..52edc11 100644 > --- a/net/bluetooth/hci_core.c > +++ b/net/bluetooth/hci_core.c > @@ -670,8 +670,8 @@ static int hci_dev_do_close(struct hci_dev *hdev) > mgmt_powered(hdev, 0); > hci_dev_unlock(hdev); > > - /* Clear flags */ > - hdev->flags = 0; > + /* Clear flags, except persistent ones like HCI_MGMT */ > + hdev->flags &= BIT(HCI_MGMT); > > hci_req_unlock(hdev); > can we just move this away from hdev->flags into a hdev->dev_flags. Regards Marcel -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html