]> git.baikalelectronics.ru Git - kernel.git/commit
net: socket: Fix missing break in switch statement
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Wed, 24 Apr 2019 15:31:24 +0000 (10:31 -0500)
committerDavid S. Miller <davem@davemloft.net>
Fri, 26 Apr 2019 15:28:47 +0000 (11:28 -0400)
commitbd015949c37848674bb1d0d71b098483fa828c97
tree70e272de810b58a34b363267c7216143042583e7
parentd5f917c8c464f59bbefebe526213be15665ac21e
net: socket: Fix missing break in switch statement

Add missing break statement in order to prevent the code from falling
through to cases SIOCGSTAMP_NEW and SIOCGSTAMPNS_NEW.

This bug was found thanks to the ongoing efforts to enable
-Wimplicit-fallthrough.

Fixes: 4cf7f16f2667 ("net: socket: implement 64-bit timestamps")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/socket.c