Linux-Bluetooth Archive mirror
 help / color / mirror / Atom feed
* [PATCH] Bluetooth: Fix EALREADY and ELOOP cases in bt_status()
@ 2022-10-30  7:00 Christophe JAILLET
  2022-10-30  8:06 ` bluez.test.bot
  2022-10-31 23:10 ` [PATCH] " patchwork-bot+bluetooth
  0 siblings, 2 replies; 3+ messages in thread
From: Christophe JAILLET @ 2022-10-30  7:00 UTC (permalink / raw
  To: Marcel Holtmann, Johan Hedberg, Luiz Augusto von Dentz,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
  Cc: linux-kernel, kernel-janitors, Christophe JAILLET,
	Luiz Augusto von Dentz, linux-bluetooth, netdev

'err' is known to be <0 at this point.

So, some cases can not be reached because of a missing "-".
Add it.

Fixes: ca2045e059c3 ("Bluetooth: Add bt_status")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
 net/bluetooth/lib.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/bluetooth/lib.c b/net/bluetooth/lib.c
index 469a0c95b6e8..53a796ac078c 100644
--- a/net/bluetooth/lib.c
+++ b/net/bluetooth/lib.c
@@ -170,7 +170,7 @@ __u8 bt_status(int err)
 	case -EMLINK:
 		return 0x09;
 
-	case EALREADY:
+	case -EALREADY:
 		return 0x0b;
 
 	case -EBUSY:
@@ -191,7 +191,7 @@ __u8 bt_status(int err)
 	case -ECONNABORTED:
 		return 0x16;
 
-	case ELOOP:
+	case -ELOOP:
 		return 0x17;
 
 	case -EPROTONOSUPPORT:
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: Bluetooth: Fix EALREADY and ELOOP cases in bt_status()
  2022-10-30  7:00 [PATCH] Bluetooth: Fix EALREADY and ELOOP cases in bt_status() Christophe JAILLET
@ 2022-10-30  8:06 ` bluez.test.bot
  2022-10-31 23:10 ` [PATCH] " patchwork-bot+bluetooth
  1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2022-10-30  8:06 UTC (permalink / raw
  To: linux-bluetooth, christophe.jaillet

[-- Attachment #1: Type: text/plain, Size: 1261 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=690214

---Test result---

Test Summary:
CheckPatch                    PASS      1.37 seconds
GitLint                       PASS      0.78 seconds
SubjectPrefix                 PASS      0.62 seconds
BuildKernel                   PASS      41.34 seconds
BuildKernel32                 PASS      37.50 seconds
Incremental Build with patchesPASS      53.34 seconds
TestRunner: Setup             PASS      613.53 seconds
TestRunner: l2cap-tester      PASS      19.92 seconds
TestRunner: iso-tester        PASS      19.44 seconds
TestRunner: bnep-tester       PASS      7.62 seconds
TestRunner: mgmt-tester       PASS      122.06 seconds
TestRunner: rfcomm-tester     PASS      14.95 seconds
TestRunner: sco-tester        PASS      11.14 seconds
TestRunner: ioctl-tester      PASS      12.85 seconds
TestRunner: mesh-tester       PASS      9.31 seconds
TestRunner: smp-tester        PASS      11.39 seconds
TestRunner: userchan-tester   PASS      7.99 seconds



---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Bluetooth: Fix EALREADY and ELOOP cases in bt_status()
  2022-10-30  7:00 [PATCH] Bluetooth: Fix EALREADY and ELOOP cases in bt_status() Christophe JAILLET
  2022-10-30  8:06 ` bluez.test.bot
@ 2022-10-31 23:10 ` patchwork-bot+bluetooth
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+bluetooth @ 2022-10-31 23:10 UTC (permalink / raw
  To: Christophe JAILLET
  Cc: marcel, johan.hedberg, luiz.dentz, davem, edumazet, kuba, pabeni,
	linux-kernel, kernel-janitors, luiz.von.dentz, linux-bluetooth,
	netdev

Hello:

This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Sun, 30 Oct 2022 08:00:03 +0100 you wrote:
> 'err' is known to be <0 at this point.
> 
> So, some cases can not be reached because of a missing "-".
> Add it.
> 
> Fixes: ca2045e059c3 ("Bluetooth: Add bt_status")
> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> 
> [...]

Here is the summary with links:
  - Bluetooth: Fix EALREADY and ELOOP cases in bt_status()
    https://git.kernel.org/bluetooth/bluetooth-next/c/8fceb58d84ab

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-10-31 23:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-30  7:00 [PATCH] Bluetooth: Fix EALREADY and ELOOP cases in bt_status() Christophe JAILLET
2022-10-30  8:06 ` bluez.test.bot
2022-10-31 23:10 ` [PATCH] " patchwork-bot+bluetooth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).