The tickless kernel architecture project aims at implementing the services provided by the clock cyclic in an event driven fashion. The first sub-project is the decoupling of the lbolt and lbolt64 variables from clock(). These two variables are incremented at each firing of the clock cyclic and provide a time reference to the system. They are being replaced by two routines that are backed by gethrtime(), get_lbolt() and get_lbolt64().
Although the modifications we're introducing are simple, the lbolt and lbolt64 variables are referenced in many places in the system (as of snv_119, around 160 different files). Our test plan is designed to verify that no regression is introduced and that performance is not affected - a key point, since the new routine is backed by a hardware counter and may introduce undesired latencies.
The two lbolt variables may also be referenced in third party modules which will fail to load once this project integrates since the two symbols will no longer be there. This will be done now (in the Nevada development train) so that 3rd party modules can be updated in time for the next oficial release and take full advantage of the event driven system.