Re: [PATCH] net: sched: cls_api: fix dead code in switch

2018-07-25 Thread Jiri Pirko
Wed, Jul 25, 2018 at 04:07:24PM CEST, gust...@embeddedor.com wrote: >Code at line 1850 is unreachable. Fix this by removing the break >statement above it, so the code for case RTM_GETCHAIN can be >properly executed. > >Addresses-Coverity-ID: 1472050 ("Structurally dead code") >Fixes: 32a4f5ecd738 (

[PATCH] net: sched: cls_api: fix dead code in switch

2018-07-25 Thread Gustavo A. R. Silva
Code at line 1850 is unreachable. Fix this by removing the break statement above it, so the code for case RTM_GETCHAIN can be properly executed. Addresses-Coverity-ID: 1472050 ("Structurally dead code") Fixes: 32a4f5ecd738 ("net: sched: introduce chain object to uapi") Signed-off-by: Gustavo A. R.