Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

net/sched: act_skbmod: convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20240709072838.1152880-1-nichen@iscas.ac.cn
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Chen Ni and committed by
Jakub Kicinski
b07593ed 6937693d

+1 -1
+1 -1
net/sched/act_skbmod.c
··· 246 246 247 247 memset(&opt, 0, sizeof(opt)); 248 248 opt.index = d->tcf_index; 249 - opt.refcnt = refcount_read(&d->tcf_refcnt) - ref, 249 + opt.refcnt = refcount_read(&d->tcf_refcnt) - ref; 250 250 opt.bindcnt = atomic_read(&d->tcf_bindcnt) - bind; 251 251 spin_lock_bh(&d->tcf_lock); 252 252 opt.action = d->tcf_action;