]> Git Repo - J-linux.git/commitdiff
csky: fix syscache.c fallthrough warning
authorRandy Dunlap <[email protected]>
Sun, 11 Apr 2021 16:41:04 +0000 (09:41 -0700)
committerGuo Ren <[email protected]>
Wed, 28 Apr 2021 15:02:10 +0000 (23:02 +0800)
This case of the switch statement falls through to the following case.
This appears to be on purpose, so declare it as OK.

../arch/csky/mm/syscache.c: In function '__do_sys_cacheflush':
../arch/csky/mm/syscache.c:17:3: warning: this statement may fall through [-Wimplicit-fallthrough=]
   17 |   flush_icache_mm_range(current->mm,
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   18 |     (unsigned long)addr,
      |     ~~~~~~~~~~~~~~~~~~~~
   19 |     (unsigned long)addr + bytes);
      |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../arch/csky/mm/syscache.c:20:2: note: here
   20 |  case DCACHE:
      |  ^~~~

Fixes: 997153b9a75c ("csky: Add flush_icache_mm to defer flush icache all")
Signed-off-by: Randy Dunlap <[email protected]>
Signed-off-by: Guo Ren <[email protected]>
Cc: [email protected]
Cc: Arnd Bergmann <[email protected]>
arch/csky/mm/syscache.c

index ffade2f9a4c87914af5c8322fdfc1b9600a204c1..4e51d63850c462e75253a43cb657e31894f847ba 100644 (file)
@@ -17,6 +17,7 @@ SYSCALL_DEFINE3(cacheflush,
                flush_icache_mm_range(current->mm,
                                (unsigned long)addr,
                                (unsigned long)addr + bytes);
+               fallthrough;
        case DCACHE:
                dcache_wb_range((unsigned long)addr,
                                (unsigned long)addr + bytes);
This page took 0.063033 seconds and 4 git commands to generate.