WO1991019246A1 - Unix peripheral device interface - Google Patents

Unix peripheral device interface Download PDF

Info

Publication number
WO1991019246A1
WO1991019246A1 PCT/US1991/003988 US9103988W WO9119246A1 WO 1991019246 A1 WO1991019246 A1 WO 1991019246A1 US 9103988 W US9103988 W US 9103988W WO 9119246 A1 WO9119246 A1 WO 9119246A1
Authority
WO
WIPO (PCT)
Prior art keywords
disk
unix
controller
operating system
device driver
Prior art date
Application number
PCT/US1991/003988
Other languages
French (fr)
Inventor
Todd M. Rimmer
William P. Jordan
Original Assignee
Unisys Corporation
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Unisys Corporation filed Critical Unisys Corporation
Priority to JP91511242A priority Critical patent/JPH05508038A/en
Publication of WO1991019246A1 publication Critical patent/WO1991019246A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F3/00Input arrangements for transferring data to be processed into a form capable of being handled by the computer; Output arrangements for transferring data from processing unit to output unit, e.g. interface arrangements
    • G06F3/06Digital input from, or digital output to, record carriers, e.g. RAID, emulated record carriers or networked record carriers
    • G06F3/0601Interfaces specially adapted for storage systems
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F3/00Input arrangements for transferring data to be processed into a form capable of being handled by the computer; Output arrangements for transferring data from processing unit to output unit, e.g. interface arrangements
    • G06F3/06Digital input from, or digital output to, record carriers, e.g. RAID, emulated record carriers or networked record carriers
    • G06F2003/0697Digital input from, or digital output to, record carriers, e.g. RAID, emulated record carriers or networked record carriers device management, e.g. handlers, drivers, I/O schedulers

Definitions

  • Microfiche Appendix is included in this application containing 2 microfiche.
  • Microfiche Number 1 contains 97 frames plus one test target frame for a total of 98 frames.
  • Microfiche Number 2 contains 54 frames plus one test target frame for a total of 55 frames.
  • This invention is in the field of computing systems, and specifically is directed to device drivers within computer systems.
  • an improved device driver scheme is disclosed for operation in a
  • a specific disk device driver and disk unit to be used as a root file system (i.e. the point of growth for all other files in the file system) and as a swap file system (i.e. the location where memory images of programs which have been temporarily swapped out of memory are stored) .
  • This process of customizing the boot disk driver must be performed on a fully installed system and must be completed before the system may be used.
  • a common peripheral device interface module which is flexible enough to support many types of peripheral device drivers.
  • the interface module is capable of handling all application and operating system interfaces which have previously been performed by each device driver. For disk devices, this results in the following advantages:
  • New application interface features can be added to all drivers by only changing the common disk module.
  • the common disk module routines can be highly optimized to improve overall disk subsystem performance.
  • a supplemental high performance buffering scheme is provided for tape drive devices.
  • a state machine based design for sequential access tape devices is used. This design allows the common tape drive interface module to prevent the tape drive device driver from issuing commands which are invalid for the current state of the tape drive. This is accomplished by validating all user-requested tape operations based on the current state of the tape drive before the commands are issued. For tape devices, this results in the following advantages:
  • New application interface features may be added to all drivers by changing only the common tape module.
  • Changes in the Unix operating system interface may be made to all drivers by changing only the common tape module.
  • the Common Tape Module routines may be highly optimized to improve overall tape subsystem performance.
  • Tape buffering may be tuned at run time without system reboots or kernel customization. This may greatly speed up the process of tuning the buffering scheme to accommodate a new type of tape drive.
  • the root disk device driver can be dynamically selected for the Unix operating system. This allows a single Unix kernel to be released which will boot on a variety of supported disk controller configurations. The following advantages are thus realized:
  • a single Unix kernel can be released for use on systems having different types of root disk controllers.
  • New bootable disk drivers can easily be added without changing any other parts of the kernel source code.
  • a common peripheral device interface module for use with a Unix - like operating system. This interface is flexible enough to support many types of peripheral device drivers.
  • a common disk module (CDM) is included.
  • the CDM contains high level disk operation routines which may be used for common reference to each disk drive on the system. Routines within the CDM are accessed by the specific device driver or device drivers. The CDM routines, in turn, call routines in the preexisting disk I/O subsystem of the Unix operating system. Additionally, the CDM routines call a group of low level routines which have been incorporated into each disk device driver. These routines communicate directly with the controllers for the specific disk drives.
  • CTM is used to improve the performance and flexibility of the tape I/O system.
  • the CTM contains high level tape operation routines which may be used for common reference to each tape drive on the system.
  • the routines within the CTM are accessed directly by the specific device driver or device drivers.
  • the CTM routines in turn, calls a group of low level routines which have been incorporated into a device driver. These routines communicate directly with the controllers for the specific tape drives.
  • the root disk device driver can be dynamically selected for the Unix operating system.
  • Each disk device driver having a controller which is resident within the system signals the boot device driver that it is present.
  • the driver which checks in first with the boot device driver is used for the root and swap device of the system. This scheme allows a precedence ordering of the controllers to be used for considering which controller should be used in a system having multiple controllers.
  • FIGURE 1A is a block diagram showing the software configuration of a prior art Unix operating system for disk drive device drivers.
  • FIGURE IB is a block diagram showing the software configuration of the disclosed invention for utilizing disk drive device drivers.
  • FIGURE 2 is a flow chart diagram which illustrates the operation of the disclosed invention while reading from a disk.
  • FIGURE 3 is a flow chart diagram which illustrates the operation of the disclosed invention while opening a disk device driver.
  • FIGURE 4 is a flow chart diagram which illustrates the operation of the disclosed invention while closing a disk device driver.
  • FIGURE 5 is a flow chart diagram which illustrates the operation of the routine DISK FOUND being used for root drive selection.
  • FIGURE 6 is a flow chart diagram which illustrates the initialization processing for a specific disk device driver to interface with the root drive selection.
  • FIGURE 7 is a flow chart diagram which illustrates the operation of the initialization routine for an exemplary disk device driver which is used in root drive selection.
  • FIGURE 8A is a block diagram showing the software configuration of a prior art Unix operating system for tape drive device drivers.
  • FIGURE 8B is a block diagram showing the software configuration of the disclosed invention for using tape drive device drivers.
  • FIGURE 9 is a flow chart diagram which illustrates the operation of the Unix Read System Call for an SQ Tape Driver.
  • FIGURE 10A is a flow chart diagram which illustrates the operation of the routine SQ INTR in the reading state.
  • FIGURE 10B is a flow chart diagram which illustrates tie operation of the routine SQ INTR in the read-retry state.
  • FIGURE 11 is a flow chart diagram which illustrates the operation of the Unix WRITE system call for an SQ tape driver.
  • FIGURE 12 is a flow chart diagram which illustrates the operation of the routine SQ INTR in the writing state.
  • FIGURE 13 is a flow chart diagram which illustrates the operation of the Unix IOCTL System Call for the SQ tape driver.
  • FIGURE 14 is a flow chart diagram which illustrates the operation of the routine TAPE BOT for the Common Tape Module routine.
  • FIGURE 15 is a flow chart diagram which illustrates the operation of the Unix OPEN system call for the SQ tape driver.
  • FIGURE 16 is a flow chart diagram which illustrates the operation of the Unix Close System Call for the SQ tape driver.
  • FIGURE 1A is an illustration of the prior art with respect to disk device drivers for the Unix operating system.
  • the Unix system call interface 101 provides user available Commands which request kernel operations. The operations allow user programs to access disk devices.
  • a group of lower routines, which contain algorithms to do operating system related tasks required for access to the disk devices is found in the Unix operating system disk I/O subsystem 102. These routines interface with, and are used by a specific disk device driver 103.
  • the device driver 103 communicates directly with the disk controller 104.
  • the operation of the Unix operating system, depicted in FIGURE 1A is more fully described in a book by Shaw et al., entitled Unix Internals, Tab Books, 1987, incorporated by reference herein.
  • FIGURE IB shows an exemplary embodiment of the present invention.
  • This FIGURE illustrates the relationship between the common disk interface module and the Unix operating system.
  • Unix disk operations (including input and output) are initiated through the Unix system call interface 101.
  • the Unix system call interface as in the previous FIGURE, is used to request operating system services.
  • the Unix system call interface maps I/O requests to the appropriate disk device driver.
  • Separate operating system interface points 120 and 130 are used for each type of disk controller in the system.
  • the proper interface point is selected by converting a device name to a device number (i.e. through device node entries found in the /dev directory) .
  • the majority of program code is found within the common disk module 140 (leaving a relatively small amount of coding to be incorporated into the operating system interface points of the disk device driver) .
  • the common disk module 140 provides a group of routines which interact directly with the actual device drivers and with the Unix disk I/O subsystem 102.
  • two disk drivers are shown, an SD disk driver which includes the SD high level interface
  • the low level interface points 160 and 170 each includes a interrupt routine (INTR) to handle controller I/O completion and status interrupts, a strategy routine (STRATEGY) which is called by the operating system to initiate I/O and a print routine (PRINT) which is used for diagnostic error messages.
  • interrupt routine to handle controller I/O completion and status interrupts
  • strategy routine which is called by the operating system to initiate I/O
  • PRINT print routine
  • These routines are called by the disk I/O subsystem 102 and by the common disk module 140. They make use of routines within the common disk module to perform their functions. These routines also communicate directly with their respective physical disk controllers 104 and 105.
  • the implementation of source code for the disclosed invention is readily apparent to one skilled in the art of Unix operating system design from the discussion of the disk I/O system, presented below. A copy of source code, partly in the form of pseudo code, which corresponds to a preferred embodiment of the disclosed invention is included in the appendix to this specification.
  • a typical disk read operation is described with reference to FIGURE IB.
  • a user program issues a read system call which is handled by the system call interface 101.
  • the system call interface 101 maps this request to the appropriate operating system interface routine, SD R.EAD.
  • SD READ makes use of the routine DISK READ within the CDM 140 to perform I/O verification (i.e. valid I/O size and offset) and to set up the I/O operation.
  • the SD STRATEGY routine within the low level system interface 160 is then called to request the device driver to schedule an I/O operation, based upon the seek optimization algorithm for that type of disk.
  • the routine SD STRATEGY invokes the routine DISK STRATEGY, in the CDM 140, to perform most of the scheduling. Thus the I/O operation is scheduled (placed on a queue) .
  • the disk I/O subsystem 102 calls the routine SD INTR, one of the low-level interface routines 160. This routine indicates the completion of the prior I/O operation and initiates the next I/O operation from the queue.
  • the SD low level I/O routines 180 and the routine DISK SETUP 10 from the common disk module 140 are invoked to initiate the next I/O operation.
  • the physical controller 104 When the I/O operation completes, the physical controller 104 generates an interrupt and the disk I/O subsystem 102 calls the routine SD INTR.
  • SD INTR invokes the routine DISK DONE in the common disk module 140 to indicate the completion of the I/O operation.
  • the routine DISK DONE notifies the operating system and the user program that the I/O operation is complete through the disk I/O subsystem 102 and the system call interface 101.
  • the flow chart diagram of FIGURE 2 illustrates the operation of the disclosed invention while reading from a disk.
  • the operating system interface point SD READ calls the routine DISK READ within the common disk module 140.
  • the routine DISK READ is run. This routine performs the steps of verifying the size and offset of the I/O operation. This routine also invokes the routines PHYSCK and PHYSIO (each within the Unix operating system Disk I/O subsystem 102) .
  • PHYSCK is a standard Unix routine which verifies that a valid virtual address is being used for a user's data transfer request.
  • PHYSIO is a standard Unix routine which handles paging (i.e.
  • control is passed to the routine SD STRATEGY (within the low-level interface routines 160) which calls the routine DISK STRATEGY (within the CDM 140) .
  • This routine performs the steps of validating the I/O location (i.e. the target address within the target partition) , mapping this I/O location to a physical block number, determining the cylinder on the disk, calculating the number of sectors that will be accessed, checking for bad spots on the disk, and updating various performance statistics.
  • the request to perform the disk access is added to the disk I/O queue.
  • the controller is examined to determine whether it is in an active state (i.e. whether an I/O operation is in progress) . If it is, then, at step 220, the SD STRATEGY routine returns control to
  • DISK SETUP I/O updates performance statistics, and sets up the physical memory address for a data transfer. Controller transfer size limitations are also handled by DISK SETUP I/O in addition to DMA address/size limitations. DISK SETUP I/O also performs bad spot remapping.
  • control returns to the routine SD START.
  • the physical I/O operation is initiated by transferring the physical location of the requested access to a particular device. The physical location may be expressed in terms of head, cylinder and sector.
  • SD START returns control to the operating system, allowing a future interrupt to signal that the I/O operation has been completed.
  • a controller interrupt occurs at the completion of an I/O operation.
  • the initial result of the detection of a controller interrupt is for the routine SD INTR (within the low level interface routines 160 of the SD Device Driver) to be initiated. This includes the steps of checking the status of the controller and physical disk drive.
  • step 236 the controller status is evaluated to determine whether or not there is an error condition. If an error condition is detected, then, at step 238, the controller status and disk driver status are checked to determine whether the physical I/O operation should be retried. If the operation should be retried, then, at step 240, program control switches to step 228 in which the physical I/O operation is initiated again as previously discussed. Otherwise, control is switched to step 244 in which the routine DISK DONE (within the CDM 140) is initiated. The DISK DONE routine is also initiated if a user request is successfully completed as shown at step 242. It is noted that if the user request is not completed, then program control switches to step 226, previously discussed. Step 246 represents the invocation of the routine DISK DONE.
  • This routine performs the steps of reporting any errors that may have occurred, handling possible incomplete I/O operations, handling DMA limitations, and updating performance statistics. Finally the standard Unix routine 10 DONE is initiated from within the Disk I/O subsystem 102 to report the completion of the I/O operation.
  • step 248 the routine SD DONE is invoked to check the queue to determine whether more I/O operations are pending completion. If more operations are pending completion, control switches to step 224, previously discussed. Otherwise, at step 250, the controller is marked as being inactive and control is returned to the program which was interrupted at step 232.
  • the operating system interface is capable of performing the routines SD OPEN and SD CLOSE.
  • SD OPEN is shown in detail in FIGURE 3.
  • SD CLOSE is shown in detail in FIGURE 4.
  • the routine SD OPEN is initiated from the system call interface 101 at step 310. This routine performs the functions of validating the device number and calling the routine DISK OPEN within the common disk module 140.
  • the DISK OPEN routine shown at step 320, includes the steps of checking the I/O unit to determine whether or not it is accessible, setting up DMA handling and keeping count of the number of times that the disk drive has been opened by users.
  • routine DISK GET INFO is called.
  • This routine invokes a group of low level routines including READ FDISK TABLE (used for disk partitioning between DOS and UNIX) , READ PD INFO
  • READ VTOC obtaining the table of contents for disks that have multiple partitions
  • READ ALTERNATES TABLE for bad spot remapping
  • the routine SD CLOSE is called from the Unix system call interface 101 as shown in step 410 of FIGURE 4.
  • SD CLOSE calls the routine DISK CLOSE within the Common Disk module 140.
  • a wait for pending I/O operations occurs.
  • the number (count) of users having the disk drive open is updated.
  • a determination is made as to whether other users still have the disk drive open. If no other users currently have the drive open, then, at step 440, the routine SD PARK HEAD is called, which conditions the controller to park the disk head, and at step 450 control is returned to the Unix system call interface 101 shown in FIGURE 1. If, at step 430, the device is still held open by one or more other users, then at step 450 system control is returned to the Unix system call interface 101 without first parking the disk head.
  • FIGURE 8A illustrates the prior art with respect to the tape drive interface in the Unix operating system. Comparing FIGURE 8A with FIGURE 1A, it is noted that the Unix operating system does not include a tape I/O subsystem which would correspond to the disk I/O subsystem 102 of FIGURE 1A.
  • a Unix system call interface 101 calls the driver routines at one of the operating system interface points 820 and 830. Separate interface points are used for each respective type of tape drive device in the system. In the exemplary embodiment, two types of tape drive device, SQ and WQ are illustrated. The driver routines from both the SQ and WQ interface points make use of the Common Tape Module 840 to perform the majority of the tape status/handling functions.
  • the Common Tape Module routines call specific routines within the device drivers 880 and 890 to implement low level controller functions. Separate device drivers are used for each type of device. The device drivers 880 and 890 in turn communicate directly with tape drive controllers 885 and 895 to cause the I/O operations to occur.
  • tape I/O subsystem there is no tape I/O subsystem shown in this FIGURE. This is because the Unix operating system does not provide such a structure.
  • the tape I/O subsystem is implemented individually for each specific device driver.
  • Several exemplary tape drive routines are shown in the attached FIGURES 9-16.
  • a tape read system call for an SCSI tape device is shown in FIGURE 9.
  • the routine SQ READ in the interface point 820 is invoked through the Unix system call interface 101 by a user request to read data from the tape device.
  • the routine SQ READ calls the routine TAPE READ in the common tape module 840.
  • TAPE READ validates the request size and validates the state of the tape device by referring to internal tables.
  • the routine TAPE READ determines if the user request has been met. This step is a loop terminating condition which allows a single tape read call to request several buffers full of data from the tape device. If, at step 914, the user request has been satisfied, TAPE READ returns control to the system call interface 101 which returns control to the user program.
  • step 918 is invoked to determine if the tape is positioned at a file mark. In this instance, no more data may be read from the tape and control is returned at step 920.
  • step 922 is executed to determine if the tape is inactive and the read-ahead buffered data which has been read from the tape is less than a predetermined amount i.e. the low water mark. If so, step 924 is executed to obtain a buffer from the free buffer list.
  • the routine TAPE READ determines if the requested read operation is the first for the tape device. If so, TAPE READ invokes the routine SQ FIRST READ in the device driver 880. Otherwise, TAPE READ invokes the routine SQ CONT READ in the driver 880.
  • step 932 the routine SQ FIRST READ or the routine SQ CONT READ issues the tape read command to the controller for the tape device using the routine SQ READ CMD.
  • the routine TAPE READ waits until a full buffer is available. Due to the read-ahead nature of the buffer algorithms, a full buffer may already be available at step 934. If a full buffer is not available, TAPE READ will wait until an interrupt from the controller causes a full buffer to become available. This interrupt may indicate that the controller 885 has filled the buffer, that a file mark has been encountered or that the controller has encountered an error. In response to this interrupt, the data returned by the controller is stored into a buffer and the buffer is marked as being available. Step 936 determines if the buffer obtained indicates that the tape read operation terminated at a file mark or with an error.
  • control is returned to the system call interface 101. Otherwise, if the tape read operation ended without exception, the requested amount of data is copied to the user data area and the tape buffer is released. At step 940 and control is transferred to step 914 to determine if the user request has been met.
  • a dynamic root disk selection method is used. This method allows the kernel to automatically configure itself for various types of controllers that may be present in a particular system.
  • a Unix system using the exemplary embodiment of the invention may dynamically select its root disk device driver. This allows the release of a single Unix kernel, capable of being booted on any of a number supported disk controller configurations.
  • Disk drives and file systems are identified through the use of major numbers and minor numbers.
  • a major number may be a reference to a particular device driver. This major number may then be used as an index into the appropriate switch table for device drivers.
  • the minor number may refer to an individual device, i.e. a particular disk device that is being referred to on a given controller. Disk controllers may also have individual unit numbers (or device numbers) .
  • each disk device driver has an initialization routine.
  • This routine is run very early in the Unix boot process.
  • the initialization routine first determines if its disk controller is present and functioning, for example, by running some simple diagnostic tests of the controller. If the controller is not present or is not functioning, the initialization routine has nothing to initialize so it returns at step 620. The initialization routine then enters a loop testing for the presence of each configured disk. For each disk which is present, the routine DISK FOUND is called at step 660.
  • the DISK FOUND routine saves the major device driver number for the first disk controller which is identified by the DISK FOUND routine, provided that the disk has a unit number that matches the minor number assigned to the root file system disk.
  • the boot disk (BD) driver initialization routine confirms that a controller was found for the root disk as indicated by DISK FOUND having saved a major device number. If a controller was not found, then at step 750, the system panics. Otherwise at step 720, the Boot Disk (BD) driver major number is determined.
  • the Unix BDEVSW and CDEVSW tables are updated to replace the BD driver entry with the selected root disk driver major number (i.e.
  • the customization order for running the initialization routines determines the selection order for disk device drivers. This configuration should match the order in which the boot ROM considers controllers.

Abstract

A common peripheral device interface module is disclosed for use with a computer operating system which is flexible enough to support many types of disk or tape device drivers. A common disk module (CDM) is included. The CDM contains high level disk operation commands which may be used for common reference to each disk driver on the system. Routines within the CDM are accessed by the Unix system call interface through a series of operating system entry points. Additional routines are included with the pre-existing Unix operating system Disk I/O Subsystem to improve interfacing between this subsystem and the CDM. A common tape module (CTM) is used to perform high level tape operation routines. The Unix system call interface communicates with the CTM through a group of operating system entry points. Because there is no Unix operating system tape I/O subsystem, the CTM completely implements a tape I/O subsystem. To provide hardware portability, the CTM is configured to call a group of low level routines which have been incorporated into a device driver. Because of the large number of possible root disk device drives, the root disk device driver can be dynamically selected for the Unix operating system (fig. 6). Each controller which is resident within the system checks in with the operating system. The controller which checks in first with the operating system is used for booting up the system. Each controller which checks in is matched with an appropriate device driver. The matched device drivers are then used for disk I/O functions.

Description

UNIX PERIPHERAL DEVICE INTERFACE
A microfiche Appendix is included in this application containing 2 microfiche. Microfiche Number 1 contains 97 frames plus one test target frame for a total of 98 frames. Microfiche Number 2 contains 54 frames plus one test target frame for a total of 55 frames.
A portion of this patent document contains material which is subject to copyright protection. The owner has no objection to the facsimile reproduction by anyone of the patent document or patent disclosure as it appears in the Patent and Trademark Office patent file or records, but otherwise reserves all rights whatsoever. Field of Invention
This invention is in the field of computing systems, and specifically is directed to device drivers within computer systems. In particular, an improved device driver scheme is disclosed for operation in a
Unix TM environment.
Background of the Invention
In a conventional computer system, software routines exist for interfacing between the operating system and specific peripheral devices. Such software routines are called device drivers. Typically, device drivers operate by instructing peripheral devices to perform input and output (I/O) functions. Device drivers perform input and output operations based on commands which are received from the operating system. In a Unix environment, each peripheral device in the computer system is associated with a device driver.
In Unix system development, it is often necessary to create various device drivers for the numerous peripheral devices which may be connected to a computer system. These peripheral devices include disk drive units and tape drive units. Furthermore, such peripheral devices are integrated with a current Unix operating System. Typically, the creation of such device drivers is performed by duplicating an existing device driver and modifying it in accordance with the particularities of a new peripheral device or peripheral device controller. One drawback of this approach is that duplicate code is placed in each device driver to support operating system and application interfaces. Thus, if new features are later incorporated into the computer system, each device driver must be individually modified to ensure proper interfacing between current device drivers and an altered operating system environment.
Another drawback of this approach is the excessive memory use caused by code duplication.
Another problem which exists in tape drive device drivers is the lack of buffering between these device drivers and the Unix operating system (i.e. the kernel) . Thus, user application software requires particular programming to ensure that it is compatible with the characteristics of a given tape device. This may require the modification of existing software to improve tape drive performance. Many programmers use the Unix system buffer mechanism to provide a buffered environment. However, this mechanism was originally designed for use with random access devices. So, by virtue of the limitations that it places on various types of tape formats, it is not entirely suitable for tape drive use. Additional system integration problems are caused by the large number of disk device driver configurations which are necessary to support a variety of disk controllers. In a typical Unix system, the kernel must be customized (i.e. relinked followed by a system reboot) to select a specific disk device driver and disk unit to be used as a root file system (i.e. the point of growth for all other files in the file system) and as a swap file system (i.e. the location where memory images of programs which have been temporarily swapped out of memory are stored) . This process of customizing the boot disk driver must be performed on a fully installed system and must be completed before the system may be used.
Typically, during the development of a Unix operating system, a separate operating system kernel is created for each possible configuration of peripheral devices. These kernels are built in advance and result in a potentially large number of kernels to accommodate the variety of supported disk controllers. Some vendors provide a large number of Unix kernels, allowing the user to chose the one appropriate for his system configuration at installation. Other vendors simply require that a given type of controller exist as the controller for the boot disk. Summary of the Invention
In the present invention, a common peripheral device interface module is disclosed which is flexible enough to support many types of peripheral device drivers. The interface module is capable of handling all application and operating system interfaces which have previously been performed by each device driver. For disk devices, this results in the following advantages:
New application interface features can be added to all drivers by only changing the common disk module.
2. Changes in the Unix operating system interface can be made to all drivers by only changing the common disk module.
3. By implementing all the interface features in the common disk module, complete application compatibility is obtained for all disk device drivers.
4. Implementation and debug of new disk device drivers is greatly simplified. 5. Duplicated code is avoided, thus reducing the overall kernel size.
6. The common disk module routines can be highly optimized to improve overall disk subsystem performance.
For tape drive devices, a supplemental high performance buffering scheme is provided. In addition, a state machine based design for sequential access tape devices is used. This design allows the common tape drive interface module to prevent the tape drive device driver from issuing commands which are invalid for the current state of the tape drive. This is accomplished by validating all user-requested tape operations based on the current state of the tape drive before the commands are issued. For tape devices, this results in the following advantages:
1. Tape performance may be greatly improved without specially tuning the individual applications programs.
2. New application interface features may be added to all drivers by changing only the common tape module. 3. Changes in the Unix operating system interface may be made to all drivers by changing only the common tape module.
4. By implementing all of the interface features in the common tape module, complete application compatibility is assured for all tape device drivers.
5. Implementation of new tape device drivers is greatly simplified.
6. Duplicated code is avoided, thus reducing the overall kernel size.
7. The Common Tape Module routines may be highly optimized to improve overall tape subsystem performance.
8. Tape buffering may be tuned at run time without system reboots or kernel customization. This may greatly speed up the process of tuning the buffering scheme to accommodate a new type of tape drive.
Because of the large number of possible root disk device drivers, the root disk device driver can be dynamically selected for the Unix operating system. This allows a single Unix kernel to be released which will boot on a variety of supported disk controller configurations. The following advantages are thus realized:
1. No kernel customization is required to specify root disk device drivers.
2. A single Unix kernel can be released for use on systems having different types of root disk controllers.
3. New bootable disk drivers can easily be added without changing any other parts of the kernel source code.
In the disclosed embodiment of the present invention, a common peripheral device interface module is described for use with a Unix - like operating system. This interface is flexible enough to support many types of peripheral device drivers. A common disk module (CDM) is included. The CDM contains high level disk operation routines which may be used for common reference to each disk drive on the system. Routines within the CDM are accessed by the specific device driver or device drivers. The CDM routines, in turn, call routines in the preexisting disk I/O subsystem of the Unix operating system. Additionally, the CDM routines call a group of low level routines which have been incorporated into each disk device driver. These routines communicate directly with the controllers for the specific disk drives.
As in disk drive systems, a common tape module
(CTM) is used to improve the performance and flexibility of the tape I/O system. The CTM contains high level tape operation routines which may be used for common reference to each tape drive on the system. The routines within the CTM are accessed directly by the specific device driver or device drivers. The CTM routines, in turn, calls a group of low level routines which have been incorporated into a device driver. These routines communicate directly with the controllers for the specific tape drives.
Because of the large number of possible root disk device drivers (i.e. primary disk controllers), the root disk device driver can be dynamically selected for the Unix operating system. Each disk device driver having a controller which is resident within the system signals the boot device driver that it is present. The driver which checks in first with the boot device driver is used for the root and swap device of the system. This scheme allows a precedence ordering of the controllers to be used for considering which controller should be used in a system having multiple controllers. Brief Description of the Drawings
FIGURE 1A is a block diagram showing the software configuration of a prior art Unix operating system for disk drive device drivers.
FIGURE IB is a block diagram showing the software configuration of the disclosed invention for utilizing disk drive device drivers.
FIGURE 2 is a flow chart diagram which illustrates the operation of the disclosed invention while reading from a disk.
FIGURE 3 is a flow chart diagram which illustrates the operation of the disclosed invention while opening a disk device driver.
FIGURE 4 is a flow chart diagram which illustrates the operation of the disclosed invention while closing a disk device driver.
FIGURE 5 is a flow chart diagram which illustrates the operation of the routine DISK FOUND being used for root drive selection.
FIGURE 6 is a flow chart diagram which illustrates the initialization processing for a specific disk device driver to interface with the root drive selection.
FIGURE 7 is a flow chart diagram which illustrates the operation of the initialization routine for an exemplary disk device driver which is used in root drive selection.
FIGURE 8A is a block diagram showing the software configuration of a prior art Unix operating system for tape drive device drivers.
FIGURE 8B is a block diagram showing the software configuration of the disclosed invention for using tape drive device drivers.
FIGURE 9 is a flow chart diagram which illustrates the operation of the Unix Read System Call for an SQ Tape Driver.
FIGURE 10A is a flow chart diagram which illustrates the operation of the routine SQ INTR in the reading state.
FIGURE 10B is a flow chart diagram which illustrates tie operation of the routine SQ INTR in the read-retry state. FIGURE 11 is a flow chart diagram which illustrates the operation of the Unix WRITE system call for an SQ tape driver.
FIGURE 12 is a flow chart diagram which illustrates the operation of the routine SQ INTR in the writing state.
FIGURE 13 is a flow chart diagram which illustrates the operation of the Unix IOCTL System Call for the SQ tape driver.
FIGURE 14 is a flow chart diagram which illustrates the operation of the routine TAPE BOT for the Common Tape Module routine.
FIGURE 15 is a flow chart diagram which illustrates the operation of the Unix OPEN system call for the SQ tape driver.
FIGURE 16 is a flow chart diagram which illustrates the operation of the Unix Close System Call for the SQ tape driver.
Detailed Description
FIGURE 1A is an illustration of the prior art with respect to disk device drivers for the Unix operating system. The Unix system call interface 101 provides user available Commands which request kernel operations. The operations allow user programs to access disk devices. A group of lower routines, which contain algorithms to do operating system related tasks required for access to the disk devices is found in the Unix operating system disk I/O subsystem 102. These routines interface with, and are used by a specific disk device driver 103. The device driver 103 communicates directly with the disk controller 104. The operation of the Unix operating system, depicted in FIGURE 1A, is more fully described in a book by Shaw et al., entitled Unix Internals, Tab Books, 1987, incorporated by reference herein.
FIGURE IB shows an exemplary embodiment of the present invention. This FIGURE illustrates the relationship between the common disk interface module and the Unix operating system. Unix disk operations (including input and output) are initiated through the Unix system call interface 101. The Unix system call interface, as in the previous FIGURE, is used to request operating system services. When a system call is initiated, the Unix system call interface maps I/O requests to the appropriate disk device driver. Separate operating system interface points 120 and 130 are used for each type of disk controller in the system. The proper interface point is selected by converting a device name to a device number (i.e. through device node entries found in the /dev directory) . After the appropriate operating system interface points have been selected, these interface points call the proper routines within the common disk module. The majority of program code is found within the common disk module 140 (leaving a relatively small amount of coding to be incorporated into the operating system interface points of the disk device driver) .
The common disk module 140 provides a group of routines which interact directly with the actual device drivers and with the Unix disk I/O subsystem 102. In the exemplary embodiment two disk drivers are shown, an SD disk driver which includes the SD high level interface
120, the SD low level interface 160 and the SD low level I/O routines 180; and a DC disk driver which includes the DC high level interface 130, the DC low level interface 170 and the DC low level I/O routines 190. Separate disk device drivers are used for each type of disk controller in the system.
The low level interface points 160 and 170 each includes a interrupt routine (INTR) to handle controller I/O completion and status interrupts, a strategy routine (STRATEGY) which is called by the operating system to initiate I/O and a print routine (PRINT) which is used for diagnostic error messages. These routines are called by the disk I/O subsystem 102 and by the common disk module 140. They make use of routines within the common disk module to perform their functions. These routines also communicate directly with their respective physical disk controllers 104 and 105. The implementation of source code for the disclosed invention is readily apparent to one skilled in the art of Unix operating system design from the discussion of the disk I/O system, presented below. A copy of source code, partly in the form of pseudo code, which corresponds to a preferred embodiment of the disclosed invention is included in the appendix to this specification.
To provide a further understanding of the operation of the common disk module, a typical disk read operation is described with reference to FIGURE IB. First, a user program issues a read system call which is handled by the system call interface 101. The system call interface 101 maps this request to the appropriate operating system interface routine, SD R.EAD. SD READ, in turn, makes use of the routine DISK READ within the CDM 140 to perform I/O verification (i.e. valid I/O size and offset) and to set up the I/O operation. The SD STRATEGY routine within the low level system interface 160 is then called to request the device driver to schedule an I/O operation, based upon the seek optimization algorithm for that type of disk. The routine SD STRATEGY invokes the routine DISK STRATEGY, in the CDM 140, to perform most of the scheduling. Thus the I/O operation is scheduled (placed on a queue) . When the physical controller generates an interrupt, the disk I/O subsystem 102 calls the routine SD INTR, one of the low-level interface routines 160. This routine indicates the completion of the prior I/O operation and initiates the next I/O operation from the queue. The SD low level I/O routines 180 and the routine DISK SETUP 10 from the common disk module 140 are invoked to initiate the next I/O operation. When the I/O operation completes, the physical controller 104 generates an interrupt and the disk I/O subsystem 102 calls the routine SD INTR. SD INTR, in turn, invokes the routine DISK DONE in the common disk module 140 to indicate the completion of the I/O operation. The routine DISK DONE notifies the operating system and the user program that the I/O operation is complete through the disk I/O subsystem 102 and the system call interface 101.
The flow chart diagram of FIGURE 2 illustrates the operation of the disclosed invention while reading from a disk. At step 210, the operating system interface point SD READ calls the routine DISK READ within the common disk module 140. At step 212, the routine DISK READ is run. This routine performs the steps of verifying the size and offset of the I/O operation. This routine also invokes the routines PHYSCK and PHYSIO (each within the Unix operating system Disk I/O subsystem 102) . PHYSCK is a standard Unix routine which verifies that a valid virtual address is being used for a user's data transfer request. PHYSIO is a standard Unix routine which handles paging (i.e. virtual memory) issues that arise in data transfer between user address space and the disk. At step 214, control is passed to the routine SD STRATEGY (within the low-level interface routines 160) which calls the routine DISK STRATEGY (within the CDM 140) . This routine performs the steps of validating the I/O location (i.e. the target address within the target partition) , mapping this I/O location to a physical block number, determining the cylinder on the disk, calculating the number of sectors that will be accessed, checking for bad spots on the disk, and updating various performance statistics. At step 218, using SD STRATEGY, the request to perform the disk access is added to the disk I/O queue. At step 222, the controller is examined to determine whether it is in an active state (i.e. whether an I/O operation is in progress) . If it is, then, at step 220, the SD STRATEGY routine returns control to
PHYSIO, allowing a future interrupt to initiate the I/O operation from the queue. Otherwise, at step 224, the controller is marked as being active and the routine DISK SETUP I/O (within the CDM) is initiated. At step 226, DISK SETUP I/O updates performance statistics, and sets up the physical memory address for a data transfer. Controller transfer size limitations are also handled by DISK SETUP I/O in addition to DMA address/size limitations. DISK SETUP I/O also performs bad spot remapping. At step 228, control returns to the routine SD START. At this step, the physical I/O operation is initiated by transferring the physical location of the requested access to a particular device. The physical location may be expressed in terms of head, cylinder and sector. Finally at step 230, SD START returns control to the operating system, allowing a future interrupt to signal that the I/O operation has been completed.
At step 232, the effects of a controller interrupt are shown. A controller interrupt occurs at the completion of an I/O operation. The initial result of the detection of a controller interrupt is for the routine SD INTR (within the low level interface routines 160 of the SD Device Driver) to be initiated. This includes the steps of checking the status of the controller and physical disk drive.
At step 236, the controller status is evaluated to determine whether or not there is an error condition. If an error condition is detected, then, at step 238, the controller status and disk driver status are checked to determine whether the physical I/O operation should be retried. If the operation should be retried, then, at step 240, program control switches to step 228 in which the physical I/O operation is initiated again as previously discussed. Otherwise, control is switched to step 244 in which the routine DISK DONE (within the CDM 140) is initiated. The DISK DONE routine is also initiated if a user request is successfully completed as shown at step 242. It is noted that if the user request is not completed, then program control switches to step 226, previously discussed. Step 246 represents the invocation of the routine DISK DONE. This routine performs the steps of reporting any errors that may have occurred, handling possible incomplete I/O operations, handling DMA limitations, and updating performance statistics. Finally the standard Unix routine 10 DONE is initiated from within the Disk I/O subsystem 102 to report the completion of the I/O operation.
Next, at step 248, the routine SD DONE is invoked to check the queue to determine whether more I/O operations are pending completion. If more operations are pending completion, control switches to step 224, previously discussed. Otherwise, at step 250, the controller is marked as being inactive and control is returned to the program which was interrupted at step 232.
As shown in FIGURE IB, the operating system interface is capable of performing the routines SD OPEN and SD CLOSE. SD OPEN is shown in detail in FIGURE 3. SD CLOSE is shown in detail in FIGURE 4. As a first step in opening a disk device driver, as shown in FIGURE 3, the routine SD OPEN is initiated from the system call interface 101 at step 310. This routine performs the functions of validating the device number and calling the routine DISK OPEN within the common disk module 140. The DISK OPEN routine, shown at step 320, includes the steps of checking the I/O unit to determine whether or not it is accessible, setting up DMA handling and keeping count of the number of times that the disk drive has been opened by users.
At step 330, the routine DISK GET INFO is called. This routine invokes a group of low level routines including READ FDISK TABLE (used for disk partitioning between DOS and UNIX) , READ PD INFO
(obtaining various physical disk parameters from a predetermined disk sector) , READ VTOC (obtaining the table of contents for disks that have multiple partitions) and READ ALTERNATES TABLE (for bad spot remapping) .
When a disk device drive is no longer needed by a user program, the routine SD CLOSE is called from the Unix system call interface 101 as shown in step 410 of FIGURE 4. SD CLOSE calls the routine DISK CLOSE within the Common Disk module 140. At step 420, a wait for pending I/O operations occurs. The number (count) of users having the disk drive open is updated. At step 430, a determination is made as to whether other users still have the disk drive open. If no other users currently have the drive open, then, at step 440, the routine SD PARK HEAD is called, which conditions the controller to park the disk head, and at step 450 control is returned to the Unix system call interface 101 shown in FIGURE 1. If, at step 430, the device is still held open by one or more other users, then at step 450 system control is returned to the Unix system call interface 101 without first parking the disk head.
The basic concepts of the I/O system, shown in FIGURE 1, are extendable to environments which use tape drive systems. Such an environment is demonstrated with reference to FIGURE 8A and 8B. FIGURE 8A illustrates the prior art with respect to the tape drive interface in the Unix operating system. Comparing FIGURE 8A with FIGURE 1A, it is noted that the Unix operating system does not include a tape I/O subsystem which would correspond to the disk I/O subsystem 102 of FIGURE 1A.
In the present embodiment of the invention, as shown in FIGURE 8B, a Unix system call interface 101 calls the driver routines at one of the operating system interface points 820 and 830. Separate interface points are used for each respective type of tape drive device in the system. In the exemplary embodiment, two types of tape drive device, SQ and WQ are illustrated. The driver routines from both the SQ and WQ interface points make use of the Common Tape Module 840 to perform the majority of the tape status/handling functions.
The Common Tape Module routines call specific routines within the device drivers 880 and 890 to implement low level controller functions. Separate device drivers are used for each type of device. The device drivers 880 and 890 in turn communicate directly with tape drive controllers 885 and 895 to cause the I/O operations to occur.
It is noted that there is no tape I/O subsystem shown in this FIGURE. This is because the Unix operating system does not provide such a structure. The tape I/O subsystem is implemented individually for each specific device driver. Several exemplary tape drive routines are shown in the attached FIGURES 9-16.
A tape read system call for an SCSI tape device is shown in FIGURE 9. At step 910, the routine SQ READ in the interface point 820 is invoked through the Unix system call interface 101 by a user request to read data from the tape device. The routine SQ READ, in turn, calls the routine TAPE READ in the common tape module 840. At step 912, TAPE READ validates the request size and validates the state of the tape device by referring to internal tables. Next, at step 914, the routine TAPE READ determines if the user request has been met. This step is a loop terminating condition which allows a single tape read call to request several buffers full of data from the tape device. If, at step 914, the user request has been satisfied, TAPE READ returns control to the system call interface 101 which returns control to the user program.
If, at step 914, the user request has not been met, step 918 is invoked to determine if the tape is positioned at a file mark. In this instance, no more data may be read from the tape and control is returned at step 920.
If the tape is not at a file mark, step 922 is executed to determine if the tape is inactive and the read-ahead buffered data which has been read from the tape is less than a predetermined amount i.e. the low water mark. If so, step 924 is executed to obtain a buffer from the free buffer list. At step 926, the routine TAPE READ determines if the requested read operation is the first for the tape device. If so, TAPE READ invokes the routine SQ FIRST READ in the device driver 880. Otherwise, TAPE READ invokes the routine SQ CONT READ in the driver 880. Next, at step 932, the routine SQ FIRST READ or the routine SQ CONT READ issues the tape read command to the controller for the tape device using the routine SQ READ CMD.
After issuing the read command at step 932 or if the tape device is found to be active at step 922, the routine TAPE READ waits until a full buffer is available. Due to the read-ahead nature of the buffer algorithms, a full buffer may already be available at step 934. If a full buffer is not available, TAPE READ will wait until an interrupt from the controller causes a full buffer to become available. This interrupt may indicate that the controller 885 has filled the buffer, that a file mark has been encountered or that the controller has encountered an error. In response to this interrupt, the data returned by the controller is stored into a buffer and the buffer is marked as being available. Step 936 determines if the buffer obtained indicates that the tape read operation terminated at a file mark or with an error. If so, at step 938, control is returned to the system call interface 101. Otherwise, if the tape read operation ended without exception, the requested amount of data is copied to the user data area and the tape buffer is released. At step 940 and control is transferred to step 914 to determine if the user request has been met.
The implementation of the TAPE READ routine and the routines SQ INTR, SQ WRITE, SQ IOCTL, TAPE BOT, SQ
OPEN and SQ CLOSE, and are readily apparent, to one skilled in the art of Unix operating system design, from the flow charts shown in FIGURES 10-16 and from the discussion of the disk I/O system, described above. Hence, a detailed description of these flow charts has not been included. In any case, a copy of source code, partially in pseudo code form, corresponding to a preferred embodiment of the disclosed invention is included in the appendix to this specification.
In an exemplary embodiment of the disclosed invention, a dynamic root disk selection method is used. This method allows the kernel to automatically configure itself for various types of controllers that may be present in a particular system. Thus, a Unix system using the exemplary embodiment of the invention may dynamically select its root disk device driver. This allows the release of a single Unix kernel, capable of being booted on any of a number supported disk controller configurations.
Disk drives and file systems are identified through the use of major numbers and minor numbers. A major number may be a reference to a particular device driver. This major number may then be used as an index into the appropriate switch table for device drivers. There are two switch tables: a block device switch table (BDEVSW) which contains pointers to drivers for all the devices using buffer caches, and a character device switch table (CDEVSW) which contains pointers to all the devices using either character buffers or unbuffered I/O. The minor number may refer to an individual device, i.e. a particular disk device that is being referred to on a given controller. Disk controllers may also have individual unit numbers (or device numbers) .
As shown in FIGURE 6, each disk device driver has an initialization routine. This routine is run very early in the Unix boot process. At step 610, The initialization routine first determines if its disk controller is present and functioning, for example, by running some simple diagnostic tests of the controller. If the controller is not present or is not functioning, the initialization routine has nothing to initialize so it returns at step 620. The initialization routine then enters a loop testing for the presence of each configured disk. For each disk which is present, the routine DISK FOUND is called at step 660. As shown by the flow chart of FIGURE 5, the DISK FOUND routine saves the major device driver number for the first disk controller which is identified by the DISK FOUND routine, provided that the disk has a unit number that matches the minor number assigned to the root file system disk. As shown in FIGURE 7, step 710, the boot disk (BD) driver initialization routine confirms that a controller was found for the root disk as indicated by DISK FOUND having saved a major device number. If a controller was not found, then at step 750, the system panics. Otherwise at step 720, the Boot Disk (BD) driver major number is determined. In addition, at step 730 the Unix BDEVSW and CDEVSW tables are updated to replace the BD driver entry with the selected root disk driver major number (i.e. the major number saved by DISK FOUND) . The previous root disk driver entries within the BDEVSW and CDEVSW tables are then removed (step 740) . Thus, the original device driver entries are disabled to ensure that the device driver is not opened multiple times with different major device numbers.
Since the first driver initialization routine to discover a present disk will be configured as the root disk driver, the customization order for running the initialization routines determines the selection order for disk device drivers. This configuration should match the order in which the boot ROM considers controllers.
While the invention has been described in terms of an exemplary embodiment, it is contemplated that it may be practiced as outlined above with modifications within the spirit and scope of the appended claims.

Claims

In the Claims:
1. Apparatus for transferring an input/output (I/O) request between a Unix operating system and a peripheral device controller, comprising: a. Unix system call interface means for receiving said I/O request; b. operating system interface means, responsive to said Unix system call interface means, for mapping the I/O request to an I/O routine c. device driver means, coupled to said peripheral device controller, including means for providing commands and data to said peripheral device controller and means for receiving data from said peripheral device controller; and d. common device module means, including said I/O routine, for conditioning said device driver means to communicate with said peripheral device controller.
2. The apparatus of claim 1, wherein details of said I/O request determined by the operating system are implemented substantially exclusively in said common disk module means.
3. The apparatus of claim 1, wherein the device driver means and said peripheral device controller are coupled to a first type of peripheral device, said apparatus further including: a further peripheral device controller coupled to a second type of peripheral device; further device driver means, coupled to said further peripheral device controller, including means for providing commands and data to said further peripheral device controller and means for receiving data from said further peripheral device controller; wherein said common device module means includes means for conditioning said further device driver means to communicate with said further peripheral device controller.
4. The apparatus of claim l, wherein said peripheral device controller is a disk drive controller.
5. The apparatus of claim 4, wherein said device driver includes a disk I/O subsystem of a Unix operating system.
6. The apparatus of claim 5, wherein details of any interface requirements with the disk I/O subsystem of the Unix operating system are implemented substantially exclusively in said common disk module means.
7. The apparatus of claim 4, wherein said common device module means transfers status information between the Unix system call interface means and the device driver.
8. The apparatus of claim 4, wherein said device driver means comprises: a. interrupt means for indicating that an I/O operation has been completed; b. strategy means for initiating the I/O operation; and c. printing means for providing diagnostic error messages.
9. The apparatus of claim 1, wherein said peripheral device controller is a tape drive controller.
10. The apparatus of claim 9, wherein said device driver means includes first and second sets of I/O command routines, coupled respectively to said Unix system call interface means and to said peripheral device controller, and the common device module means is configured to transfer status information between said first and second sets of command routines.
11. The apparatus of claim 10, further including buffering means, coupled to said common device module means, for receiving a predetermined amount of data provided by said second set of command routines and for providing only such data as is requested through said Unix system call interface to said first set of command routines.
12. Apparatus for communicating with a plurality of peripheral devices in a computer system, comprising: a. Unix system call interface means, for allowing a user to request an input/output (I/O) operation; b. device driver means, including means for implementing first and second peripheral operation commands for use in communicating with said Unix system call interface means and said plurality of peripheral devices, respectively; c. interface selection means, for mapping the user requested I/O operation between the Unix system call interface and the first peripheral operation commands of said device driver means; and d. common device module means coupled to said device driver means for conditioning said device driver means to sequence said second peripheral operation commands in a manner to perform operations represented by said first peripheral operation commands.
13. The apparatus of claim 12, wherein said plurality of peripheral devices includes a disk drive.
14. The apparatus of claim 12, wherein said plurality of peripheral devices includes a tape drive.
15. In a computer system, apparatus for dynamically selecting a root disk device drive for a Unix operating system, comprising: a. means for indicating presence of a boot disk drive controller from among a plurality of disk drive controllers; b. means for transferring a value which uniquely identifies said disk drive controller between said boot disk drive controller and the Unix operating system; and c. means for coupling said boot disk drive controller to a corresponding device driver.
16. The apparatus of claim 14, wherein said computer system includes means for indicating a presence of each of said disk drive controllers.
17. The .apparatus of claim 15, wherein said boot disk drive controller is the first of said plurality of disk drive controllers to indicate a presence.
18. In a computer system, an apparatus for coupling a device driver with a Unix kernel, wherein the device driver is assigned a major number, and a device, corresponding to said device driver, is assigned a unit number, said apparatus comprising: a. means for determining the major number of said device driver; b. means for determining the unit number of the device corresponding to said device driver; and c. means for updating Unix device tables to include said unit number.
19. The method of claim 17, wherein one of said devices is a root file system disk which is assigned a minor number, wherein said minor number corresponds to the unit number.
PCT/US1991/003988 1990-06-07 1991-06-06 Unix peripheral device interface WO1991019246A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP91511242A JPH05508038A (en) 1990-06-07 1991-06-06 Unix peripheral interface

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US534,428 1983-09-21
US07/534,428 US5179666A (en) 1990-06-07 1990-06-07 Block oriented peripheral device interface

Publications (1)

Publication Number Publication Date
WO1991019246A1 true WO1991019246A1 (en) 1991-12-12

Family

ID=24129985

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1991/003988 WO1991019246A1 (en) 1990-06-07 1991-06-06 Unix peripheral device interface

Country Status (4)

Country Link
US (2) US5179666A (en)
EP (1) EP0532661A1 (en)
JP (1) JPH05508038A (en)
WO (1) WO1991019246A1 (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0506278A2 (en) * 1991-03-26 1992-09-30 International Business Machines Corporation Device driver system having generic operating system interface
EP0756228A1 (en) * 1995-07-06 1997-01-29 Sun Microsystems, Inc. Augmenting volume management of information storage devices to handle direct access to storage devices
EP0982678A2 (en) * 1998-08-27 2000-03-01 Wacom Co., Ltd. Digitizer tablet with active and boundary areas

Families Citing this family (132)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7537167B1 (en) 1993-08-31 2009-05-26 Broadcom Corporation Modular, portable data processing terminal for use in a radio frequency communication network
US7383038B2 (en) * 1990-01-18 2008-06-03 Broadcom Corporation Modular, portable data processing terminal for use in a radio frequency communication network
US5179666A (en) * 1990-06-07 1993-01-12 Unisys Corporation Block oriented peripheral device interface
US5850573A (en) * 1990-08-16 1998-12-15 Canon Kabushiki Kaisha Control method for peripheral device in host computer connectable to a plurality of peripheral devices
JP2835184B2 (en) * 1990-12-12 1998-12-14 キヤノン株式会社 Information processing apparatus, device control method, and IC card
US6948006B1 (en) * 1990-12-12 2005-09-20 Canon Kabushiki Kaisha Host system that provides device driver for connected external peripheral if device driver type is available or device driver is downloaded from memory of external peripheral to host system
US5307491A (en) * 1991-02-12 1994-04-26 International Business Machines Corporation Layered SCSI device driver with error handling circuit providing sense data from device directly to the driver on the occurrence of an error
US5375221A (en) * 1991-11-27 1994-12-20 The United States Of America As Represented By The Administrator Of The National Aeronautics And Space Administration Stand-alone digital data storage control system including user control interface
US5473761A (en) * 1991-12-17 1995-12-05 Dell Usa, L.P. Controller for receiving transfer requests for noncontiguous sectors and reading those sectors as a continuous block by interspersing no operation requests between transfer requests
US5628014A (en) * 1992-03-20 1997-05-06 Paranode, Inc. Methods and apparatus for node caching at the file level
US5404524A (en) * 1992-04-03 1995-04-04 International Business Machines Corporation System for identifying attached input pointing devices, loading associated software routines, and interacting with anyone input pointing device while disabling the others
US5390301A (en) * 1992-08-11 1995-02-14 Acer Incorporated Method and apparatus for communicating device-specific information between a device driver and an operating system in a computer system
US5781797A (en) * 1992-09-30 1998-07-14 Microsoft Corporation Method and system for configuring device driver by selecting a plurality of component drivers to be included in the device driver
US5613123A (en) * 1992-09-30 1997-03-18 Microsoft Corporation Method and system for configuring and executing device drivers based on configuration requirements
EP0610677A3 (en) * 1993-02-12 1995-08-02 Ibm Bimodal communications device driver.
US5664195A (en) * 1993-04-07 1997-09-02 Sequoia Systems, Inc. Method and apparatus for dynamic installation of a driver on a computer system
US5598549A (en) * 1993-06-11 1997-01-28 At&T Global Information Solutions Company Array storage system for returning an I/O complete signal to a virtual I/O daemon that is separated from software array driver and physical device driver
US7853254B2 (en) * 1993-08-31 2010-12-14 Broadcom Corp. Modular, portable data processing terminal for use in a radio frequency communication network
US5619682A (en) * 1993-09-28 1997-04-08 Bull Hn Information Systems Inc. Executing network layered communications of a first system on a second system using a communication bridge transparent to the different communication layers
US6026454A (en) * 1993-12-17 2000-02-15 Packard Bell Nec, Inc. Interface for multiplexing and reformatting information transfer between device driver programs and a network application program which only accepts information in a predetermined format
US5590313A (en) * 1994-06-30 1996-12-31 International Business Machines Corporation Multiple protocol device interface subsystem and method
US5640592A (en) * 1994-09-30 1997-06-17 Mitsubishi Kasei America, Inc. System for transferring utility algorithm stored within a peripheral device to a host computer in a format compatible with the type of the host computer
GB9422854D0 (en) * 1994-11-12 1995-01-04 Int Computers Ltd High availability data processing system
US6484308B1 (en) * 1995-01-05 2002-11-19 Dell Products L.P. System and method for ensuring data integrity on a removable hard drive
US5721952A (en) * 1995-02-17 1998-02-24 Acer Incorporated Method and apparatus for automatic detection of disk type in a computer system
US5640562A (en) * 1995-02-27 1997-06-17 Sun Microsystems, Inc. Layering hardware support code on top of an existing operating system
US5586268A (en) * 1995-03-03 1996-12-17 Advanced System Products, Inc. Multiple peripheral adapter device driver architecture
US5727212A (en) * 1995-04-12 1998-03-10 International Business Machines Corporation Object oriented device driver system for procedural device drivers
US5915131A (en) * 1995-05-05 1999-06-22 Apple Computer, Inc. Method and apparatus for handling I/O requests utilizing separate programming interfaces to access separate I/O services
EP0752646B1 (en) * 1995-07-07 2002-03-27 Sun Microsystems, Inc. Data access implementation of device driver interface
US6480903B1 (en) * 1995-08-24 2002-11-12 Compaq Information Technologies Group, L.P. Hardware component interface for desktop computer management systems
US5805777A (en) * 1995-10-11 1998-09-08 Eastman Kodak Company Extended printer control interface
US6393492B1 (en) * 1995-11-03 2002-05-21 Texas Instruments Incorporated Method and arrangement for operating a mass memory storage peripheral computer device connected to a host computer
US6393495B1 (en) * 1995-11-21 2002-05-21 Diamond Multimedia Systems, Inc. Modular virtualizing device driver architecture
US5822614A (en) * 1996-05-31 1998-10-13 Unisys Corporation Self-identifying peripheral device
US5953522A (en) * 1996-07-01 1999-09-14 Sun Microsystems, Inc. Temporary computer file system implementing using anonymous storage allocated for virtual memory
US5923328A (en) * 1996-08-07 1999-07-13 Microsoft Corporation Method and system for displaying a hierarchical sub-tree by selection of a user interface element in a sub-tree bar control
US5933652A (en) * 1996-08-30 1999-08-03 Advanced System Products, Inc. Host independent peripheral controller with on-board firmware
WO1998018079A1 (en) * 1996-10-18 1998-04-30 Imagination Software Distributed computer architecture and process for generating reusable software components
US6185590B1 (en) 1996-10-18 2001-02-06 Imagination Software Process and architecture for use on stand-alone machine and in distributed computer architecture for client server and/or intranet and/or internet operating environments
US6128734A (en) * 1997-01-17 2000-10-03 Advanced Micro Devices, Inc. Installing operating systems changes on a computer system
KR100274742B1 (en) * 1997-01-22 2001-01-15 윤종용 Initiating method for copying hard-disk drive and copying apparatus thereof
US5978379A (en) 1997-01-23 1999-11-02 Gadzoox Networks, Inc. Fiber channel learning bridge, learning half bridge, and protocol
US5875481A (en) * 1997-01-30 1999-02-23 International Business Machines Corporation Dynamic reconfiguration of data storage devices to balance recycle throughput
US5905888A (en) * 1997-02-19 1999-05-18 On Spec Electronic, Inc. Bootable redundant hard disk attached to a PC's parallel port with rom-address auto-detect and configure during BIOS scan
US5938743A (en) * 1997-03-17 1999-08-17 Xerox Corporation Method of using the UNIX physio to allow data to be transferred on a plurality of channels concurrently
US5958022A (en) * 1997-03-21 1999-09-28 International Business Machines Corporation System and method for I/O access mode selection
US6182180B1 (en) 1997-05-13 2001-01-30 Micron Electronics, Inc. Apparatus for interfacing buses
US6253334B1 (en) 1997-05-13 2001-06-26 Micron Electronics, Inc. Three bus server architecture with a legacy PCI bus and mirrored I/O PCI buses
US6192434B1 (en) 1997-05-13 2001-02-20 Micron Electronics, Inc System for hot swapping a programmable adapter by using a programmable processor to selectively disabling and enabling power thereto upon receiving respective control signals
US6249828B1 (en) 1997-05-13 2001-06-19 Micron Electronics, Inc. Method for the hot swap of a mass storage adapter on a system including a statically loaded adapter driver
US6249834B1 (en) 1997-05-13 2001-06-19 Micron Technology, Inc. System for expanding PCI bus loading capacity
US6219734B1 (en) 1997-05-13 2001-04-17 Micron Electronics, Inc. Method for the hot add of a mass storage adapter on a system including a statically loaded adapter driver
US6499073B1 (en) 1997-05-13 2002-12-24 Micron Electronics, Inc. System using programmable processor for selectively enabling or disabling power to adapter in response to respective request signals
US6247079B1 (en) * 1997-05-13 2001-06-12 Micron Electronics, Inc Apparatus for computer implemented hot-swap and hot-add
US6163853A (en) 1997-05-13 2000-12-19 Micron Electronics, Inc. Method for communicating a software-generated pulse waveform between two servers in a network
US6195717B1 (en) 1997-05-13 2001-02-27 Micron Electronics, Inc. Method of expanding bus loading capacity
US6202111B1 (en) 1997-05-13 2001-03-13 Micron Electronics, Inc. Method for the hot add of a network adapter on a system including a statically loaded adapter driver
US6134673A (en) * 1997-05-13 2000-10-17 Micron Electronics, Inc. Method for clustering software applications
US6122758A (en) * 1997-05-13 2000-09-19 Micron Electronics, Inc. System for mapping environmental resources to memory for program access
US6138250A (en) * 1997-05-13 2000-10-24 Micron Electronics, Inc. System for reading system log
US6073255A (en) * 1997-05-13 2000-06-06 Micron Electronics, Inc. Method of reading system log
US6145098A (en) * 1997-05-13 2000-11-07 Micron Electronics, Inc. System for displaying system status
US6134668A (en) * 1997-05-13 2000-10-17 Micron Electronics, Inc. Method of selective independent powering of portion of computer system through remote interface from remote interface power supply
US6324608B1 (en) 1997-05-13 2001-11-27 Micron Electronics Method for hot swapping of network components
US6202160B1 (en) 1997-05-13 2001-03-13 Micron Electronics, Inc. System for independent powering of a computer system
US6282673B1 (en) 1997-05-13 2001-08-28 Micron Technology, Inc. Method of recording information system events
US6338150B1 (en) 1997-05-13 2002-01-08 Micron Technology, Inc. Diagnostic and managing distributed processor system
US5987554A (en) * 1997-05-13 1999-11-16 Micron Electronics, Inc. Method of controlling the transfer of information across an interface between two buses
US6269412B1 (en) 1997-05-13 2001-07-31 Micron Technology, Inc. Apparatus for recording information system events
US6170028B1 (en) 1997-05-13 2001-01-02 Micron Electronics, Inc. Method for hot swapping a programmable network adapter by using a programmable processor to selectively disabling and enabling power thereto upon receiving respective control signals
US6249885B1 (en) 1997-05-13 2001-06-19 Karl S. Johnson Method for managing environmental conditions of a distributed processor system
US6170067B1 (en) 1997-05-13 2001-01-02 Micron Technology, Inc. System for automatically reporting a system failure in a server
US6243838B1 (en) 1997-05-13 2001-06-05 Micron Electronics, Inc. Method for automatically reporting a system failure in a server
US6304929B1 (en) 1997-05-13 2001-10-16 Micron Electronics, Inc. Method for hot swapping a programmable adapter by using a programmable processor to selectively disabling and enabling power thereto upon receiving respective control signals
US6163849A (en) * 1997-05-13 2000-12-19 Micron Electronics, Inc. Method of powering up or powering down a server to a maintenance state
US6173346B1 (en) 1997-05-13 2001-01-09 Micron Electronics, Inc. Method for hot swapping a programmable storage adapter using a programmable processor for selectively enabling or disabling power to adapter slot in response to respective request signals
US6330690B1 (en) 1997-05-13 2001-12-11 Micron Electronics, Inc. Method of resetting a server
US6266721B1 (en) 1997-05-13 2001-07-24 Micron Electronics, Inc. System architecture for remote access and control of environmental management
US6269417B1 (en) 1997-05-13 2001-07-31 Micron Technology, Inc. Method for determining and displaying the physical slot number of an expansion bus device
US6243773B1 (en) 1997-05-13 2001-06-05 Micron Electronics, Inc. Configuration management system for hot adding and hot replacing devices
US6418492B1 (en) 1997-05-13 2002-07-09 Micron Electronics Method for computer implemented hot-swap and hot-add
US6179486B1 (en) 1997-05-13 2001-01-30 Micron Electronics, Inc. Method for hot add of a mass storage adapter on a system including a dynamically loaded adapter driver
US6247080B1 (en) 1997-05-13 2001-06-12 Micron Electronics, Inc. Method for the hot add of devices
US6292905B1 (en) 1997-05-13 2001-09-18 Micron Technology, Inc. Method for providing a fault tolerant network using distributed server processes to remap clustered network resources to other servers during server failure
US6363497B1 (en) 1997-05-13 2002-03-26 Micron Technology, Inc. System for clustering software applications
US6199173B1 (en) 1997-10-01 2001-03-06 Micron Electronics, Inc. Method for mapping environmental resources to memory for program access
US6065053A (en) * 1997-10-01 2000-05-16 Micron Electronics, Inc. System for resetting a server
US6154835A (en) * 1997-10-01 2000-11-28 Micron Electronics, Inc. Method for automatically configuring and formatting a computer system and installing software
US6212585B1 (en) 1997-10-01 2001-04-03 Micron Electronics, Inc. Method of automatically configuring a server after hot add of a device
US6263387B1 (en) 1997-10-01 2001-07-17 Micron Electronics, Inc. System for automatically configuring a server after hot add of a device
US6088816A (en) * 1997-10-01 2000-07-11 Micron Electronics, Inc. Method of displaying system status
US6138179A (en) * 1997-10-01 2000-10-24 Micron Electronics, Inc. System for automatically partitioning and formatting a primary hard disk for installing software in which selection of extended partition size is not related to size of hard disk
US6343320B1 (en) 1998-06-09 2002-01-29 Compaq Information Technologies Group, L.P. Automatic state consolidation for network participating devices
US6167448A (en) * 1998-06-11 2000-12-26 Compaq Computer Corporation Management event notification system using event notification messages written using a markup language
US6131118A (en) * 1998-07-07 2000-10-10 Compaq Computer Corporation Flexible display of management data in a programmable event driven processing system
US6526442B1 (en) 1998-07-07 2003-02-25 Compaq Information Technologies Group, L.P. Programmable operational system for managing devices participating in a network
US6205503B1 (en) 1998-07-17 2001-03-20 Mallikarjunan Mahalingam Method for the hot swap and add of input/output platforms and devices
US6223234B1 (en) 1998-07-17 2001-04-24 Micron Electronics, Inc. Apparatus for the hot swap and add of input/output platforms and devices
US6061745A (en) * 1998-08-13 2000-05-09 Adaptec, Inc. BBS one BIOS image multicard support
US6356965B1 (en) * 1998-09-08 2002-03-12 Compaq Computer Corporation Hotkey for network service boot
DE19854009C2 (en) 1998-11-12 2001-04-26 Reemtsma H F & Ph Inhalable aerosol delivery system
US7430171B2 (en) 1998-11-19 2008-09-30 Broadcom Corporation Fibre channel arbitrated loop bufferless switch circuitry to increase bandwidth without significant increase in cost
US6526493B1 (en) 1999-03-30 2003-02-25 Adaptec, Inc. Method and apparatus for partitioning and formatting a storage media without rebooting by creating a logical device control block (DCB) on-the-fly
US6192456B1 (en) 1999-03-30 2001-02-20 Adaptec, Inc. Method and apparatus for creating formatted fat partitions with a hard drive having a BIOS-less controller
AU5463800A (en) * 1999-06-01 2000-12-18 Bsquare Corporation Device driver platform layer
US6911855B2 (en) * 1999-06-28 2005-06-28 Broadcom Corporation Current-controlled CMOS circuit using higher voltage supply in low voltage CMOS process
US6897697B2 (en) 1999-06-28 2005-05-24 Broadcom Corporation Current-controlled CMOS circuit using higher voltage supply in low voltage CMOS process
US6424177B1 (en) * 1999-06-28 2002-07-23 Broadcom Corporation Universal single-ended parallel bus
US6424194B1 (en) 1999-06-28 2002-07-23 Broadcom Corporation Current-controlled CMOS logic family
US6567911B1 (en) 1999-12-06 2003-05-20 Adaptec, Inc. Method of conserving memory resources during execution of system BIOS
US6340899B1 (en) * 2000-02-24 2002-01-22 Broadcom Corporation Current-controlled CMOS circuits with inductive broadbanding
US6865669B1 (en) 2000-09-15 2005-03-08 Adaptec, Inc. Methods for optimizing memory resources during initialization routines of a computer system
US6864558B2 (en) * 2001-05-17 2005-03-08 Broadcom Corporation Layout technique for C3MOS inductive broadbanding
US20030225842A1 (en) * 2001-05-29 2003-12-04 Kenneth Li Distribution of messages using an address book of a user
US7239636B2 (en) 2001-07-23 2007-07-03 Broadcom Corporation Multiple virtual channels for use in network devices
US6697924B2 (en) 2001-10-05 2004-02-24 International Business Machines Corporation Storage area network methods and apparatus for identifying fiber channel devices in kernel mode
US6624699B2 (en) * 2001-10-25 2003-09-23 Broadcom Corporation Current-controlled CMOS wideband data amplifier circuits
US7295555B2 (en) 2002-03-08 2007-11-13 Broadcom Corporation System and method for identifying upper layer protocol message boundaries
US6920574B2 (en) * 2002-04-29 2005-07-19 Apple Computer, Inc. Conserving power by reducing voltage supplied to an instruction-processing portion of a processor
US7216349B2 (en) * 2002-06-05 2007-05-08 International Business Machines Corporation System and method for triggering message queue applications
US7411959B2 (en) 2002-08-30 2008-08-12 Broadcom Corporation System and method for handling out-of-order frames
US7346701B2 (en) 2002-08-30 2008-03-18 Broadcom Corporation System and method for TCP offload
US7934021B2 (en) 2002-08-29 2011-04-26 Broadcom Corporation System and method for network interfacing
US8180928B2 (en) 2002-08-30 2012-05-15 Broadcom Corporation Method and system for supporting read operations with CRC for iSCSI and iSCSI chimney
US7313623B2 (en) 2002-08-30 2007-12-25 Broadcom Corporation System and method for TCP/IP offload independent of bandwidth delay product
US7598811B2 (en) 2005-07-29 2009-10-06 Broadcom Corporation Current-controlled CMOS (C3MOS) fully differential integrated wideband amplifier/equalizer with adjustable gain and frequency response without additional power or loading
US7362174B2 (en) 2005-07-29 2008-04-22 Broadcom Corporation Current-controlled CMOS (C3MOS) wideband input data amplifier for reduced differential and common-mode reflection
US7598788B2 (en) 2005-09-06 2009-10-06 Broadcom Corporation Current-controlled CMOS (C3MOS) fully differential integrated delay cell with variable delay and high bandwidth
US9189222B1 (en) 2008-10-28 2015-11-17 Hewlett-Packard Development Company, L.P. Updating a computer system
US9479506B2 (en) 2014-04-16 2016-10-25 Intel Corporation At least one mechanism to permit, at least in part, allocation and/or configuration, at least in part, of at least one network-associated object
US10307649B1 (en) 2017-12-06 2019-06-04 Acushnet Company Multi-material iron golf club head

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0192924A2 (en) * 1985-02-28 1986-09-03 International Business Machines Corporation Device driver and adapter binding technique

Family Cites Families (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4075691A (en) * 1975-11-06 1978-02-21 Bunker Ramo Corporation Communication control unit
US4589063A (en) * 1983-08-04 1986-05-13 Fortune Systems Corporation Data processing system having automatic configuration
US4747040A (en) * 1985-10-09 1988-05-24 American Telephone & Telegraph Company Dual operating system computer
US4742447A (en) * 1986-01-16 1988-05-03 International Business Machines Corporation Method to control I/O accesses in a multi-tasking virtual memory virtual machine type data processing system
US4768150A (en) * 1986-09-17 1988-08-30 International Business Machines Corporation Application program interface to networking functions
US4975829A (en) * 1986-09-22 1990-12-04 At&T Bell Laboratories Communication interface protocol
US4901231A (en) * 1986-12-22 1990-02-13 American Telephone And Telegraph Company Extended process for a multiprocessor system
US4972368A (en) * 1988-03-04 1990-11-20 Stallion Technologies, Pty. Ltd. Intelligent serial I/O subsystem
US4951245A (en) * 1988-05-20 1990-08-21 Bull Hn Information Systems Inc. Network terminal driver communications subsystem
US5247659A (en) * 1988-10-06 1993-09-21 International Computers Limited Method for bootstrap loading in a data processing system comprising searching a plurality of program source devices for a bootstrap program if initial data indicating a bootstrap program source device fails a validity check
US5179666A (en) * 1990-06-07 1993-01-12 Unisys Corporation Block oriented peripheral device interface

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0192924A2 (en) * 1985-02-28 1986-09-03 International Business Machines Corporation Device driver and adapter binding technique

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
TANENBAUM 'Operating systems' 1987 , PRENTICE HALL, ENGLEWOOD CLIFFS , US see page 119, line 11 - page 120, line 34 see page 122; figures 3-6 *

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0506278A2 (en) * 1991-03-26 1992-09-30 International Business Machines Corporation Device driver system having generic operating system interface
EP0506278A3 (en) * 1991-03-26 1994-10-19 Ibm Device driver system having generic operating system interface
EP0756228A1 (en) * 1995-07-06 1997-01-29 Sun Microsystems, Inc. Augmenting volume management of information storage devices to handle direct access to storage devices
US5675781A (en) * 1995-07-06 1997-10-07 Sun Microsystems, Inc. Augmenting volume management of information storage devices to handle direct access to storage devices
EP0982678A2 (en) * 1998-08-27 2000-03-01 Wacom Co., Ltd. Digitizer tablet with active and boundary areas

Also Published As

Publication number Publication date
US5179666A (en) 1993-01-12
EP0532661A1 (en) 1993-03-24
JPH05508038A (en) 1993-11-11
US5430845A (en) 1995-07-04

Similar Documents

Publication Publication Date Title
US5430845A (en) Peripheral device interface for dynamically selecting boot disk device driver
CA2059921C (en) Scsi device drivers for multitasking operating system
US6948165B1 (en) Method for installing an application program, to be executed during each bootload of a computer system for presenting a user with content options prior to conventional system startup presentation, without requiring a user's participation to install the program
US6993649B2 (en) Method of altering a computer operating system to boot and run from protected media
US5526523A (en) Interface between operating system and operating system extension
US5062042A (en) System for managing data which is accessible by file address or disk address via a disk track map
KR100306456B1 (en) Method for rebooting an operating system
US5978565A (en) Method for rapid recovery from a network file server failure including method for operating co-standby servers
US6016402A (en) Method for integrating removable media disk drive into operating system recognized as fixed disk type and modifying operating system to recognize as floppy disk type
US5778226A (en) Kernels, description tables and device drivers
US7640409B1 (en) Method and apparatus for data migration and failover
US4984149A (en) Memory access control apparatus
US6421776B1 (en) Data processor having BIOS packing compression/decompression architecture
US5590376A (en) Apparatus and method for detecting and updating status of removable storage system using shared interrupt and software flag
US6081879A (en) Data processing system and virtual partitioning method for creating logical multi-level units of online storage
KR20010006749A (en) Storing system-level mass storage configuration data in non-volatile memory on each mass storage device to allow for reboot/power-on reconfiguration of all installed mass storage devices to the same configuration as last use
JPH0793219A (en) Information processor
EP1085414B1 (en) Data migration method and apparatus using storage area network (SAN)
WO2000019310A2 (en) Dual use master boot record
JPH11501429A (en) Configuration of mass storage function using host processor memory
US20050198450A1 (en) Method, system, and program for managing data migration
US8041849B2 (en) Method for handling small computer system interface (SCSI) commands via a redundant array of inexpensive disks (RAID) device driver
US5996045A (en) IDE disk drive arrangement that combines the capacity of a master drive and slave drive while hiding the presence of slave drive to a host computer
US6728830B1 (en) Method and apparatus for modifying the reserve area of a disk drive
US5072368A (en) Immediate duplication of I/O requests on a record by record basis by a computer operating system

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): JP

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): AT BE CH DE DK ES FR GB GR IT LU NL SE

WWE Wipo information: entry into national phase

Ref document number: 1991911984

Country of ref document: EP

WWP Wipo information: published in national office

Ref document number: 1991911984

Country of ref document: EP

WWW Wipo information: withdrawn in national office

Ref document number: 1991911984

Country of ref document: EP