![]() |
![]() |
|
|
![]() |
![]() |
STREAMS/UX for the HP 9000 Reference Manual > Chapter 4 STREAMS/UX Multiprocessor Support![]() Running Modules and Drivers in Uniprocessor Emulation Mode |
|
STREAMS/UX supports uniprocessor emulation for modules and drivers. Modules and drivers which run on uniprocessor systems can run on multiprocessor systems under UP emulation without code changes. This section presents an overview of UP emulation, describes how to configure modules and drivers for UP emulation, describes what happens when a stream contains both UP emulation and MP scalable modules, and describes how UP emulation affects performance. Lastly, this section contains some UP emulation programming guidelines. This section describes how STREAMS/UX supports UP emulation. HP-UX provides UP emulation for non-STREAMS device drivers which were developed for uniprocessor systems. HP-UX uses a semaphore called the I/O semaphore and a spinlock known as the spl lock to implement UP emulation. HP-UX uses the I/O semaphore to serialize driver system calls. HP-UX acquires the I/O semaphore before calling the driver to process a system call. HP-UX uses the spl lock to prevent a driver interrupt on one processor from running in parallel with a driver system call on another processor. When a driver calls spln to raise the spl level, HP-UX acquires the spl lock. When an interrupt occurs for a UP emulation driver, HP-UX acquires the spl lock before calling the driver's interrupt handler. STREAMS/UX extends UP emulation for STREAMS/UX modules and drivers. A stream can be entered in two ways. One way is through a system call. Either the I/O system or STREAMS/UX acquires the I/O semaphore before executing a system call for a UP emulation stream. Also, a stream can be entered from non-STREAMS software in the kernel. For example, an interrupt handler can call putq, putnext,put, or streams_put to enter a stream. If code on the interrupt control stack (ICS) calls putq for a UP emulation stream, the STREAMS/UX UP emulation scheduler runs the service routine. This scheduler acquires the I/O semaphore. If an interrupt occurs for a UP emulation driver, the I/O system acquires the spl lock. Then if the interrupt handler calls put, putnext, or streams_put, STREAMS/UX usually executes the put routine on the ICS with the spl lock. Note that the STREAMS/UX utilities do not acquire the spl lock. An MP scalable interrupt handler may not be able to safely call put, putnext, or streams_put to enter a UP emulation stream. STREAMS/UX protects the various callback functions in different ways. STREAMS/UX does not have to acquire the I/O semaphore or spl lock to run esballoc free routines in UP emulation mode. The free routine will automatically run in the same mode as the module which calls freeb. Also, the HP-UX I/O system protects timeout callback routines by obtaining the spl lock before running the routine. bufcall and weld callback functions are always run under UP emulation. The STREAMS/UX memory and weld daemons always obtain the I/O semaphore before running UP emulation or MP scalable callback routines. This should not hurt the performance of MP scalable modules because weldq and bufcall are not called very often. Modules and drivers run in UP emulation mode by default. To configure a module or driver to run in UP emulation mode, do not specify any MP flags. The examples below show how to configure UP emulation modules and drivers by creating a master file $DEVICE table entry or a module or driver install function. See Chapter 5 for more information about configuring modules and drivers.
Because UP emulation and MP scalability are configured separately for each module or driver, it is possible for a stream to contain both UP emulation and MP scalable modules and drivers. If any module or driver in a stream needs to run in UP emulation mode, STREAMS/UX runs the entire stream under UP emulation. When a module is pushed onto a stream, STREAMS/UX checks if either the module is configured for UP emulation or if the stream is running under UP emulation. If either condition is true, the module and the entire stream run under UP emulation. Also, when the module is popped, the stream does not change back to its original mode. When a driver is linked under a multiplexor, STREAMS/UX checks if both streams run in the same mode. If they do not, STREAMS/UX changes the MP scalable stream to run in UP emulation mode. When the driver is unlinked, STREAMS/UX does not change a stream back to its original mode. STREAMS/UX does not support mixing MP scalable and UP emulation modules in an upper mux because an upper mux is a clonable device. STREAMS/UX does not detect that upper mux streams are related. In particular, STREAMS/UX does not support pushing a UP emulation module onto only one MP scalable upper mux stream. STREAMS/UX changes only this one stream to run under UP emulation. It does not change the control stream or the other upper mux streams. You should design your modules and drivers so that only MP scalable modules are pushed onto MP scalable upper muxes. Also, STREAMS/UX does not support linking a UP emulation driver under an MP scalable upper mux. STREAMS/UX only changes the control stream to run under UP emulation. It does not change the other upper mux streams. You should link only MP scalable drivers under an MP scalable upper mux. Some examples of supported streams configurations which contain both MP scalable and UP emulation modules and drivers are listed below.
Performance of UP emulation modules and drivers will likely worsen as more processors are added to a system. If a large number of users will be running your modules and drivers on MP systems, you should probably modify the code to be MP scalable. MP scalable modules that run over non-STREAMS/UX UP emulation drivers will be forced to run in UP emulation mode. You can achieve better performance by changing drivers to be MP scalable.
|
![]() |
||
![]() |
![]() |
![]() |
|||||||||||||
|