Module Name: src Committed By: christos Date: Tue Dec 19 01:46:57 UTC 2017
Modified Files: src/share/man/man4: Makefile Added Files: src/share/man/man4: intro.4 Log Message: add missing man page from FreeBSD To generate a diff of this commit: cvs rdiff -u -r1.646 -r1.647 src/share/man/man4/Makefile cvs rdiff -u -r0 -r1.1 src/share/man/man4/intro.4 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/share/man/man4/Makefile diff -u src/share/man/man4/Makefile:1.646 src/share/man/man4/Makefile:1.647 --- src/share/man/man4/Makefile:1.646 Sun Dec 10 15:51:55 2017 +++ src/share/man/man4/Makefile Mon Dec 18 20:46:57 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.646 2017/12/10 20:51:55 bouyer Exp $ +# $NetBSD: Makefile,v 1.647 2017/12/19 01:46:57 christos Exp $ # @(#)Makefile 8.1 (Berkeley) 6/18/93 MAN= aac.4 ac97.4 acardide.4 aceride.4 acphy.4 \ @@ -32,7 +32,7 @@ MAN= aac.4 ac97.4 acardide.4 aceride.4 a hdaudio.4 hifn.4 hme.4 hpacel.4 hpqlb.4 hptide.4 hythygtemp.4 \ ibmcd.4 ibmhawk.4 ichsmb.4 icmp.4 icp.4 icsphy.4 iee.4 ieee80211.4 \ ifmedia.4 igmafb.4 igphy.4 igsfb.4 iha.4 ihidev.4 ihphy.4 iic.4 ims.4 \ - inet.4 ikphy.4 inphy.4 intersil7170.4 \ + inet.4 ikphy.4 inphy.4 intersil7170.4 intro.4 \ ioasic.4 ioat.4 iop.4 iophy.4 iopsp.4 ip.4 ipkdb.4 ipmi.4 ipw.4 \ irmce.4 isp.4 ismt.4 isv.4 itesio.4 iteide.4 iwi.4 iwm.4 iwn.4 ixg.4 \ ixpide.4 \ Added files: Index: src/share/man/man4/intro.4 diff -u /dev/null src/share/man/man4/intro.4:1.1 --- /dev/null Mon Dec 18 20:46:57 2017 +++ src/share/man/man4/intro.4 Mon Dec 18 20:46:57 2017 @@ -0,0 +1,179 @@ +.\" $NetBSD: intro.4,v 1.1 2017/12/19 01:46:57 christos Exp $ +.\" +.\" Copyright (c) 1996 David E. O'Brien, Joerg Wunsch +.\" +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR +.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT, +.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +.\" +.\" $FreeBSD: head/share/man/man4/intro.4 131530 2004-07-03 18:29:24Z ru $ +.\" +.Dd January 20, 1996 +.Dt INTRO 4 +.Os +.Sh NAME +.Nm intro +.Nd introduction to devices and device drivers +.Sh DESCRIPTION +This section contains information related to devices, device drivers +and miscellaneous hardware. +.Ss The device abstraction +Device is a term used mostly for hardware-related stuff that belongs +to the system, like disks, printers, or a graphics display with its +keyboard. +There are also so-called +.Em pseudo-devices +where a device driver emulates the behaviour of a device in software +without any particular underlying hardware. +A typical example for +the latter class is +.Pa /dev/mem , +a loophole where the physical memory can be accessed using the regular +file access semantics. +.Pp +The device abstraction generally provides a common set of system calls +layered on top of them, which are dispatched to the corresponding +device driver by the upper layers of the kernel. +The set of system +calls available for devices is chosen from +.Xr open 2 , +.Xr close 2 , +.Xr read 2 , +.Xr write 2 , +.Xr ioctl 2 , +.Xr select 2 , +and +.Xr mmap 2 . +Not all drivers implement all system calls, for example, calling +.Xr mmap 2 +on terminal devices is likely to be not useful at all. +.Ss Accessing Devices +Most of the devices in a +.Ux Ns +-like operating system are accessed +through so-called +.Em device nodes , +sometimes also called +.Em special files . +They are usually located under the directory +.Pa /dev +in the file system hierarchy +(see also +.Xr hier 7 ) . +.Pp +Note that this could lead to an inconsistent state, where either there +are device nodes that do not have a configured driver associated with +them, or there may be drivers that have successfully probed for their +devices, but cannot be accessed since the corresponding device node is +still missing. +In the first case, any attempt to reference the device +through the device node will result in an error, returned by the upper +layers of the kernel, usually +.Er ENXIO . +In the second case, the device node needs to be created before the +driver and its device will be usable. +.Pp +Some devices come in two flavors: +.Em block +and +.Em character +devices, or to use better terms, buffered and unbuffered +(raw) +devices. +The traditional names are reflected by the letters +.Ql b +and +.Ql c +as the file type identification in the output of +.Ql ls -l . +Buffered devices are being accessed through the buffer cache of the +operating system, and they are solely intended to layer a file system +on top of them. +They are normally implemented for disks and disk-like +devices only and, for historical reasons, for tape devices. +.Pp +Raw devices are available for all drivers, including those that also +implement a buffered device. +For the latter group of devices, the +differentiation is conventionally done by prepending the letter +.Ql r +to the path name of the device node, for example +.Pa /dev/rda0 +denotes the raw device for the first SCSI disk, while +.Pa /dev/da0 +is the corresponding device node for the buffered device. +.Pp +Unbuffered devices should be used for all actions that are not related +to file system operations, even if the device in question is a disk +device. +This includes making backups of entire disk partitions, or +to +.Em raw +floppy disks +(i.e., those used like tapes). +.Pp +Access restrictions to device nodes are usually subject to the regular +file permissions of the device node entry, instead of being enforced +directly by the drivers in the kernel. +.Ss Drivers without device nodes +Drivers for network devices do not use device nodes in order to be +accessed. +Their selection is based on other decisions inside the +kernel, and instead of calling +.Xr open 2 , +use of a network device is generally introduced by using the system +call +.Xr socket 2 . +.Ss Configuring a driver into the kernel +For each kernel, there is a configuration file that is used as a base +to select the facilities and drivers for that kernel, and to tune +several options. +See +.Xr config 8 +for a detailed description of the files involved. +The individual manual pages in this section provide a sample line for the +configuration file in their synopsis portion. +See also the sample config file +.Pa /sys/i386/conf/LINT +(for the +.Em i386 +architecture). +.Sh SEE ALSO +.Xr close 2 , +.Xr ioctl 2 , +.Xr mmap 2 , +.Xr open 2 , +.Xr read 2 , +.Xr select 2 , +.Xr socket 2 , +.Xr write 2 , +.Xr devfs 5 , +.Xr hier 7 , +.Xr config 8 +.Sh HISTORY +This manual page first appeared in +.Fx 2.1 . +.Sh AUTHORS +.An -nosplit +This man page has been written by +.An J\(:org Wunsch +with initial input by +.An David E. O'Brien .