* [PATCH] drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw()
@ 2023-05-24 15:38 Nathan Chancellor
2023-05-24 15:57 ` Jani Nikula
2023-05-24 18:32 ` Nick Desaulniers
0 siblings, 2 replies; 8+ messages in thread
From: Nathan Chancellor @ 2023-05-24 15:38 UTC (permalink / raw)
To: jani.nikula, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin
Cc: ndesaulniers, trix, intel-gfx, dri-devel, llvm, patches,
kernel test robot, Naresh Kamboju, Nathan Chancellor
Clang warns:
drivers/gpu/drm/i915/display/intel_display.c:6012:3: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough]
case I915_FORMAT_MOD_X_TILED:
^
drivers/gpu/drm/i915/display/intel_display.c:6012:3: note: insert 'break;' to avoid fall-through
case I915_FORMAT_MOD_X_TILED:
^
break;
1 error generated.
Clang is a little more pedantic than GCC, which does not warn when
falling through to a case that is just break or return. Clang's version
is more in line with the kernel's own stance in deprecated.rst, which
states that all switch/case blocks must end in either break,
fallthrough, continue, goto, or return. Add the missing break to silence
the warning.
Fixes: 937859485aef ("drm/i915: Support Async Flip on Linear buffers")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/202305241902.UvHtMoxa-lkp@intel.com/
Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org>
Closes: https://lore.kernel.org/CA+G9fYv68V3ewK0Qj-syQj7qX-hQr0H1MFL=QFNuDoE_J2Zu-g@mail.gmail.com/
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
---
drivers/gpu/drm/i915/display/intel_display.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 0490c6412ab5..6d49e0ab3e85 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -6008,6 +6008,7 @@ static int intel_async_flip_check_hw(struct intel_atomic_state *state, struct in
plane->base.base.id, plane->base.name);
return -EINVAL;
}
+ break;
case I915_FORMAT_MOD_X_TILED:
case I915_FORMAT_MOD_Y_TILED:
---
base-commit: 9a2cb1b31c040e2f1b313e2f7921f0f5e6b66d82
change-id: 20230524-intel_async_flip_check_hw-implicit-fallthrough-c4c40b03802f
Best regards,
--
Nathan Chancellor <nathan@kernel.org>
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH] drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw() 2023-05-24 15:38 [PATCH] drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw() Nathan Chancellor @ 2023-05-24 15:57 ` Jani Nikula 2023-05-24 18:32 ` Nick Desaulniers 1 sibling, 0 replies; 8+ messages in thread From: Jani Nikula @ 2023-05-24 15:57 UTC (permalink / raw) To: Nathan Chancellor, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin Cc: ndesaulniers, trix, intel-gfx, dri-devel, llvm, patches, kernel test robot, Naresh Kamboju, Nathan Chancellor, Tom Rix On Wed, 24 May 2023, Nathan Chancellor <nathan@kernel.org> wrote: > Clang warns: > > drivers/gpu/drm/i915/display/intel_display.c:6012:3: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] > case I915_FORMAT_MOD_X_TILED: > ^ > drivers/gpu/drm/i915/display/intel_display.c:6012:3: note: insert 'break;' to avoid fall-through > case I915_FORMAT_MOD_X_TILED: > ^ > break; > 1 error generated. > > Clang is a little more pedantic than GCC, which does not warn when > falling through to a case that is just break or return. Clang's version > is more in line with the kernel's own stance in deprecated.rst, which > states that all switch/case blocks must end in either break, > fallthrough, continue, goto, or return. Add the missing break to silence > the warning. > > Fixes: 937859485aef ("drm/i915: Support Async Flip on Linear buffers") > Reported-by: kernel test robot <lkp@intel.com> > Closes: https://lore.kernel.org/202305241902.UvHtMoxa-lkp@intel.com/ > Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> > Closes: https://lore.kernel.org/CA+G9fYv68V3ewK0Qj-syQj7qX-hQr0H1MFL=QFNuDoE_J2Zu-g@mail.gmail.com/ > Signed-off-by: Nathan Chancellor <nathan@kernel.org> Yeah, I think this is the right quick fix. See also [1]. Reviewed-by: Jani Nikula <jani.nikula@intel.com> [1] https://lore.kernel.org/r/874jo3kwl6.fsf@intel.com > --- > drivers/gpu/drm/i915/display/intel_display.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c > index 0490c6412ab5..6d49e0ab3e85 100644 > --- a/drivers/gpu/drm/i915/display/intel_display.c > +++ b/drivers/gpu/drm/i915/display/intel_display.c > @@ -6008,6 +6008,7 @@ static int intel_async_flip_check_hw(struct intel_atomic_state *state, struct in > plane->base.base.id, plane->base.name); > return -EINVAL; > } > + break; > > case I915_FORMAT_MOD_X_TILED: > case I915_FORMAT_MOD_Y_TILED: > > --- > base-commit: 9a2cb1b31c040e2f1b313e2f7921f0f5e6b66d82 > change-id: 20230524-intel_async_flip_check_hw-implicit-fallthrough-c4c40b03802f > > Best regards, -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw() 2023-05-24 15:38 [PATCH] drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw() Nathan Chancellor 2023-05-24 15:57 ` Jani Nikula @ 2023-05-24 18:32 ` Nick Desaulniers 2023-05-24 18:41 ` Nathan Chancellor 2023-05-26 9:25 ` Jani Nikula 1 sibling, 2 replies; 8+ messages in thread From: Nick Desaulniers @ 2023-05-24 18:32 UTC (permalink / raw) To: Nathan Chancellor Cc: jani.nikula, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, trix, intel-gfx, dri-devel, llvm, patches, kernel test robot, Naresh Kamboju On Wed, May 24, 2023 at 8:38 AM Nathan Chancellor <nathan@kernel.org> wrote: > > Clang warns: > > drivers/gpu/drm/i915/display/intel_display.c:6012:3: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] > case I915_FORMAT_MOD_X_TILED: > ^ > drivers/gpu/drm/i915/display/intel_display.c:6012:3: note: insert 'break;' to avoid fall-through > case I915_FORMAT_MOD_X_TILED: > ^ > break; > 1 error generated. > > Clang is a little more pedantic than GCC, which does not warn when > falling through to a case that is just break or return. Clang's version > is more in line with the kernel's own stance in deprecated.rst, which > states that all switch/case blocks must end in either break, > fallthrough, continue, goto, or return. Add the missing break to silence > the warning. > > Fixes: 937859485aef ("drm/i915: Support Async Flip on Linear buffers") > Reported-by: kernel test robot <lkp@intel.com> > Closes: https://lore.kernel.org/202305241902.UvHtMoxa-lkp@intel.com/ > Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> > Closes: https://lore.kernel.org/CA+G9fYv68V3ewK0Qj-syQj7qX-hQr0H1MFL=QFNuDoE_J2Zu-g@mail.gmail.com/ > Signed-off-by: Nathan Chancellor <nathan@kernel.org> Thanks for the patch! I've never seen the closes tag before, that's new to me. Can you tell me more about it? A few more tags Reported-by: Tom Rix <trix@redhat.com> Link: https://lore.kernel.org/all/20230523125116.1669057-1-trix@redhat.com/ Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> > --- > drivers/gpu/drm/i915/display/intel_display.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c > index 0490c6412ab5..6d49e0ab3e85 100644 > --- a/drivers/gpu/drm/i915/display/intel_display.c > +++ b/drivers/gpu/drm/i915/display/intel_display.c > @@ -6008,6 +6008,7 @@ static int intel_async_flip_check_hw(struct intel_atomic_state *state, struct in > plane->base.base.id, plane->base.name); > return -EINVAL; > } > + break; > > case I915_FORMAT_MOD_X_TILED: > case I915_FORMAT_MOD_Y_TILED: > > --- > base-commit: 9a2cb1b31c040e2f1b313e2f7921f0f5e6b66d82 > change-id: 20230524-intel_async_flip_check_hw-implicit-fallthrough-c4c40b03802f > > Best regards, > -- > Nathan Chancellor <nathan@kernel.org> > -- Thanks, ~Nick Desaulniers ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw() 2023-05-24 18:32 ` Nick Desaulniers @ 2023-05-24 18:41 ` Nathan Chancellor 2023-05-24 18:56 ` Nick Desaulniers 2023-05-26 9:25 ` Jani Nikula 1 sibling, 1 reply; 8+ messages in thread From: Nathan Chancellor @ 2023-05-24 18:41 UTC (permalink / raw) To: Nick Desaulniers Cc: jani.nikula, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, trix, intel-gfx, dri-devel, llvm, patches, kernel test robot, Naresh Kamboju On Wed, May 24, 2023 at 11:32:32AM -0700, Nick Desaulniers wrote: > On Wed, May 24, 2023 at 8:38 AM Nathan Chancellor <nathan@kernel.org> wrote: > > > > Clang warns: > > > > drivers/gpu/drm/i915/display/intel_display.c:6012:3: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] > > case I915_FORMAT_MOD_X_TILED: > > ^ > > drivers/gpu/drm/i915/display/intel_display.c:6012:3: note: insert 'break;' to avoid fall-through > > case I915_FORMAT_MOD_X_TILED: > > ^ > > break; > > 1 error generated. > > > > Clang is a little more pedantic than GCC, which does not warn when > > falling through to a case that is just break or return. Clang's version > > is more in line with the kernel's own stance in deprecated.rst, which > > states that all switch/case blocks must end in either break, > > fallthrough, continue, goto, or return. Add the missing break to silence > > the warning. > > > > Fixes: 937859485aef ("drm/i915: Support Async Flip on Linear buffers") > > Reported-by: kernel test robot <lkp@intel.com> > > Closes: https://lore.kernel.org/202305241902.UvHtMoxa-lkp@intel.com/ > > Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> > > Closes: https://lore.kernel.org/CA+G9fYv68V3ewK0Qj-syQj7qX-hQr0H1MFL=QFNuDoE_J2Zu-g@mail.gmail.com/ > > Signed-off-by: Nathan Chancellor <nathan@kernel.org> > > Thanks for the patch! I've never seen the closes tag before, that's > new to me. Can you tell me more about it? It is new to me (at least in the context of the kernel) as well. I only used it over Link: because checkpatch.pl told me to: WARNING: Reported-by: should be immediately followed by Closes: with a URL to the report #26: Reported-by: kernel test robot <lkp@intel.com> Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> WARNING: Reported-by: should be immediately followed by Closes: with a URL to the report #27: Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> Signed-off-by: Nathan Chancellor <nathan@kernel.org> It was Link: for a bit but commit 44c31888098a ("checkpatch: allow Closes tags with links") changed it to Closes:. Looks odd to me but whatever the linter says I suppose. Thanks for the review! Cheers, Nathan > A few more tags > > Reported-by: Tom Rix <trix@redhat.com> > Link: https://lore.kernel.org/all/20230523125116.1669057-1-trix@redhat.com/ > Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> > > > > --- > > drivers/gpu/drm/i915/display/intel_display.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c > > index 0490c6412ab5..6d49e0ab3e85 100644 > > --- a/drivers/gpu/drm/i915/display/intel_display.c > > +++ b/drivers/gpu/drm/i915/display/intel_display.c > > @@ -6008,6 +6008,7 @@ static int intel_async_flip_check_hw(struct intel_atomic_state *state, struct in > > plane->base.base.id, plane->base.name); > > return -EINVAL; > > } > > + break; > > > > case I915_FORMAT_MOD_X_TILED: > > case I915_FORMAT_MOD_Y_TILED: > > > > --- > > base-commit: 9a2cb1b31c040e2f1b313e2f7921f0f5e6b66d82 > > change-id: 20230524-intel_async_flip_check_hw-implicit-fallthrough-c4c40b03802f > > > > Best regards, > > -- > > Nathan Chancellor <nathan@kernel.org> > > > > > -- > Thanks, > ~Nick Desaulniers ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw() 2023-05-24 18:41 ` Nathan Chancellor @ 2023-05-24 18:56 ` Nick Desaulniers 2023-05-25 20:29 ` Matthieu Baerts 0 siblings, 1 reply; 8+ messages in thread From: Nick Desaulniers @ 2023-05-24 18:56 UTC (permalink / raw) To: Nathan Chancellor Cc: jani.nikula, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, trix, intel-gfx, dri-devel, llvm, patches, kernel test robot, Naresh Kamboju, matthieu.baerts, Konstantin Ryabitsev, Joe Perches On Wed, May 24, 2023 at 11:41 AM Nathan Chancellor <nathan@kernel.org> wrote: > > On Wed, May 24, 2023 at 11:32:32AM -0700, Nick Desaulniers wrote: > > On Wed, May 24, 2023 at 8:38 AM Nathan Chancellor <nathan@kernel.org> wrote: > > > > > > Clang warns: > > > > > > drivers/gpu/drm/i915/display/intel_display.c:6012:3: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] > > > case I915_FORMAT_MOD_X_TILED: > > > ^ > > > drivers/gpu/drm/i915/display/intel_display.c:6012:3: note: insert 'break;' to avoid fall-through > > > case I915_FORMAT_MOD_X_TILED: > > > ^ > > > break; > > > 1 error generated. > > > > > > Clang is a little more pedantic than GCC, which does not warn when > > > falling through to a case that is just break or return. Clang's version > > > is more in line with the kernel's own stance in deprecated.rst, which > > > states that all switch/case blocks must end in either break, > > > fallthrough, continue, goto, or return. Add the missing break to silence > > > the warning. > > > > > > Fixes: 937859485aef ("drm/i915: Support Async Flip on Linear buffers") > > > Reported-by: kernel test robot <lkp@intel.com> > > > Closes: https://lore.kernel.org/202305241902.UvHtMoxa-lkp@intel.com/ > > > Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> > > > Closes: https://lore.kernel.org/CA+G9fYv68V3ewK0Qj-syQj7qX-hQr0H1MFL=QFNuDoE_J2Zu-g@mail.gmail.com/ > > > Signed-off-by: Nathan Chancellor <nathan@kernel.org> > > > > Thanks for the patch! I've never seen the closes tag before, that's > > new to me. Can you tell me more about it? > > It is new to me (at least in the context of the kernel) as well. I only > used it over Link: because checkpatch.pl told me to: > > WARNING: Reported-by: should be immediately followed by Closes: with a URL to the report > #26: > Reported-by: kernel test robot <lkp@intel.com> > Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> > > WARNING: Reported-by: should be immediately followed by Closes: with a URL to the report > #27: > Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> > Signed-off-by: Nathan Chancellor <nathan@kernel.org> > > It was Link: for a bit but commit 44c31888098a ("checkpatch: allow > Closes tags with links") changed it to Closes:. Looks odd to me but > whatever the linter says I suppose. > > Thanks for the review! > > Cheers, > Nathan > > > A few more tags > > > > Reported-by: Tom Rix <trix@redhat.com> > > Link: https://lore.kernel.org/all/20230523125116.1669057-1-trix@redhat.com/ > > Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> Ah then I guess my link tag should have been Closes: https://lore.kernel.org/all/20230523125116.1669057-1-trix@redhat.com/ I hope the author of commit 44c31888098a ("checkpatch: allow Closes tags with links") has coordinated with the maintainer of b4, so that b4 recognizes Closes tags. b4 v0.12.2 does not pick up Closes tags. -- Thanks, ~Nick Desaulniers ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw() 2023-05-24 18:56 ` Nick Desaulniers @ 2023-05-25 20:29 ` Matthieu Baerts 2023-05-26 16:51 ` Nick Desaulniers 0 siblings, 1 reply; 8+ messages in thread From: Matthieu Baerts @ 2023-05-25 20:29 UTC (permalink / raw) To: Nick Desaulniers, Nathan Chancellor Cc: jani.nikula, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, trix, intel-gfx, dri-devel, llvm, patches, kernel test robot, Naresh Kamboju, Konstantin Ryabitsev, Joe Perches Hi Nick, On 24/05/2023 20:56, Nick Desaulniers wrote: > On Wed, May 24, 2023 at 11:41 AM Nathan Chancellor <nathan@kernel.org> wrote: >> >> On Wed, May 24, 2023 at 11:32:32AM -0700, Nick Desaulniers wrote: >>> On Wed, May 24, 2023 at 8:38 AM Nathan Chancellor <nathan@kernel.org> wrote: >>>> >>>> Clang warns: >>>> >>>> drivers/gpu/drm/i915/display/intel_display.c:6012:3: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] >>>> case I915_FORMAT_MOD_X_TILED: >>>> ^ >>>> drivers/gpu/drm/i915/display/intel_display.c:6012:3: note: insert 'break;' to avoid fall-through >>>> case I915_FORMAT_MOD_X_TILED: >>>> ^ >>>> break; >>>> 1 error generated. >>>> >>>> Clang is a little more pedantic than GCC, which does not warn when >>>> falling through to a case that is just break or return. Clang's version >>>> is more in line with the kernel's own stance in deprecated.rst, which >>>> states that all switch/case blocks must end in either break, >>>> fallthrough, continue, goto, or return. Add the missing break to silence >>>> the warning. >>>> >>>> Fixes: 937859485aef ("drm/i915: Support Async Flip on Linear buffers") >>>> Reported-by: kernel test robot <lkp@intel.com> >>>> Closes: https://lore.kernel.org/202305241902.UvHtMoxa-lkp@intel.com/ >>>> Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> >>>> Closes: https://lore.kernel.org/CA+G9fYv68V3ewK0Qj-syQj7qX-hQr0H1MFL=QFNuDoE_J2Zu-g@mail.gmail.com/ >>>> Signed-off-by: Nathan Chancellor <nathan@kernel.org> >>> >>> Thanks for the patch! I've never seen the closes tag before, that's >>> new to me. Can you tell me more about it? >> >> It is new to me (at least in the context of the kernel) as well. I only >> used it over Link: because checkpatch.pl told me to: >> >> WARNING: Reported-by: should be immediately followed by Closes: with a URL to the report >> #26: >> Reported-by: kernel test robot <lkp@intel.com> >> Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> >> >> WARNING: Reported-by: should be immediately followed by Closes: with a URL to the report >> #27: >> Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> >> Signed-off-by: Nathan Chancellor <nathan@kernel.org> >> >> It was Link: for a bit but commit 44c31888098a ("checkpatch: allow >> Closes tags with links") changed it to Closes:. Looks odd to me but >> whatever the linter says I suppose. >> >> Thanks for the review! >> >> Cheers, >> Nathan >> >>> A few more tags >>> >>> Reported-by: Tom Rix <trix@redhat.com> >>> Link: https://lore.kernel.org/all/20230523125116.1669057-1-trix@redhat.com/ >>> Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> > > Ah then I guess my link tag should have been > > Closes: https://lore.kernel.org/all/20230523125116.1669057-1-trix@redhat.com/ > > I hope the author of > commit 44c31888098a ("checkpatch: allow Closes tags with links") > has coordinated with the maintainer of b4, so that b4 recognizes Closes tags. > b4 v0.12.2 does not pick up Closes tags. I'm sorry for the troubles caused by this series, that was not the intension. When looking at modifying b4 to support the Closes tag, I realised the Link tag from your previous message [1] was not taken as well. Was it just me? If no, I just sent patches for b4, see [2]. I hope it will help! Cheers, Matt [1] https://lore.kernel.org/all/CAKwvOd=jZJouuNMd3Rvc--goA0EXPHcf6cHXUA6W1kXJg2ay2w@mail.gmail.com/ [2] https://lore.kernel.org/tools/20230525-closes-tags-v1-0-ed41b1773cb6@tessares.net/T/ -- Tessares | Belgium | Hybrid Access Solutions www.tessares.net ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw() 2023-05-25 20:29 ` Matthieu Baerts @ 2023-05-26 16:51 ` Nick Desaulniers 0 siblings, 0 replies; 8+ messages in thread From: Nick Desaulniers @ 2023-05-26 16:51 UTC (permalink / raw) To: Matthieu Baerts Cc: Nathan Chancellor, jani.nikula, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, trix, intel-gfx, dri-devel, llvm, patches, kernel test robot, Naresh Kamboju, Konstantin Ryabitsev, Joe Perches On Thu, May 25, 2023 at 1:30 PM Matthieu Baerts <matthieu.baerts@tessares.net> wrote: > > Hi Nick, > > On 24/05/2023 20:56, Nick Desaulniers wrote: > > On Wed, May 24, 2023 at 11:41 AM Nathan Chancellor <nathan@kernel.org> wrote: > >> > >> On Wed, May 24, 2023 at 11:32:32AM -0700, Nick Desaulniers wrote: > >>> On Wed, May 24, 2023 at 8:38 AM Nathan Chancellor <nathan@kernel.org> wrote: > >>>> > >>>> Clang warns: > >>>> > >>>> drivers/gpu/drm/i915/display/intel_display.c:6012:3: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] > >>>> case I915_FORMAT_MOD_X_TILED: > >>>> ^ > >>>> drivers/gpu/drm/i915/display/intel_display.c:6012:3: note: insert 'break;' to avoid fall-through > >>>> case I915_FORMAT_MOD_X_TILED: > >>>> ^ > >>>> break; > >>>> 1 error generated. > >>>> > >>>> Clang is a little more pedantic than GCC, which does not warn when > >>>> falling through to a case that is just break or return. Clang's version > >>>> is more in line with the kernel's own stance in deprecated.rst, which > >>>> states that all switch/case blocks must end in either break, > >>>> fallthrough, continue, goto, or return. Add the missing break to silence > >>>> the warning. > >>>> > >>>> Fixes: 937859485aef ("drm/i915: Support Async Flip on Linear buffers") > >>>> Reported-by: kernel test robot <lkp@intel.com> > >>>> Closes: https://lore.kernel.org/202305241902.UvHtMoxa-lkp@intel.com/ > >>>> Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> > >>>> Closes: https://lore.kernel.org/CA+G9fYv68V3ewK0Qj-syQj7qX-hQr0H1MFL=QFNuDoE_J2Zu-g@mail.gmail.com/ > >>>> Signed-off-by: Nathan Chancellor <nathan@kernel.org> > >>> > >>> Thanks for the patch! I've never seen the closes tag before, that's > >>> new to me. Can you tell me more about it? > >> > >> It is new to me (at least in the context of the kernel) as well. I only > >> used it over Link: because checkpatch.pl told me to: > >> > >> WARNING: Reported-by: should be immediately followed by Closes: with a URL to the report > >> #26: > >> Reported-by: kernel test robot <lkp@intel.com> > >> Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> > >> > >> WARNING: Reported-by: should be immediately followed by Closes: with a URL to the report > >> #27: > >> Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> > >> Signed-off-by: Nathan Chancellor <nathan@kernel.org> > >> > >> It was Link: for a bit but commit 44c31888098a ("checkpatch: allow > >> Closes tags with links") changed it to Closes:. Looks odd to me but > >> whatever the linter says I suppose. > >> > >> Thanks for the review! > >> > >> Cheers, > >> Nathan > >> > >>> A few more tags > >>> > >>> Reported-by: Tom Rix <trix@redhat.com> > >>> Link: https://lore.kernel.org/all/20230523125116.1669057-1-trix@redhat.com/ > >>> Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> > > > > Ah then I guess my link tag should have been > > > > Closes: https://lore.kernel.org/all/20230523125116.1669057-1-trix@redhat.com/ > > > > I hope the author of > > commit 44c31888098a ("checkpatch: allow Closes tags with links") > > has coordinated with the maintainer of b4, so that b4 recognizes Closes tags. > > b4 v0.12.2 does not pick up Closes tags. > > I'm sorry for the troubles caused by this series, that was not the > intension. > > When looking at modifying b4 to support the Closes tag, I realised the > Link tag from your previous message [1] was not taken as well. Was it > just me? oh? good find! > > If no, I just sent patches for b4, see [2]. I hope it will help! appreciated! Thank you. > > Cheers, > Matt > > [1] > https://lore.kernel.org/all/CAKwvOd=jZJouuNMd3Rvc--goA0EXPHcf6cHXUA6W1kXJg2ay2w@mail.gmail.com/ > [2] > https://lore.kernel.org/tools/20230525-closes-tags-v1-0-ed41b1773cb6@tessares.net/T/ > -- > Tessares | Belgium | Hybrid Access Solutions > www.tessares.net -- Thanks, ~Nick Desaulniers ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw() 2023-05-24 18:32 ` Nick Desaulniers 2023-05-24 18:41 ` Nathan Chancellor @ 2023-05-26 9:25 ` Jani Nikula 1 sibling, 0 replies; 8+ messages in thread From: Jani Nikula @ 2023-05-26 9:25 UTC (permalink / raw) To: Nick Desaulniers, Nathan Chancellor Cc: joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, trix, intel-gfx, dri-devel, llvm, patches, kernel test robot, Naresh Kamboju On Wed, 24 May 2023, Nick Desaulniers <ndesaulniers@google.com> wrote: > On Wed, May 24, 2023 at 8:38 AM Nathan Chancellor <nathan@kernel.org> wrote: >> >> Clang warns: >> >> drivers/gpu/drm/i915/display/intel_display.c:6012:3: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] >> case I915_FORMAT_MOD_X_TILED: >> ^ >> drivers/gpu/drm/i915/display/intel_display.c:6012:3: note: insert 'break;' to avoid fall-through >> case I915_FORMAT_MOD_X_TILED: >> ^ >> break; >> 1 error generated. >> >> Clang is a little more pedantic than GCC, which does not warn when >> falling through to a case that is just break or return. Clang's version >> is more in line with the kernel's own stance in deprecated.rst, which >> states that all switch/case blocks must end in either break, >> fallthrough, continue, goto, or return. Add the missing break to silence >> the warning. >> >> Fixes: 937859485aef ("drm/i915: Support Async Flip on Linear buffers") >> Reported-by: kernel test robot <lkp@intel.com> >> Closes: https://lore.kernel.org/202305241902.UvHtMoxa-lkp@intel.com/ >> Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> >> Closes: https://lore.kernel.org/CA+G9fYv68V3ewK0Qj-syQj7qX-hQr0H1MFL=QFNuDoE_J2Zu-g@mail.gmail.com/ >> Signed-off-by: Nathan Chancellor <nathan@kernel.org> > > Thanks for the patch! I've never seen the closes tag before, that's > new to me. Can you tell me more about it? > > A few more tags > > Reported-by: Tom Rix <trix@redhat.com> > Link: https://lore.kernel.org/all/20230523125116.1669057-1-trix@redhat.com/ > Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> Thanks for the patch and review, pushed to drm-intel-next with s/Link/Closes/. BR, Jani. > > >> --- >> drivers/gpu/drm/i915/display/intel_display.c | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c >> index 0490c6412ab5..6d49e0ab3e85 100644 >> --- a/drivers/gpu/drm/i915/display/intel_display.c >> +++ b/drivers/gpu/drm/i915/display/intel_display.c >> @@ -6008,6 +6008,7 @@ static int intel_async_flip_check_hw(struct intel_atomic_state *state, struct in >> plane->base.base.id, plane->base.name); >> return -EINVAL; >> } >> + break; >> >> case I915_FORMAT_MOD_X_TILED: >> case I915_FORMAT_MOD_Y_TILED: >> >> --- >> base-commit: 9a2cb1b31c040e2f1b313e2f7921f0f5e6b66d82 >> change-id: 20230524-intel_async_flip_check_hw-implicit-fallthrough-c4c40b03802f >> >> Best regards, >> -- >> Nathan Chancellor <nathan@kernel.org> >> -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-05-26 16:51 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-05-24 15:38 [PATCH] drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw() Nathan Chancellor 2023-05-24 15:57 ` Jani Nikula 2023-05-24 18:32 ` Nick Desaulniers 2023-05-24 18:41 ` Nathan Chancellor 2023-05-24 18:56 ` Nick Desaulniers 2023-05-25 20:29 ` Matthieu Baerts 2023-05-26 16:51 ` Nick Desaulniers 2023-05-26 9:25 ` Jani Nikula
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox