Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

__register_chrdev(9) [suse man page]

__REGISTER_CHRDEV(9)						   Char devices 					      __REGISTER_CHRDEV(9)

NAME
__register_chrdev - create and register a cdev occupying a range of minors SYNOPSIS
int __register_chrdev(unsigned int major, unsigned int baseminor, unsigned int count, const char * name, const struct file_operations * fops); ARGUMENTS
major major device number or 0 for dynamic allocation baseminor first of the requested range of minor numbers count the number of minor numbers required name name of this range of devices fops file operations associated with this devices DESCRIPTION
If major == 0 this functions will dynamically allocate a major and return its number. If major > 0 this function will attempt to reserve a device with the given major number and will return zero on success. Returns a -ve errno on failure. The name of this device has nothing to do with the name of the device in /dev. It only helps to keep track of the different owners of devices. If your module name has only one type of devices it's ok to use e.g. the name of the module here. COPYRIGHT
Kernel Hackers Manual 2.6. July 2010 __REGISTER_CHRDEV(9)

Check Out this Related Man Page

autopush(1M)															      autopush(1M)

NAME
autopush - manage system database of automatically pushed STREAMS modules SYNOPSIS
file major minor major minor DESCRIPTION
manages the system database that is used for automatic configuration of STREAMS devices. The command is used in three different ways as dictated by the and command-line options described below. Options recognizes the following command-line options and arguments: Using the configuration information contained in file, load the system database with the names of the STREAMS devices and a list of modules to use for each device. When a device is subsequently opened, the HP-UX STREAMS subsystem pushes the modules onto the stream for the device. If appears as a file argument, uses the standard input. file must contain one or more lines of at least four fields separated by a space as shown below: major minor lastminor module1 module2 ... moduleN The first field major can be either an integer or a device name. The device name is the name for the device used in the master file. The next two fields are integers. If minor is set to -1, then all minor devices for the specified major are configured and lastminor is ignored. If lastminor is 0, then only a single minor device is configured. To configure a range of minor devices for a major device, minor must be less then lastminor. The remaining field(s) list one or more module names. Each module is pushed in the order specified. A maximum of eight modules can be pushed. Any text after a # character in file is treated as a comment for that line only. This option is also used to restore device configuration information previously removed by However, when used in such a manner, the entire database is restored, not just the information that was previously removed. Display current configuration information from the system database for the STREAMS device specified by the major device number (or device name for the device from the master file) and minor number. If a range of minors has been previously configured then returns the configuration information for the first minor in the range, in addition to other information. Remove configuration information from the system database for the STREAMS device specified by the major device number (or device name for the device from the master file and minor number. Removal is performed on the database only, not on the original configuration file. Therefore, the original configuration can be restored by using the file option. To permanently exclude a STREAMS device from the database, its information must be removed from the configuration file. If minor matches the first minor of a previously configured range then removes the configuration information for the entire configured range. EXAMPLES
If the file contains: Then will cause and to be pushed whenever major device is opened, and and to be pushed for the first six opens of device This next example lists information about the stream for major device and its minor device FILES
NLS catalog for SEE ALSO
sad(7), streamio(7). autopush(1M)
Man Page