* [PATCH] drivers: bluetooth: bpa10x: use usb_{get,put}_dev in bpa10x_{probe,disconnect}
@ 2025-04-27 16:23 Salah Triki
2025-04-27 17:02 ` bluez.test.bot
2025-04-27 19:01 ` [PATCH] " Paul Menzel
0 siblings, 2 replies; 3+ messages in thread
From: Salah Triki @ 2025-04-27 16:23 UTC (permalink / raw)
To: Marcel Holtmann, Luiz Augusto von Dentz, linux-bluetooth,
linux-kernel
Cc: salah.triki
Use usb_{get,put}_dev() to update the ref count of udev.
Signed-off-by: Salah Triki <salah.triki@gmail.com>
---
drivers/bluetooth/bpa10x.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/bluetooth/bpa10x.c b/drivers/bluetooth/bpa10x.c
index 1fa58c059cbf..0b9931311a59 100644
--- a/drivers/bluetooth/bpa10x.c
+++ b/drivers/bluetooth/bpa10x.c
@@ -375,7 +375,7 @@ static int bpa10x_probe(struct usb_interface *intf,
if (!data)
return -ENOMEM;
- data->udev = interface_to_usbdev(intf);
+ data->udev = usb_get_dev(interface_to_usbdev(intf));
init_usb_anchor(&data->tx_anchor);
init_usb_anchor(&data->rx_anchor);
@@ -422,6 +422,8 @@ static void bpa10x_disconnect(struct usb_interface *intf)
usb_set_intfdata(intf, NULL);
+ usb_put_dev(data->udev);
+
hci_unregister_dev(data->hdev);
hci_free_dev(data->hdev);
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* RE: drivers: bluetooth: bpa10x: use usb_{get,put}_dev in bpa10x_{probe,disconnect}
2025-04-27 16:23 [PATCH] drivers: bluetooth: bpa10x: use usb_{get,put}_dev in bpa10x_{probe,disconnect} Salah Triki
@ 2025-04-27 17:02 ` bluez.test.bot
2025-04-27 19:01 ` [PATCH] " Paul Menzel
1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2025-04-27 17:02 UTC (permalink / raw)
To: linux-bluetooth, salah.triki
[-- Attachment #1: Type: text/plain, Size: 2196 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=957507
---Test result---
Test Summary:
CheckPatch PENDING 0.26 seconds
GitLint PENDING 0.26 seconds
SubjectPrefix FAIL 0.34 seconds
BuildKernel PASS 24.64 seconds
CheckAllWarning PASS 27.38 seconds
CheckSparse PASS 30.84 seconds
BuildKernel32 PASS 25.42 seconds
TestRunnerSetup PASS 463.54 seconds
TestRunner_l2cap-tester PASS 21.21 seconds
TestRunner_iso-tester PASS 31.57 seconds
TestRunner_bnep-tester PASS 4.86 seconds
TestRunner_mgmt-tester FAIL 121.25 seconds
TestRunner_rfcomm-tester PASS 7.80 seconds
TestRunner_sco-tester PASS 12.69 seconds
TestRunner_ioctl-tester PASS 8.57 seconds
TestRunner_mesh-tester PASS 6.02 seconds
TestRunner_smp-tester PASS 7.22 seconds
TestRunner_userchan-tester PASS 5.01 seconds
IncrementalBuild PENDING 0.43 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
Test: SubjectPrefix - FAIL
Desc: Check subject contains "Bluetooth" prefix
Output:
"Bluetooth: " prefix is not specified in the subject
##############################
Test: TestRunner_mgmt-tester - FAIL
Desc: Run mgmt-tester with test-runner
Output:
Total: 490, Passed: 484 (98.8%), Failed: 2, Not Run: 4
Failed Test Cases
LL Privacy - Add Device 3 (AL is full) Failed 0.190 seconds
LL Privacy - Start Discovery 1 (Disable RL) Failed 0.175 seconds
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] drivers: bluetooth: bpa10x: use usb_{get,put}_dev in bpa10x_{probe,disconnect}
2025-04-27 16:23 [PATCH] drivers: bluetooth: bpa10x: use usb_{get,put}_dev in bpa10x_{probe,disconnect} Salah Triki
2025-04-27 17:02 ` bluez.test.bot
@ 2025-04-27 19:01 ` Paul Menzel
1 sibling, 0 replies; 3+ messages in thread
From: Paul Menzel @ 2025-04-27 19:01 UTC (permalink / raw)
To: Salah Triki
Cc: Marcel Holtmann, Luiz Augusto von Dentz, linux-bluetooth,
linux-kernel
Dear Salah,
Thank you for your patch.
Am 27.04.25 um 18:23 schrieb Salah Triki:
> Use usb_{get,put}_dev() to update the ref count of udev.
Could you please add why that is better?
> Signed-off-by: Salah Triki <salah.triki@gmail.com>
> ---
> drivers/bluetooth/bpa10x.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/bluetooth/bpa10x.c b/drivers/bluetooth/bpa10x.c
> index 1fa58c059cbf..0b9931311a59 100644
> --- a/drivers/bluetooth/bpa10x.c
> +++ b/drivers/bluetooth/bpa10x.c
> @@ -375,7 +375,7 @@ static int bpa10x_probe(struct usb_interface *intf,
> if (!data)
> return -ENOMEM;
>
> - data->udev = interface_to_usbdev(intf);
> + data->udev = usb_get_dev(interface_to_usbdev(intf));
>
> init_usb_anchor(&data->tx_anchor);
> init_usb_anchor(&data->rx_anchor);
> @@ -422,6 +422,8 @@ static void bpa10x_disconnect(struct usb_interface *intf)
>
> usb_set_intfdata(intf, NULL);
>
> + usb_put_dev(data->udev);
> +
> hci_unregister_dev(data->hdev);
>
> hci_free_dev(data->hdev);
Kind regards,
Paul
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-04-27 19:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-27 16:23 [PATCH] drivers: bluetooth: bpa10x: use usb_{get,put}_dev in bpa10x_{probe,disconnect} Salah Triki
2025-04-27 17:02 ` bluez.test.bot
2025-04-27 19:01 ` [PATCH] " Paul Menzel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox