linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Wimplicit-fallthrough patches for 5.3-rc2
@ 2019-07-22 19:58 Gustavo A. R. Silva
  2019-07-22 21:52 ` Stephen Rothwell
  0 siblings, 1 reply; 10+ messages in thread
From: Gustavo A. R. Silva @ 2019-07-22 19:58 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Kees Cook, Greg KH, Stephen Rothwell, Alex Deucher, linux-kernel,
	Gustavo A. R. Silva

The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b:

  Linus 5.3-rc1 (2019-07-21 14:05:38 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gustavoars/linux.git tags/Wimplicit-fallthrough-5.3-rc2

for you to fetch changes up to bc512fd704a92e1be700c941c137d73c0f222eed:

  Makefile: Globally enable fall-through warning (2019-07-22 14:50:20 -0500)

----------------------------------------------------------------
Wimplicit-fallthrough patches for 5.3-rc2

Hi Linus,

Please, pull the following patches that mark switch cases where we are
expecting to fall through. These patches are part of the ongoing efforts
to enable -Wimplicit-fallthrough. Most of them have been baking in linux-next
for a whole development cycle.

Also, pull the Makefile patch that globally enables the
-Wimplicit-fallthrough option.

Finally, some missing-break fixes that have been tagged for -stable:

 - drm/amdkfd: Fix missing break in switch statement
 - drm/amdgpu/gfx10: Fix missing break in switch statement

Notice that with these changes, we completely get rid of all the
fall-through warnings in the kernel.

Thanks

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>

----------------------------------------------------------------
Gustavo A. R. Silva (11):
      firewire: mark expected switch fall-throughs
      can: mark expected switch fall-throughs
      afs: yfsclient: Mark expected switch fall-throughs
      afs: fsclient: Mark expected switch fall-throughs
      mtd: onenand_base: Mark expected switch fall-through
      perf/x86/intel: Mark expected switch fall-throughs
      drm/amdkfd: Fix missing break in switch statement
      drm/amdgpu/gfx10: Fix missing break in switch statement
      drm/amdkfd/kfd_mqd_manager_v10: Avoid fall-through warning
      drm/i915: Mark expected switch fall-throughs
      Makefile: Globally enable fall-through warning

 Documentation/process/deprecated.rst             | 14 ++++++
 Makefile                                         |  3 ++
 arch/x86/events/intel/core.c                     |  2 +
 drivers/firewire/core-device.c                   |  2 +-
 drivers/firewire/core-iso.c                      |  2 +-
 drivers/firewire/core-topology.c                 |  1 +
 drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c           |  1 +
 drivers/gpu/drm/amd/amdkfd/kfd_crat.c            |  1 +
 drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c |  1 -
 drivers/gpu/drm/i915/Makefile                    |  1 -
 drivers/gpu/drm/i915/display/intel_display.c     |  2 +-
 drivers/gpu/drm/i915/display/intel_dp.c          |  1 +
 drivers/gpu/drm/i915/gem/i915_gem_mman.c         |  2 +-
 drivers/gpu/drm/i915/gem/i915_gem_pages.c        |  2 +-
 drivers/gpu/drm/i915/i915_gpu_error.c            |  1 +
 drivers/mtd/nand/onenand/onenand_base.c          |  1 +
 drivers/net/can/at91_can.c                       |  6 ++-
 drivers/net/can/peak_canfd/peak_pciefd_main.c    |  2 +-
 drivers/net/can/spi/mcp251x.c                    |  3 +-
 drivers/net/can/usb/peak_usb/pcan_usb.c          |  2 +-
 fs/afs/fsclient.c                                | 51 ++++++++++++++--------
 fs/afs/yfsclient.c                               | 54 +++++++++++++++---------
 22 files changed, 106 insertions(+), 49 deletions(-)

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

* Re: [GIT PULL] Wimplicit-fallthrough patches for 5.3-rc2
  2019-07-22 19:58 [GIT PULL] Wimplicit-fallthrough patches for 5.3-rc2 Gustavo A. R. Silva
@ 2019-07-22 21:52 ` Stephen Rothwell
  0 siblings, 0 replies; 10+ messages in thread
From: Stephen Rothwell @ 2019-07-22 21:52 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: Linus Torvalds, Kees Cook, Greg KH, Alex Deucher, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 920 bytes --]

Hi Gustavo,

On Mon, 22 Jul 2019 14:58:13 -0500 "Gustavo A. R. Silva" <gustavo@embeddedor.com> wrote:
>
> The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b:
> 
>   Linus 5.3-rc1 (2019-07-21 14:05:38 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/gustavoars/linux.git tags/Wimplicit-fallthrough-5.3-rc2
> 
> for you to fetch changes up to bc512fd704a92e1be700c941c137d73c0f222eed:
> 
>   Makefile: Globally enable fall-through warning (2019-07-22 14:50:20 -0500)

It may be that Linus has not seen your emails due to SPF errors.  I got
the following error from your mail:

Authentication-Results: ozlabs.org; spf=permerror (mailfrom) smtp.mailfrom=embeddedor.com (client-ip=192.185.49.184; helo=gateway23.websitewelcome.com; envelope-from=gustavo@embeddedor.com; receiver=<UNKNOWN>)

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [GIT PULL] Wimplicit-fallthrough patches for 5.3-rc2
  2019-07-30  8:00     ` Kalle Valo
@ 2019-07-30 14:43       ` Kalle Valo
  0 siblings, 0 replies; 10+ messages in thread
From: Kalle Valo @ 2019-07-30 14:43 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: Linus Torvalds, Kees Cook, Greg KH, Stephen Rothwell,
	Linux List Kernel Mailing

Kalle Valo <kvalo@codeaurora.org> writes:

> "Gustavo A. R. Silva" <gustavo@embeddedor.com> writes:
>
>> On 7/27/19 1:08 PM, Linus Torvalds wrote:
>>
>>> 
>>> Ok, I have tried re-pulling and if it passes my build tests cleanly
>>> I'll push the result out.
>>> 
>>
>> Awesome. :)
>
> BTW, now when using ccache 3.2.4 (which I admit is an old release from
> 2015 but included still in Ubuntu 16.04) I see a lot of fall-through
> warnings when building the kernel. I reported this to Gustavo before but
> didn't find the time to answer back to his extra questions, sorry about
> that.
>
> I did investigate the issue at the time and IIRC it was because ccache
> strips away the comments (including the fallback comments) before
> feeding the source file to the compiler. Apparently newer ccache
> versions has a setting to avoid that but I have not tried upgrading yet.
> But anyone using old ccache should definitely upgrade.

I just installed ccache 3.4.1-1 from Ubuntu 18.04 and that seemed to fix
the problem, the big number of fallthrough warnings are now gone. No
extra configuration needed.

-- 
Kalle Valo

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

* Re: [GIT PULL] Wimplicit-fallthrough patches for 5.3-rc2
  2019-07-27 19:38   ` Gustavo A. R. Silva
@ 2019-07-30  8:00     ` Kalle Valo
  2019-07-30 14:43       ` Kalle Valo
  0 siblings, 1 reply; 10+ messages in thread
From: Kalle Valo @ 2019-07-30  8:00 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: Linus Torvalds, Kees Cook, Greg KH, Stephen Rothwell,
	Linux List Kernel Mailing

"Gustavo A. R. Silva" <gustavo@embeddedor.com> writes:

> On 7/27/19 1:08 PM, Linus Torvalds wrote:
>
>> 
>> Ok, I have tried re-pulling and if it passes my build tests cleanly
>> I'll push the result out.
>> 
>
> Awesome. :)

BTW, now when using ccache 3.2.4 (which I admit is an old release from
2015 but included still in Ubuntu 16.04) I see a lot of fall-through
warnings when building the kernel. I reported this to Gustavo before but
didn't find the time to answer back to his extra questions, sorry about
that.

I did investigate the issue at the time and IIRC it was because ccache
strips away the comments (including the fallback comments) before
feeding the source file to the compiler. Apparently newer ccache
versions has a setting to avoid that but I have not tried upgrading yet.
But anyone using old ccache should definitely upgrade.

-- 
Kalle Valo

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

* Re: [GIT PULL] Wimplicit-fallthrough patches for 5.3-rc2
  2019-07-27 18:08 ` Linus Torvalds
@ 2019-07-27 19:38   ` Gustavo A. R. Silva
  2019-07-30  8:00     ` Kalle Valo
  0 siblings, 1 reply; 10+ messages in thread
From: Gustavo A. R. Silva @ 2019-07-27 19:38 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Kees Cook, Greg KH, Stephen Rothwell, Linux List Kernel Mailing



On 7/27/19 1:08 PM, Linus Torvalds wrote:

> 
> Ok, I have tried re-pulling and if it passes my build tests cleanly
> I'll push the result out.
> 

Awesome. :)

Thanks!
--
Gustavo

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

* Re: [GIT PULL] Wimplicit-fallthrough patches for 5.3-rc2
  2019-07-26  2:55 Gustavo A. R. Silva
  2019-07-27 17:30 ` Gustavo A. R. Silva
  2019-07-27 18:08 ` Linus Torvalds
@ 2019-07-27 18:40 ` pr-tracker-bot
  2 siblings, 0 replies; 10+ messages in thread
From: pr-tracker-bot @ 2019-07-27 18:40 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: Linus Torvalds, Kees Cook, Greg KH, Stephen Rothwell,
	linux-kernel, Gustavo A. R. Silva

The pull request you sent on Thu, 25 Jul 2019 21:55:21 -0500:

> git://git.kernel.org/pub/scm/linux/kernel/git/gustavoars/linux.git tags/Wimplicit-fallthrough-5.3-rc2

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/88c5083442454e5e8a505b11fa16f32d2879651e

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker

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

* Re: [GIT PULL] Wimplicit-fallthrough patches for 5.3-rc2
  2019-07-26  2:55 Gustavo A. R. Silva
  2019-07-27 17:30 ` Gustavo A. R. Silva
@ 2019-07-27 18:08 ` Linus Torvalds
  2019-07-27 19:38   ` Gustavo A. R. Silva
  2019-07-27 18:40 ` pr-tracker-bot
  2 siblings, 1 reply; 10+ messages in thread
From: Linus Torvalds @ 2019-07-27 18:08 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: Kees Cook, Greg KH, Stephen Rothwell, Linux List Kernel Mailing

On Thu, Jul 25, 2019 at 7:55 PM Gustavo A. R. Silva
<gustavo@embeddedor.com> wrote:
>
> Here is a new pull-request that includes a fix for those warnings you
> were seeing with the dcn20_dccg driver.

Ok, I have tried re-pulling and if it passes my build tests cleanly
I'll push the result out.

                  Linus

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

* Re: [GIT PULL] Wimplicit-fallthrough patches for 5.3-rc2
  2019-07-26  2:55 Gustavo A. R. Silva
@ 2019-07-27 17:30 ` Gustavo A. R. Silva
  2019-07-27 18:08 ` Linus Torvalds
  2019-07-27 18:40 ` pr-tracker-bot
  2 siblings, 0 replies; 10+ messages in thread
From: Gustavo A. R. Silva @ 2019-07-27 17:30 UTC (permalink / raw)
  To: Linus Torvalds, Kees Cook, Greg KH; +Cc: Stephen Rothwell, linux-kernel

Hi Linus,

I've been building the kernel every time you merge new changes for -rc2 in
the last couple of days, trying to catch any new warning that other people's
code might have introduced. So far, it's been building cleanly with my
changes on top. :)

I really hope you can merge my pull-request for -rc2.

Thank you
--
Gustavo

On 7/25/19 9:55 PM, Gustavo A. R. Silva wrote:
> Hi Linus,
> 
> Kees let me know about the problems you had with my previous pull-request.
> Apologies for the inconvenience. 
> 
> Here is a new pull-request that includes a fix for those warnings you
> were seeing with the dcn20_dccg driver.
> 
> Just for you to know, I'm building allmodconfig.
> 
> Please, let me know if you have any trouble and I'll address it ASAP.
> 
> Thanks!
> --
> Gustavo
> 
> The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b:
> 
>   Linus 5.3-rc1 (2019-07-21 14:05:38 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/gustavoars/linux.git tags/Wimplicit-fallthrough-5.3-rc2
> 
> for you to fetch changes up to a035d552a93bb9ef6048733bb9f2a0dc857ff869:
> 
>   Makefile: Globally enable fall-through warning (2019-07-25 20:13:54 -0500)
> 
> ----------------------------------------------------------------
> Wimplicit-fallthrough patches for 5.3-rc2
> 
> Hi Linus,
> 
> Please, pull the following patches that mark switch cases where we are
> expecting to fall through. These patches are part of the ongoing efforts
> to enable -Wimplicit-fallthrough. Most of them have been baking in linux-next
> for a whole development cycle.
> 
> Also, pull the Makefile patch that globally enables the
> -Wimplicit-fallthrough option.
> 
> Finally, some missing-break fixes that have been tagged for -stable:
> 
>  - drm/amdkfd: Fix missing break in switch statement
>  - drm/amdgpu/gfx10: Fix missing break in switch statement
> 
> Notice that with these changes, we completely get rid of all the
> fall-through warnings in the kernel.
> 
> Thanks
> 
> Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
> 
> ----------------------------------------------------------------
> Gustavo A. R. Silva (12):
>       firewire: mark expected switch fall-throughs
>       can: mark expected switch fall-throughs
>       afs: yfsclient: Mark expected switch fall-throughs
>       afs: fsclient: Mark expected switch fall-throughs
>       mtd: onenand_base: Mark expected switch fall-through
>       perf/x86/intel: Mark expected switch fall-throughs
>       drm/amdkfd: Fix missing break in switch statement
>       drm/amdgpu/gfx10: Fix missing break in switch statement
>       drm/amdkfd/kfd_mqd_manager_v10: Avoid fall-through warning
>       drm/amd/display: Mark expected switch fall-throughs
>       drm/i915: Mark expected switch fall-throughs
>       Makefile: Globally enable fall-through warning
> 
>  Documentation/process/deprecated.rst              | 14 ++++++
>  Makefile                                          |  3 ++
>  arch/x86/events/intel/core.c                      |  2 +
>  drivers/firewire/core-device.c                    |  2 +-
>  drivers/firewire/core-iso.c                       |  2 +-
>  drivers/firewire/core-topology.c                  |  1 +
>  drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c            |  1 +
>  drivers/gpu/drm/amd/amdkfd/kfd_crat.c             |  1 +
>  drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c  |  1 -
>  drivers/gpu/drm/amd/display/dc/dcn20/dcn20_dccg.c |  5 +++
>  drivers/gpu/drm/i915/Makefile                     |  1 -
>  drivers/gpu/drm/i915/display/intel_display.c      |  2 +-
>  drivers/gpu/drm/i915/display/intel_dp.c           |  1 +
>  drivers/gpu/drm/i915/gem/i915_gem_mman.c          |  2 +-
>  drivers/gpu/drm/i915/gem/i915_gem_pages.c         |  2 +-
>  drivers/gpu/drm/i915/i915_gpu_error.c             |  1 +
>  drivers/mtd/nand/onenand/onenand_base.c           |  1 +
>  drivers/net/can/at91_can.c                        |  6 ++-
>  drivers/net/can/peak_canfd/peak_pciefd_main.c     |  2 +-
>  drivers/net/can/spi/mcp251x.c                     |  3 +-
>  drivers/net/can/usb/peak_usb/pcan_usb.c           |  2 +-
>  fs/afs/fsclient.c                                 | 51 +++++++++++++--------
>  fs/afs/yfsclient.c                                | 54 +++++++++++++++--------
>  23 files changed, 111 insertions(+), 49 deletions(-)
> 

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

* [GIT PULL] Wimplicit-fallthrough patches for 5.3-rc2
@ 2019-07-26  2:55 Gustavo A. R. Silva
  2019-07-27 17:30 ` Gustavo A. R. Silva
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Gustavo A. R. Silva @ 2019-07-26  2:55 UTC (permalink / raw)
  To: Linus Torvalds, Kees Cook
  Cc: Greg KH, Stephen Rothwell, linux-kernel, Gustavo A. R. Silva

Hi Linus,

Kees let me know about the problems you had with my previous pull-request.
Apologies for the inconvenience. 

Here is a new pull-request that includes a fix for those warnings you
were seeing with the dcn20_dccg driver.

Just for you to know, I'm building allmodconfig.

Please, let me know if you have any trouble and I'll address it ASAP.

Thanks!
--
Gustavo

The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b:

  Linus 5.3-rc1 (2019-07-21 14:05:38 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gustavoars/linux.git tags/Wimplicit-fallthrough-5.3-rc2

for you to fetch changes up to a035d552a93bb9ef6048733bb9f2a0dc857ff869:

  Makefile: Globally enable fall-through warning (2019-07-25 20:13:54 -0500)

----------------------------------------------------------------
Wimplicit-fallthrough patches for 5.3-rc2

Hi Linus,

Please, pull the following patches that mark switch cases where we are
expecting to fall through. These patches are part of the ongoing efforts
to enable -Wimplicit-fallthrough. Most of them have been baking in linux-next
for a whole development cycle.

Also, pull the Makefile patch that globally enables the
-Wimplicit-fallthrough option.

Finally, some missing-break fixes that have been tagged for -stable:

 - drm/amdkfd: Fix missing break in switch statement
 - drm/amdgpu/gfx10: Fix missing break in switch statement

Notice that with these changes, we completely get rid of all the
fall-through warnings in the kernel.

Thanks

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>

----------------------------------------------------------------
Gustavo A. R. Silva (12):
      firewire: mark expected switch fall-throughs
      can: mark expected switch fall-throughs
      afs: yfsclient: Mark expected switch fall-throughs
      afs: fsclient: Mark expected switch fall-throughs
      mtd: onenand_base: Mark expected switch fall-through
      perf/x86/intel: Mark expected switch fall-throughs
      drm/amdkfd: Fix missing break in switch statement
      drm/amdgpu/gfx10: Fix missing break in switch statement
      drm/amdkfd/kfd_mqd_manager_v10: Avoid fall-through warning
      drm/amd/display: Mark expected switch fall-throughs
      drm/i915: Mark expected switch fall-throughs
      Makefile: Globally enable fall-through warning

 Documentation/process/deprecated.rst              | 14 ++++++
 Makefile                                          |  3 ++
 arch/x86/events/intel/core.c                      |  2 +
 drivers/firewire/core-device.c                    |  2 +-
 drivers/firewire/core-iso.c                       |  2 +-
 drivers/firewire/core-topology.c                  |  1 +
 drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c            |  1 +
 drivers/gpu/drm/amd/amdkfd/kfd_crat.c             |  1 +
 drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c  |  1 -
 drivers/gpu/drm/amd/display/dc/dcn20/dcn20_dccg.c |  5 +++
 drivers/gpu/drm/i915/Makefile                     |  1 -
 drivers/gpu/drm/i915/display/intel_display.c      |  2 +-
 drivers/gpu/drm/i915/display/intel_dp.c           |  1 +
 drivers/gpu/drm/i915/gem/i915_gem_mman.c          |  2 +-
 drivers/gpu/drm/i915/gem/i915_gem_pages.c         |  2 +-
 drivers/gpu/drm/i915/i915_gpu_error.c             |  1 +
 drivers/mtd/nand/onenand/onenand_base.c           |  1 +
 drivers/net/can/at91_can.c                        |  6 ++-
 drivers/net/can/peak_canfd/peak_pciefd_main.c     |  2 +-
 drivers/net/can/spi/mcp251x.c                     |  3 +-
 drivers/net/can/usb/peak_usb/pcan_usb.c           |  2 +-
 fs/afs/fsclient.c                                 | 51 +++++++++++++--------
 fs/afs/yfsclient.c                                | 54 +++++++++++++++--------
 23 files changed, 111 insertions(+), 49 deletions(-)

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

* [GIT PULL] Wimplicit-fallthrough patches for 5.3-rc2
@ 2019-07-24 19:07 Gustavo A. R. Silva
  0 siblings, 0 replies; 10+ messages in thread
From: Gustavo A. R. Silva @ 2019-07-24 19:07 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Kees Cook, Greg KH, Stephen Rothwell, Alex Deucher, linux-kernel,
	Gustavo A. R. Silva

Hi Linus,

I was having some problem with SPF record and it seems that you were
not getting my emails. So, I'm sending you this pull-request again.

Thanks

-Gustavo

The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b:

  Linus 5.3-rc1 (2019-07-21 14:05:38 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gustavoars/linux.git tags/Wimplicit-fallthrough-5.3-rc2

for you to fetch changes up to bc512fd704a92e1be700c941c137d73c0f222eed:

  Makefile: Globally enable fall-through warning (2019-07-22 14:50:20 -0500)

----------------------------------------------------------------
Wimplicit-fallthrough patches for 5.3-rc2

Hi Linus,

Please, pull the following patches that mark switch cases where we are
expecting to fall through. These patches are part of the ongoing efforts
to enable -Wimplicit-fallthrough. Most of them have been baking in linux-next
for a whole development cycle.

Also, pull the Makefile patch that globally enables the
-Wimplicit-fallthrough option.

Finally, some missing-break fixes that have been tagged for -stable:

 - drm/amdkfd: Fix missing break in switch statement
 - drm/amdgpu/gfx10: Fix missing break in switch statement

Notice that with these changes, we completely get rid of all the
fall-through warnings in the kernel.

Thanks

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>

----------------------------------------------------------------
Gustavo A. R. Silva (11):
      firewire: mark expected switch fall-throughs
      can: mark expected switch fall-throughs
      afs: yfsclient: Mark expected switch fall-throughs
      afs: fsclient: Mark expected switch fall-throughs
      mtd: onenand_base: Mark expected switch fall-through
      perf/x86/intel: Mark expected switch fall-throughs
      drm/amdkfd: Fix missing break in switch statement
      drm/amdgpu/gfx10: Fix missing break in switch statement
      drm/amdkfd/kfd_mqd_manager_v10: Avoid fall-through warning
      drm/i915: Mark expected switch fall-throughs
      Makefile: Globally enable fall-through warning

 Documentation/process/deprecated.rst             | 14 ++++++
 Makefile                                         |  3 ++
 arch/x86/events/intel/core.c                     |  2 +
 drivers/firewire/core-device.c                   |  2 +-
 drivers/firewire/core-iso.c                      |  2 +-
 drivers/firewire/core-topology.c                 |  1 +
 drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c           |  1 +
 drivers/gpu/drm/amd/amdkfd/kfd_crat.c            |  1 +
 drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c |  1 -
 drivers/gpu/drm/i915/Makefile                    |  1 -
 drivers/gpu/drm/i915/display/intel_display.c     |  2 +-
 drivers/gpu/drm/i915/display/intel_dp.c          |  1 +
 drivers/gpu/drm/i915/gem/i915_gem_mman.c         |  2 +-
 drivers/gpu/drm/i915/gem/i915_gem_pages.c        |  2 +-
 drivers/gpu/drm/i915/i915_gpu_error.c            |  1 +
 drivers/mtd/nand/onenand/onenand_base.c          |  1 +
 drivers/net/can/at91_can.c                       |  6 ++-
 drivers/net/can/peak_canfd/peak_pciefd_main.c    |  2 +-
 drivers/net/can/spi/mcp251x.c                    |  3 +-
 drivers/net/can/usb/peak_usb/pcan_usb.c          |  2 +-
 fs/afs/fsclient.c                                | 51 ++++++++++++++--------
 fs/afs/yfsclient.c                               | 54 +++++++++++++++---------
 22 files changed, 106 insertions(+), 49 deletions(-)

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

end of thread, other threads:[~2019-07-30 14:44 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-22 19:58 [GIT PULL] Wimplicit-fallthrough patches for 5.3-rc2 Gustavo A. R. Silva
2019-07-22 21:52 ` Stephen Rothwell
2019-07-24 19:07 Gustavo A. R. Silva
2019-07-26  2:55 Gustavo A. R. Silva
2019-07-27 17:30 ` Gustavo A. R. Silva
2019-07-27 18:08 ` Linus Torvalds
2019-07-27 19:38   ` Gustavo A. R. Silva
2019-07-30  8:00     ` Kalle Valo
2019-07-30 14:43       ` Kalle Valo
2019-07-27 18:40 ` pr-tracker-bot

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).