News Archive (1999-2012) | 2013-current at LinuxGizmos | Current Tech News Portal |    About   

Article: Guest editorial: Preemptible Linux — a reality check

Sep 6, 2001 — by LinuxDevices Staff — from the LinuxDevices Archive — views

Can Linux be a real-time operating system?

Real-time is a term that characterizes a particular application. Hard real-time means an application fails catastrophically if deadline requirements are not met. Soft real-time means an application suffers degradation in quality, but not catastrophic failure, if deadline requirements are not met. Both hard and soft real-time are terms that are clock time independent. A hard real-time requirement might be relatively slow (i.e., if an event is not serviced within one minute, an engine overheats and breaks down). A soft real-time requirement might be relatively fast (i.e., if a buffer on a networking card is not drained within 200 microseconds of an interrupt event it will overflow, but it will recover from the loss of data). The important point is that soft and hard real-time are attributes of the impact of failure to meet deadlines, and the specific timing requirements are independent of the “hardness” of the requirement.

Linux is capable of meeting a wide variety of real-time requirements, in terms of specific timing needs, addressed by specific levels of software (interrupt service routine versus user application level). Interrupt service routine software is delayed by interrupt off periods in the kernel, and the Linux 2.4 kernel has very short interrupt off timings, with none greater than 60 microseconds on an 800 MHz Pentium III class system. This level of performance meets the vast majority of real-time requirements for interrupt level software. This is particularly true given modern system designs, where extremely fast I/O response requirements tend to be serviced by dedicated hardware in the form of intelligent I/O controllers, dedicated micro-controllers or custom dedicated hardware. In the rare remaining cases where Linux interrupt off periods cannot be tolerated, RTLinux and RTAI are available. These are sub-kernel technologies that provide simple multi-threaded interrupt handling environments for driver level software. These environments emulate (virtualize) interrupt management requests from Linux, and thereby reduce the worst case interrupt off timings for the driver software written for these environments from the 60 microsecond level down to approximately 10 microseconds.

Modern real-time environments typically involve substantial control and monitoring software in the real-time control path. Such software resides at the user application level. For example, consider real-time control software written in Java and running on a JVM, an increasingly common design choice. Such a system would never be structured as driver level software. Response requirements for applications are directly tied to the kernel's ability to preempt a running process and switch to a higher priority process (newly awoken) very quickly. The lack of kernel preemption in Linux means that long system calls can delay high priority user process execution for relatively long periods, running into the tens of milliseconds in a 2.4 kernel. There is now a kernel preemption patch that today reduces this time down to one to two milliseconds, with further improvements planned for the future.

Whether an operating system capable of these levels of responsiveness guarantees is considered “real-time” or not is a positioning rather than a technical issue. This level of improvement in Linux moves it from “problematic” to “very acceptable” for the vast majority of applications that have real-time requirements (soft or hard).

The Patch Specifics

The preemptible kernel patch modifies the definition (implementation) of a spinlock, changing it from its symmetric multiprocessing (SMP) specific implementation to a preemption lock. In both cases, the locking function acts as a control on reentrancy to a critical section of kernel software.

Additionally, the preemptible kernel patch modifies the interrupt handling software to allow rescheduling on return from interrupt if a higher priority process has become executable, even if the interrupted process was running in kernel mode (provided the process is not in a critical preemption locked region). Spin unlocks are redefined to return the system to a preemptible state, and check if an immediate context switch is needed. Lastly, the kernel build definition for a uniprocessor target system is modified to include the spinlocks (implemented as preemption locks).

Through these basic changes, the Linux kernel becomes generally preemptible (with short non-preemptible regions corresponding to the spinlocked regions in an SMP kernel). Process level responsiveness is dramatically improved, both on average and in the worst cases.

Maintenance cost and longevity

All of the changes for the preemptible kernel patch directly leverage the SMP spinlocks, which are themselves fundamental in Linux for symmetric multiprocessing. The code modifications in the preemptible kernel patch are thereby limited to the areas above. New kernel code that functions correctly in an SMP kernel requires absolutely no additional changes in the preemptible kernel patch. Thus, maintenance of the patch against the evolving Linux base is low cost.

Improvement in Linux process level responsiveness is a “must” requirement for many embedded system designers considering the use of Linux as an OS platform. Embedded developers have a simple choice: enable kernel preemption if needed by the demands of their responsiveness requirement, or continue to use non-preemptible Linux if sufficient as is.

What about throughput impacts?

At a simplistic level, changing a uniprocessor kernel to add internal reentrancy management means “more code” and hence “more time.” Superficially, a preemptible kernel will have reduced throughput.

At the heart of the throughput issue is the question of a balanced system design, and the overall design objectives. How important is a responsive Linux? In a world of streaming media, responsiveness is quite important.

A demonstration of the Linux kernel doing simple audio processing (see figure, below) shows that even a trivial load on non-preemptible Linux causes user process delays that exceed the threshold of the human ear, and audio glitches are heard. The photo below represents audio processing under load, with a standard Linux kernel. The red line represents the threshold above which time delays are audible, i.e. the point of real-time failure.


Standard Linux kernel, real-time response

With preemption enabled, these delays are vastly reduced, and no audible glitching is heard. Again, the red line represents the threshold above which time delays are audible, i.e. the point of real-time failure.


Linux kernel with preemption enabled, real-time response

In order to achieve over 20x improvements in process level responsiveness, what level of throughput loss is acceptable? If throughput loss is less than 2-3 percent, the cost is outweighed by the improvement in system responsiveness. This tradeoff does not have to be made if every ounce of throughput is critical, and process level responsiveness is not. Users can select preemption or not, as they see fit.

It is important to note that in some application environments, kernel preemption can actually improve throughput. I/O channels can be kept busier over time by prioritizing I/O bound applications higher, and occasionally re-launching them more quickly through kernel preemption. The complete set of computing resources are more highly utilized over time, by being more responsive to the service needs of resources when they go idle.

Inclusion in the official Linux kernel source

Preemptible kernel technology (as a build option, similar to SMP) should be included in the Linux source code, as provided at kernel.org, starting with the 2.5 kernel base. It is a fundamental improvement in Linux, which has value to all Linux user communities (desktop, server and embedded), and should be provided with this central distribution.

However, continued development and deployment of preemption technology in Linux will not slow down if the technology is not integrated into the official source tree. Many Linux technologies are available and in widespread use today that are not part of the source code, and may never be included. This is one of the key benefits of open source; new and innovative technologies can be developed and provided when necessary, with the best getting extensive usage and support. Independent of Linux 2.5 and beyond, Linux kernel preemption technology is available today as an open source patch and there will continue to be enhancements to this technology.

In any case, certain embedded Linux companies are committed to the long-term availability and support of this capability and committed to providing this leading edge advancement across all major target platforms. Providing an alternative semaphore implementation that utilizes priority inheritance is an improvement under design. Continuing to refine long spinlock held regions is an ongoing effort. Characterizing throughput impacts (positive and negative) on a number of workloads is under progress and will be shortly available. A number of application success stories will become public over the course of the next year as this technology is widely designed in and deployed by embedded system product organizations.

Why are some opposed to a preemptible kernel?

Some oppose a preemptible kernel because of throughput concerns. Others oppose preemptibility because of concerns about growing complexity in the kernel. This argument is specious, because the preemption approach takes advantage of already required and in place SMP locking. No additional complexity is created. All Linux kernel engineering must already take into account SMP requirements. Some oppose continued refinement of SMP locking to achieve better SMP scaling (on higher way SMP systems); such refinement has the beneficial side effect of also reducing preemption off periods in a preemptible kernel.

Preemptibility on 2.4 already provides dramatic improvements in user process responsiveness, and while further improvement would be beneficial, the current level of improvement is already of tremendous value. Hence, the pro's and con's of improving SMP scaling in Linux can be debated relatively independently of preemptibility improvement opportunities.

Responsibility to the community

Embedded Linux companies have responsibilities to the open source and Linux communities, as well as to the embedded system product development communities. They have a responsibility to innovate and release innovations early and often, for public comment and contribution. They have a corporate responsibility to do their best to enable Linux to be a viable operating system platform for embedded system design and implementation. Their customers also will find significant value in the exercise of that responsibility, through the delivery of such product technologies as a preemptible Linux kernel.

The Linux kernel community is large and diverse. In every technical area, there is lively discussion and debate. Preemptible kernel technology is no different. The embedded systems marketplace, and the Linux community itself, will eventually decide the relative merits of preemptible kernel technology.



About the author: Kevin Morgan is Vice President, Engineering at MontaVista Software. He has 20 years of experience developing embedded and real-time computer systems for Hewlett-Packard Co. Experienced in operating systems and development. Kevin was a member of the HP 1000 computer software design team. While at Hewlett-Packard, he worked as an engineer, project manager and section manager spanning the development of five operating systems. Most recently serving as HP-UX Operating System Laboratory Manager, Kevin was responsible for overall HP-UX release planning, execution and delivery for Hewlett-Packard server computers.



 
This article was originally published on LinuxDevices.com and has been donated to the open source community by QuinStreet Inc. Please visit LinuxToday.com for up-to-date news and articles about Linux and open source.



Comments are closed.