lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sat, 8 Oct 2022 16:48:08 +0800 From: Li zeming <zeming@...china.com> To: jhs@...atatu.com, xiyou.wangcong@...il.com, jiri@...nulli.us, davem@...emloft.net, edumazet@...gle.com, kuba@...nel.org, pabeni@...hat.com Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org, Li zeming <zeming@...china.com> Subject: [PATCH] net: sched: Remove unnecessary ‘0’ values from err The err variable is assigned as it is used, it does not need to initialize the assignment. Signed-off-by: Li zeming <zeming@...china.com> --- net/sched/act_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/sched/act_api.c b/net/sched/act_api.c index 817065aa2833..19e4cef35e09 100644 --- a/net/sched/act_api.c +++ b/net/sched/act_api.c @@ -257,7 +257,7 @@ static int tcf_action_offload_add_ex(struct tc_action *action, }; struct flow_offload_action *fl_action; u32 in_hw_count = 0; - int num, err = 0; + int num, err; if (tc_act_skip_hw(action->tcfa_flags)) return 0; -- 2.18.2
Powered by blists - more mailing lists