index
:
FreeBSD-src
RELENG_2_2
RELENG_2_3
RELENG_2_3_0
RELENG_2_3_1
RELENG_2_3_2
RELENG_2_3_3
RELENG_2_3_4
RELENG_2_4
RELENG_2_4_4
RELENG_2_4_OLD
devel
devel-11
releng/10.1
releng/10.3
releng/11.0
releng/11.1
stable/10
stable/11
Raptor Engineering's fork of pfsense FreeBSD src with pfSense changes
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
sys
/
kern
/
kern_tc.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Various minor details:
phk
2003-11-13
1
-8
/
+17
*
Use the quality to disable timecounters for which we deem Hz too low.
phk
2003-09-03
1
-6
/
+10
*
bde made a number of suggested improvements to the code. This commit
imp
2003-08-20
1
-20
/
+17
*
Fix an extreme edge case in leap second handling. We need to call
imp
2003-08-20
1
-4
/
+6
*
Give timecounters a numeric quality field.
phk
2003-08-16
1
-8
/
+35
*
Remove extra space.
mux
2003-08-12
1
-1
/
+1
*
typo fix in comment.
phk
2003-07-02
1
-1
/
+1
*
Fix leap second processing by the kernel time keeping routines.
imp
2003-06-25
1
-6
/
+27
*
Use UTC rather than GMT to describe time scale. latter is obsolete.
imp
2003-06-23
1
-2
/
+2
*
Use __FBSDID().
obrien
2003-06-11
1
-2
/
+3
*
Including <sys/stdint.h> is (almost?) universally only to be able to use
phk
2003-03-18
1
-1
/
+0
*
Move timecounters notion of frequency to 64 bits.
phk
2003-01-29
1
-3
/
+4
*
Add sysctl kern.timecounter.nsetclock which indicates the number of
phk
2003-01-25
1
-0
/
+2
*
Move a local variable to avoid the compiler warning about it being unused.
phk
2003-01-16
1
-1
/
+2
*
hardpps() wants the raw hardware counter value converted to nanoseconds.
jhay
2003-01-16
1
-7
/
+7
*
Explicitly have the timecounter init happen after the cpu_initclocks is
peter
2003-01-06
1
-1
/
+1
*
Export tc_tick with sysctl, not tick.
phk
2003-01-04
1
-1
/
+1
*
Introduce a "time_uptime" global variable which holds the time since boot
phk
2002-11-01
1
-0
/
+2
*
Use strlcpy() instead of strncpy() to copy NUL terminated strings
robert
2002-10-17
1
-2
/
+2
*
Do not employ timecounter hardware if our hz does not support their
phk
2002-09-04
1
-2
/
+10
*
Give up on calling tc_ticktock() from a timeout, we have timeout
phk
2002-09-04
1
-4
/
+6
*
Use a semicolon at the end of a function-like macro invocation. Kills
markm
2002-07-15
1
-1
/
+1
*
Time counter stats are unsigned, advertise them to sysctl(8) that way.
kbyanc
2002-06-11
1
-1
/
+1
*
Mistyped and lost a '&' in previous commit.
phk
2002-05-30
1
-1
/
+1
*
Don't forget to factor in the boottime when we calculate PPS timestamps.
phk
2002-05-30
1
-0
/
+1
*
Initialize time_second to 1 instead of zero to pacify slightly bogus arp code.
phk
2002-05-03
1
-6
/
+4
*
kern_tc.c doesn't use <machine/psl.h>, and having this #include breaks
peter
2002-05-01
1
-2
/
+0
*
Brucifixion ? Yes, out that door, row on the left, one patch each.
phk
2002-04-30
1
-87
/
+101
*
Stylistic sweep through the timecounter code.
phk
2002-04-28
1
-142
/
+222
*
Don't screw up our uptime with historical dates.
phk
2002-04-28
1
-1
/
+1
*
Explain magic number.
phk
2002-04-27
1
-2
/
+15
*
Make the dummy timecounter actually tick or we will never get anyhere.
phk
2002-04-27
1
-1
/
+1
*
Now that the private parts of timecounters are no longer being fingered
phk
2002-04-26
1
-143
/
+109
*
Hide the private parts of timecounter from a couple of places that don't
phk
2002-04-26
1
-4
/
+10
*
Simplify the RFC2783 and PPS_SYNC timestamp collection API.
phk
2002-04-26
1
-16
/
+37
*
Move the winding of timecounters out of hardclock and into a normal
phk
2002-04-26
1
-1
/
+39
*
Various cleanup and sorting of clock reading functions. Add the two
phk
2002-04-26
1
-71
/
+79
*
Rename tco_setscales() and tco_delta() to use the same tc_ prefix as
phk
2002-04-26
1
-11
/
+8
*
Remove the tc_update() function. Any frequency change to the
phk
2002-04-26
1
-6
/
+0
*
Improve the implementation of adjtime(2).
phk
2002-04-15
1
-19
/
+4
*
Get the magnitude of the NTP adjustment right.
phk
2002-03-28
1
-3
/
+4
*
Remove __P.
alfred
2002-03-19
1
-2
/
+2
*
Remove unused variable.
phk
2002-02-26
1
-1
/
+0
*
Add a generation number to timecounters and spin if it changes under
phk
2002-02-24
1
-37
/
+62
*
Use better scaling factor for NTPs correction.
phk
2002-02-22
1
-1
/
+7
*
Revise timercounters to use binary fixed point format internally.
phk
2002-02-07
1
-108
/
+60
*
Let the number of timecounters follow hz, otherwise people with
phk
2002-02-05
1
-2
/
+3
*
Be more conservative about interrupt latency, it aint getting better it seems.
phk
2002-01-25
1
-2
/
+2
*
Remove a bogus #ifdef KTR stanza.
phk
2001-01-01
1
-7
/
+0
*
Major update to the way synchronization is done in the kernel. Highlights
jasone
2000-09-07
1
-1
/
+8
[next]