diff options
author | Jamal Hadi Salim <jhs@mojatatu.com> | 2016-06-06 13:32:53 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-06-08 01:53:43 +0300 |
commit | 9c4a4e488bc8f55dfc8782c7d7757fb058e9088e (patch) | |
tree | 65f5bb1d08926ba42e05f051257ca5d9a7181dee /net/sched/act_csum.c | |
parent | e69985c67c33f1d981a87986237366e83a8f0e13 (diff) | |
download | linux-9c4a4e488bc8f55dfc8782c7d7757fb058e9088e.tar.xz |
net sched: actions use tcf_lastuse_update for consistency
Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/act_csum.c')
-rw-r--r-- | net/sched/act_csum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/act_csum.c b/net/sched/act_csum.c index 28e934ed038a..065f71618276 100644 --- a/net/sched/act_csum.c +++ b/net/sched/act_csum.c @@ -501,7 +501,7 @@ static int tcf_csum(struct sk_buff *skb, u32 update_flags; spin_lock(&p->tcf_lock); - p->tcf_tm.lastuse = jiffies; + tcf_lastuse_update(&p->tcf_tm); bstats_update(&p->tcf_bstats, skb); action = p->tcf_action; update_flags = p->update_flags; |