Message ID | be155fef-7758-41b2-a6e8-8f7e253ff452@moroto.mountain (mailing list archive) |
---|---|
State | Accepted |
Commit | 375f2744ab84b6ffec5d13febda774eed3a98801 |
Headers | show |
Series | Bluetooth: msft: Fix error code in msft_cancel_address_filter_sync() | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | success | CheckPatch PASS |
tedd_an/GitLint | success | Gitlint PASS |
tedd_an/SubjectPrefix | success | Gitlint PASS |
tedd_an/BuildKernel | success | BuildKernel PASS |
tedd_an/CheckAllWarning | success | CheckAllWarning PASS |
tedd_an/CheckSparse | success | CheckSparse PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/BuildKernel32 | success | BuildKernel32 PASS |
tedd_an/TestRunnerSetup | success | TestRunnerSetup PASS |
tedd_an/TestRunner_l2cap-tester | success | TestRunner PASS |
tedd_an/TestRunner_iso-tester | success | TestRunner PASS |
tedd_an/TestRunner_bnep-tester | success | TestRunner PASS |
tedd_an/TestRunner_mgmt-tester | success | TestRunner PASS |
tedd_an/TestRunner_rfcomm-tester | success | TestRunner PASS |
tedd_an/TestRunner_sco-tester | success | TestRunner PASS |
tedd_an/TestRunner_ioctl-tester | success | TestRunner PASS |
tedd_an/TestRunner_mesh-tester | success | TestRunner PASS |
tedd_an/TestRunner_smp-tester | success | TestRunner PASS |
tedd_an/TestRunner_userchan-tester | success | TestRunner PASS |
tedd_an/IncrementalBuild | success | Incremental Build PASS |
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=762052 ---Test result--- Test Summary: CheckPatch PASS 0.57 seconds GitLint PASS 0.28 seconds SubjectPrefix PASS 0.10 seconds BuildKernel PASS 33.51 seconds CheckAllWarning PASS 36.46 seconds CheckSparse PASS 41.12 seconds CheckSmatch PASS 115.33 seconds BuildKernel32 PASS 32.10 seconds TestRunnerSetup PASS 460.82 seconds TestRunner_l2cap-tester PASS 13.21 seconds TestRunner_iso-tester PASS 23.96 seconds TestRunner_bnep-tester PASS 5.61 seconds TestRunner_mgmt-tester PASS 132.90 seconds TestRunner_rfcomm-tester PASS 9.20 seconds TestRunner_sco-tester PASS 10.54 seconds TestRunner_ioctl-tester PASS 9.73 seconds TestRunner_mesh-tester PASS 7.20 seconds TestRunner_smp-tester PASS 8.30 seconds TestRunner_userchan-tester PASS 5.91 seconds IncrementalBuild PASS 30.54 seconds --- Regards, Linux Bluetooth
On Mon, Jul 03, 2023 at 05:17:16PM +0300, Dan Carpenter wrote: > Return negative -EIO instead of positive EIO. > > Fixes: 926df8962f3f ("Bluetooth: msft: Extended monitor tracking by address filter") > Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org> Reviewed-by: Simon Horman <simon.horman@corigine.com>
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Mon, 3 Jul 2023 17:17:16 +0300 you wrote: > Return negative -EIO instead of positive EIO. > > Fixes: 926df8962f3f ("Bluetooth: msft: Extended monitor tracking by address filter") > Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org> > --- > net/bluetooth/msft.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - Bluetooth: msft: Fix error code in msft_cancel_address_filter_sync() https://git.kernel.org/bluetooth/bluetooth-next/c/375f2744ab84 You are awesome, thank you!
diff --git a/net/bluetooth/msft.c b/net/bluetooth/msft.c index b80a2162a5c3..abbafa6194ca 100644 --- a/net/bluetooth/msft.c +++ b/net/bluetooth/msft.c @@ -743,7 +743,7 @@ static int msft_cancel_address_filter_sync(struct hci_dev *hdev, void *data) if (IS_ERR_OR_NULL(skb)) { bt_dev_err(hdev, "MSFT: Failed to cancel address (%pMR) filter", &address_filter->bdaddr); - err = EIO; + err = -EIO; goto done; } kfree_skb(skb);
Return negative -EIO instead of positive EIO. Fixes: 926df8962f3f ("Bluetooth: msft: Extended monitor tracking by address filter") Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org> --- net/bluetooth/msft.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)