linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp
@ 2019-01-24 18:07 Mathieu Malaterre
  2019-01-24 18:07 ` [PATCH 2/2] Bluetooth: Correctly annotate implicit fall through in __rfcomm_dlc_close Mathieu Malaterre
  2019-01-25  7:56 ` [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp Marcel Holtmann
  0 siblings, 2 replies; 5+ messages in thread
From: Mathieu Malaterre @ 2019-01-24 18:07 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Mathieu Malaterre, Gustavo Padovan, Johan Hedberg,
	David S. Miller, linux-bluetooth, netdev, linux-kernel

There is a plan to build the kernel with -Wimplicit-fallthrough and
this place in the code produced a warning (W=1).

This commit removes the following warning:

  net/bluetooth/l2cap_core.c:4223:6: warning: this statement may fall through [-Wimplicit-fallthrough=]

Cc: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Signed-off-by: Mathieu Malaterre <malat@debian.org>
---
 net/bluetooth/l2cap_core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index 2a7fb517d460..a5b76e24940a 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -4244,6 +4244,7 @@ static inline int l2cap_config_rsp(struct l2cap_conn *conn,
 				goto done;
 			break;
 		}
+		/* fall through */
 
 	default:
 		l2cap_chan_set_err(chan, ECONNRESET);
-- 
2.19.2


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

* [PATCH 2/2] Bluetooth: Correctly annotate implicit fall through in __rfcomm_dlc_close
  2019-01-24 18:07 [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp Mathieu Malaterre
@ 2019-01-24 18:07 ` Mathieu Malaterre
  2019-01-25  8:09   ` Mathieu Malaterre
  2019-01-25  7:56 ` [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp Marcel Holtmann
  1 sibling, 1 reply; 5+ messages in thread
From: Mathieu Malaterre @ 2019-01-24 18:07 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Mathieu Malaterre, Peter Hurley, Johan Hedberg, David S. Miller,
	linux-bluetooth, netdev, linux-kernel

There is a plan to build the kernel with -Wimplicit-fallthrough and
this place in the code produced a warning (W=1).

In this particular case put the fall through comment on a separate line so
as to match the regular expression expected by GCC.

This commit removes the following warning:

  net/bluetooth/rfcomm/core.c:479:6: warning: this statement may fall through [-Wimplicit-fallthrough=]

Cc: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Mathieu Malaterre <malat@debian.org>
---
 net/bluetooth/rfcomm/core.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c
index 1a635df80643..caaae6accafa 100644
--- a/net/bluetooth/rfcomm/core.c
+++ b/net/bluetooth/rfcomm/core.c
@@ -480,9 +480,8 @@ static int __rfcomm_dlc_close(struct rfcomm_dlc *d, int err)
 			__rfcomm_dlc_disconn(d);
 			break;
 		}
-		/* if closing a dlc in a session that hasn't been started,
-		 * just close and unlink the dlc
-		 */
+		/* fall through - if closing a dlc in a session that hasn't */
+		/* been started, just close and unlink the dlc */
 
 	default:
 		rfcomm_dlc_clear_timer(d);
-- 
2.19.2


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

* Re: [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp
  2019-01-24 18:07 [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp Mathieu Malaterre
  2019-01-24 18:07 ` [PATCH 2/2] Bluetooth: Correctly annotate implicit fall through in __rfcomm_dlc_close Mathieu Malaterre
@ 2019-01-25  7:56 ` Marcel Holtmann
  2019-01-25  8:08   ` Mathieu Malaterre
  1 sibling, 1 reply; 5+ messages in thread
From: Marcel Holtmann @ 2019-01-25  7:56 UTC (permalink / raw)
  To: Mathieu Malaterre
  Cc: Gustavo Padovan, Johan Hedberg, David S. Miller, linux-bluetooth,
	netdev, linux-kernel

Hi Mathieu,

> There is a plan to build the kernel with -Wimplicit-fallthrough and
> this place in the code produced a warning (W=1).
> 
> This commit removes the following warning:
> 
>  net/bluetooth/l2cap_core.c:4223:6: warning: this statement may fall through [-Wimplicit-fallthrough=]
> 
> Cc: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
> Signed-off-by: Mathieu Malaterre <malat@debian.org>
> ---
> net/bluetooth/l2cap_core.c | 1 +
> 1 file changed, 1 insertion(+)

the patches don’t apply cleanly against bluetooth-next tree. Please fix it up and resend.

Regards

Marcel


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

* Re: [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp
  2019-01-25  7:56 ` [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp Marcel Holtmann
@ 2019-01-25  8:08   ` Mathieu Malaterre
  0 siblings, 0 replies; 5+ messages in thread
From: Mathieu Malaterre @ 2019-01-25  8:08 UTC (permalink / raw)
  To: Marcel Holtmann, Gustavo A. R. Silva
  Cc: Gustavo Padovan, Johan Hedberg, David S. Miller, linux-bluetooth,
	netdev, LKML

On Fri, Jan 25, 2019 at 8:56 AM Marcel Holtmann <marcel@holtmann.org> wrote:
>
> Hi Mathieu,
>
> > There is a plan to build the kernel with -Wimplicit-fallthrough and
> > this place in the code produced a warning (W=1).
> >
> > This commit removes the following warning:
> >
> >  net/bluetooth/l2cap_core.c:4223:6: warning: this statement may fall through [-Wimplicit-fallthrough=]
> >
> > Cc: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
> > Signed-off-by: Mathieu Malaterre <malat@debian.org>
> > ---
> > net/bluetooth/l2cap_core.c | 1 +
> > 1 file changed, 1 insertion(+)
>
> the patches don’t apply cleanly against bluetooth-next tree. Please fix it up and resend.

Never mind, both warnings are already fixed by:

6317950c1b9c Bluetooth: Mark expected switch fall-throughs

Sorry for the noise

> Regards
>
> Marcel
>

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

* Re: [PATCH 2/2] Bluetooth: Correctly annotate implicit fall through in __rfcomm_dlc_close
  2019-01-24 18:07 ` [PATCH 2/2] Bluetooth: Correctly annotate implicit fall through in __rfcomm_dlc_close Mathieu Malaterre
@ 2019-01-25  8:09   ` Mathieu Malaterre
  0 siblings, 0 replies; 5+ messages in thread
From: Mathieu Malaterre @ 2019-01-25  8:09 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Peter Hurley, Johan Hedberg, David S. Miller, linux-bluetooth,
	netdev, LKML

On Thu, Jan 24, 2019 at 7:07 PM Mathieu Malaterre <malat@debian.org> wrote:
>
> There is a plan to build the kernel with -Wimplicit-fallthrough and
> this place in the code produced a warning (W=1).
>
> In this particular case put the fall through comment on a separate line so
> as to match the regular expression expected by GCC.
>
> This commit removes the following warning:
>
>   net/bluetooth/rfcomm/core.c:479:6: warning: this statement may fall through [-Wimplicit-fallthrough=]

Please discard, already fixed by :

6317950c1b9c Bluetooth: Mark expected switch fall-throughs

> Cc: Peter Hurley <peter@hurleysoftware.com>
> Signed-off-by: Mathieu Malaterre <malat@debian.org>
> ---
>  net/bluetooth/rfcomm/core.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c
> index 1a635df80643..caaae6accafa 100644
> --- a/net/bluetooth/rfcomm/core.c
> +++ b/net/bluetooth/rfcomm/core.c
> @@ -480,9 +480,8 @@ static int __rfcomm_dlc_close(struct rfcomm_dlc *d, int err)
>                         __rfcomm_dlc_disconn(d);
>                         break;
>                 }
> -               /* if closing a dlc in a session that hasn't been started,
> -                * just close and unlink the dlc
> -                */
> +               /* fall through - if closing a dlc in a session that hasn't */
> +               /* been started, just close and unlink the dlc */
>
>         default:
>                 rfcomm_dlc_clear_timer(d);
> --
> 2.19.2
>

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

end of thread, other threads:[~2019-01-25  8:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-24 18:07 [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp Mathieu Malaterre
2019-01-24 18:07 ` [PATCH 2/2] Bluetooth: Correctly annotate implicit fall through in __rfcomm_dlc_close Mathieu Malaterre
2019-01-25  8:09   ` Mathieu Malaterre
2019-01-25  7:56 ` [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp Marcel Holtmann
2019-01-25  8:08   ` Mathieu Malaterre

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 NNTP newsgroup(s).