diff options
author | Andreas Henriksson <andreas@fatal.se> | 2007-10-12 13:49:49 +0200 |
---|---|---|
committer | Stephen Hemminger <shemminger@linux-foundation.org> | 2007-10-12 16:06:21 -0700 |
commit | 57a800d45a5f8f46c9ce4950599f17545413c82d (patch) | |
tree | 9d6aad06ee7c7bc3142a9b8c7e8b60793a3a1349 /tc/tc_core.c | |
parent | ca78b0e7d4042be7f7283d551d433b76da7f312b (diff) |
Switch helpers tc_core_{time2ktime,ktime2time} from long to unsigned as well.
Follow up patch to "Fix overflow in time2tick / tick2time." which switches
the remaining two helper functions from long to unsigned as well.
These functions are only used in "tc/q_hfsc.c" where both the passed argument
and the place the return value is stored are unsigned/u32 variables, so this
change should be safe to make but hasn't been tested as extensively as the
time2tick patch.
Signed-off-by: Andreas Henriksson <andreas@fatal.se>
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Diffstat (limited to 'tc/tc_core.c')
-rw-r--r-- | tc/tc_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tc/tc_core.c b/tc/tc_core.c index fb898766..8c3a2acc 100644 --- a/tc/tc_core.c +++ b/tc/tc_core.c @@ -45,12 +45,12 @@ unsigned tc_core_tick2time(unsigned tick) return tick/tick_in_usec; } -long tc_core_time2ktime(long time) +unsigned tc_core_time2ktime(unsigned time) { return time * clock_factor; } -long tc_core_ktime2time(long ktime) +unsigned tc_core_ktime2time(unsigned ktime) { return ktime / clock_factor; } |