diff options
author | Eric Dumazet <edumazet@google.com> | 2023-03-08 21:26:48 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2023-03-10 10:24:14 +0300 |
commit | 62423bd2d2e231951245d77740a58027a2d81ef9 (patch) | |
tree | 9d785db1e4f895065863be64feb283a7573e7ad2 /include | |
parent | 513bdd9473888ba4b1441923c2711cb5ecd06cfd (diff) | |
download | linux-62423bd2d2e231951245d77740a58027a2d81ef9.tar.xz |
net: sched: remove qdisc_watchdog->last_expires
This field mirrors hrtimer softexpires, we can instead
use the existing helpers.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Link: https://lore.kernel.org/r/20230308182648.1150762-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/pkt_sched.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/pkt_sched.h b/include/net/pkt_sched.h index 2016839991a4..bb0bd69fb655 100644 --- a/include/net/pkt_sched.h +++ b/include/net/pkt_sched.h @@ -64,7 +64,6 @@ static inline psched_time_t psched_get_time(void) } struct qdisc_watchdog { - u64 last_expires; struct hrtimer timer; struct Qdisc *qdisc; }; |