diff options
author | dd <dd@FreeBSD.org> | 2001-07-09 09:54:33 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-07-09 09:54:33 +0000 |
commit | eaa6ee03b8ac1955cc60d99d119a22318d1baa61 (patch) | |
tree | ab3b6200f079a95b6a4418f399032563aa053a74 /share/man/man9 | |
parent | 8636b161b333b18525b6f5ffc5139079c29c0d63 (diff) | |
download | FreeBSD-src-eaa6ee03b8ac1955cc60d99d119a22318d1baa61.zip FreeBSD-src-eaa6ee03b8ac1955cc60d99d119a22318d1baa61.tar.gz |
mdoc(7) police: remove extraneous .Pp before and/or after .Sh.
Diffstat (limited to 'share/man/man9')
65 files changed, 0 insertions, 70 deletions
diff --git a/share/man/man9/BUS_PRINT_CHILD.9 b/share/man/man9/BUS_PRINT_CHILD.9 index fc2b609..36e2c34 100644 --- a/share/man/man9/BUS_PRINT_CHILD.9 +++ b/share/man/man9/BUS_PRINT_CHILD.9 @@ -40,7 +40,6 @@ .Ft int .Fn BUS_PRINT_CHILD "device_t dev" "device_t child" .Sh DESCRIPTION -.Pp This is called from system code which prints out a description of a device. It should describe the attachment that the child has with the parent. For instance the TurboLaser bus prints which node the diff --git a/share/man/man9/BUS_READ_IVAR.9 b/share/man/man9/BUS_READ_IVAR.9 index 5800cf8..45e3753 100644 --- a/share/man/man9/BUS_READ_IVAR.9 +++ b/share/man/man9/BUS_READ_IVAR.9 @@ -43,7 +43,6 @@ .Ft int .Fn BUS_WRITE_IVAR "device_t dev" "device_t child" "int index" "uintptr_t value" .Sh DESCRIPTION -.Pp These two methods manage a bus specific set of instance variables of a child device. The intention is that each different type of bus defines a set of appropriate instance variables (such as ports and diff --git a/share/man/man9/BUS_SETUP_INTR.9 b/share/man/man9/BUS_SETUP_INTR.9 index 8277f30..b22ee3c 100644 --- a/share/man/man9/BUS_SETUP_INTR.9 +++ b/share/man/man9/BUS_SETUP_INTR.9 @@ -45,7 +45,6 @@ .Ft int .Fn bus_teardown_intr "device_t dev" "struct resource *r" "void *cookiep" .Sh DESCRIPTION -.Pp The method .Nm will create and attach an interrupt handler to an interrupt diff --git a/share/man/man9/CONDSPLASSERT.9 b/share/man/man9/CONDSPLASSERT.9 index 7d54128..347f4c7 100644 --- a/share/man/man9/CONDSPLASSERT.9 +++ b/share/man/man9/CONDSPLASSERT.9 @@ -99,7 +99,6 @@ if (object->type != OBJT_SWAP) { object->type = OBJT_SWAP; object->un_pager.swp.swp_bcount = 0; .Ed -.Pp .Sh SEE ALSO .Xr config 8 , .Xr KASSERT 9 , diff --git a/share/man/man9/DEVICE_ATTACH.9 b/share/man/man9/DEVICE_ATTACH.9 index 61ca634..048cd3d 100644 --- a/share/man/man9/DEVICE_ATTACH.9 +++ b/share/man/man9/DEVICE_ATTACH.9 @@ -40,7 +40,6 @@ .Ft int .Fn DEVICE_ATTACH "device_t dev" .Sh DESCRIPTION -.Pp Attach a device to the system. The probe method will have been called and will have indicated that the device exists. diff --git a/share/man/man9/DEVICE_DETACH.9 b/share/man/man9/DEVICE_DETACH.9 index ec5491c..4532515 100644 --- a/share/man/man9/DEVICE_DETACH.9 +++ b/share/man/man9/DEVICE_DETACH.9 @@ -40,7 +40,6 @@ .Ft int .Fn DEVICE_DETACH "device_t dev" .Sh DESCRIPTION -.Pp Detach a device. This can be called if the user is replacing the driver software or if a device is about to be physically removed from the system (e.g. for pccard devices). diff --git a/share/man/man9/DEVICE_IDENTIFY.9 b/share/man/man9/DEVICE_IDENTIFY.9 index ebb729c..4981e04 100644 --- a/share/man/man9/DEVICE_IDENTIFY.9 +++ b/share/man/man9/DEVICE_IDENTIFY.9 @@ -40,7 +40,6 @@ .Ft void .Fn DEVICE_IDENTIFY "driver_t *driver" "device_t parent" .Sh DESCRIPTION -.Pp The identify function for a device is only needed for devices on busses that cannot identify their childs independently, e.g. the ISA bus. It is used to recognize the device (usually done by accessing non-ambigous @@ -56,7 +55,6 @@ for each resource (refer to .Xr bus_set_resource 9 for more information). .Sh EXAMPLES -.Pp The following pseudo-code shows an example of a function that probes for a piece of hardware and registers it and its resource (an I/O port) with the kernel. @@ -77,7 +75,6 @@ foo_identify(driver_t *driver, device_t parent) } .Ed .Sh RETURN VALUES -.Pp Zero is returned on success, otherwise an appropriate error is returned (see .Xr errno 2 ) . diff --git a/share/man/man9/DEVICE_PROBE.9 b/share/man/man9/DEVICE_PROBE.9 index 856edfe..332adb7 100644 --- a/share/man/man9/DEVICE_PROBE.9 +++ b/share/man/man9/DEVICE_PROBE.9 @@ -40,7 +40,6 @@ .Ft int .Fn DEVICE_PROBE "device_t dev" .Sh DESCRIPTION -.Pp This device method should probe to see if the device is present. It should return 0 if the device exists, .Er ENXIO diff --git a/share/man/man9/DEVICE_SHUTDOWN.9 b/share/man/man9/DEVICE_SHUTDOWN.9 index 8e64713..f28b354 100644 --- a/share/man/man9/DEVICE_SHUTDOWN.9 +++ b/share/man/man9/DEVICE_SHUTDOWN.9 @@ -40,7 +40,6 @@ .Ft int .Fn DEVICE_SHUTDOWN "device_t dev" .Sh DESCRIPTION -.Pp This is called during system shutdown to allow the driver to put the hardware into a consistent state for rebooting the computer. .Sh RETURN VALUES diff --git a/share/man/man9/SPLASSERT.9 b/share/man/man9/SPLASSERT.9 index e6a95bf..6b7f65d 100644 --- a/share/man/man9/SPLASSERT.9 +++ b/share/man/man9/SPLASSERT.9 @@ -100,7 +100,6 @@ rtalloc(ro) rtalloc_ign(ro, 0UL); } .Ed -.Pp .Sh SEE ALSO .Xr config 8 , .Xr CONDSPLASSERT 9 , diff --git a/share/man/man9/VFS_CHECKEXP.9 b/share/man/man9/VFS_CHECKEXP.9 index f177f1e..6f73dde 100644 --- a/share/man/man9/VFS_CHECKEXP.9 +++ b/share/man/man9/VFS_CHECKEXP.9 @@ -66,7 +66,6 @@ with the address of an appropriate structure and the address of the client, .Fa nam , to verify that the client can access this filesystem. -.Pp .Sh RETURN VALUES The export flags and anonymous credentials specific to the client (returned by diff --git a/share/man/man9/VFS_FHTOVP.9 b/share/man/man9/VFS_FHTOVP.9 index 971cd8f..ec61038 100644 --- a/share/man/man9/VFS_FHTOVP.9 +++ b/share/man/man9/VFS_FHTOVP.9 @@ -64,7 +64,6 @@ filehandle. A call to this function should generally be preceded by a call to .Xr VFS_CHECKEXP 9 to check if the file is accessible to the client. -.Pp .Sh RETURN VALUES The locked vnode for the file will be returned in .Fa *vpp . diff --git a/share/man/man9/VOP_ADVLOCK.9 b/share/man/man9/VOP_ADVLOCK.9 index 311dda2..cdbdd36 100644 --- a/share/man/man9/VOP_ADVLOCK.9 +++ b/share/man/man9/VOP_ADVLOCK.9 @@ -42,7 +42,6 @@ .Ft int .Fn VOP_ADVLOCK "struct vnode *vp" "caddr_t id" "int op" "struct flock *fl" "int flags" .Sh DESCRIPTION -.Pp The arguments are: .Bl -tag -width flags .It Ar vp diff --git a/share/man/man9/VOP_BWRITE.9 b/share/man/man9/VOP_BWRITE.9 index 71cec1f..150e4a1 100644 --- a/share/man/man9/VOP_BWRITE.9 +++ b/share/man/man9/VOP_BWRITE.9 @@ -40,7 +40,6 @@ .Ft int .Fn VOP_BWRITE "struct vnode *vp" "struct buf *bp" .Sh DESCRIPTION -.Pp The arguments are: .Bl -tag -width 2n .It Ar vp diff --git a/share/man/man9/VOP_GETPAGES.9 b/share/man/man9/VOP_GETPAGES.9 index 0194327..f42a710 100644 --- a/share/man/man9/VOP_GETPAGES.9 +++ b/share/man/man9/VOP_GETPAGES.9 @@ -44,7 +44,6 @@ .Ft int .Fn VOP_PUTPAGES "struct vnode *vp" "vm_page_t *m" "int count" "int sync" "int *rtvals" "vm_ooffset_t offset" .Sh DESCRIPTION -.Pp The arguments are: .Bl -tag -width reqpage .It Ar vp diff --git a/share/man/man9/VOP_INACTIVE.9 b/share/man/man9/VOP_INACTIVE.9 index ac0a028..2401ffb 100644 --- a/share/man/man9/VOP_INACTIVE.9 +++ b/share/man/man9/VOP_INACTIVE.9 @@ -43,7 +43,6 @@ .Ft int .Fn VOP_RECLAIM "struct vnode *vp" "struct proc *p" .Sh DESCRIPTION -.Pp The arguments are: .Bl -tag -width 2n .It Ar vp @@ -60,13 +59,11 @@ is called when a vnode is being reused for a different filesystem. Any filesystem specific resources associated with the vnode should be freed. .Sh LOCKS -.Pp For VOP_INACTIVE, the vp will be locked on entry. Your VOP_INACTIVE code must unlock the vp prior to returning. .Pp For VOP_RECLAIM, the vp will not be locked on entry and should be left unlocked on return. -.Pp .Sh PSEUDOCODE .Bd -literal int diff --git a/share/man/man9/VOP_LEASE.9 b/share/man/man9/VOP_LEASE.9 index 117cbba..66db58d 100644 --- a/share/man/man9/VOP_LEASE.9 +++ b/share/man/man9/VOP_LEASE.9 @@ -44,7 +44,6 @@ This entry point is currently not implemented. I believe the idea is to validate a vnode for a particular set of user credentials and operation type. The two operation types supported are LEASE_READ and LEASE_WRITE. The function currently always returns 0. -.Pp .Sh LOCKS The vnode must be exclusively locked on entry, and should remain exclusively locked on return. diff --git a/share/man/man9/VOP_LOCK.9 b/share/man/man9/VOP_LOCK.9 index e2f3103..c2363ef 100644 --- a/share/man/man9/VOP_LOCK.9 +++ b/share/man/man9/VOP_LOCK.9 @@ -50,7 +50,6 @@ .Ft int .Fn vn_lock "struct vnode *vp" "int flags" "struct proc *p" .Sh DESCRIPTION -.Pp These calls are used to serialize access to the filesystem, such as to prevent two writes to the same file from happening at the same time. diff --git a/share/man/man9/VOP_PATHCONF.9 b/share/man/man9/VOP_PATHCONF.9 index bc4a8d4..bf6febe 100644 --- a/share/man/man9/VOP_PATHCONF.9 +++ b/share/man/man9/VOP_PATHCONF.9 @@ -41,7 +41,6 @@ .Ft int .Fn VOP_PATHCONF "struct vnode *vp" "int name" "int *retval" .Sh DESCRIPTION -.Pp The arguments are: .Bl -tag -width retval .It Ar vp diff --git a/share/man/man9/VOP_PRINT.9 b/share/man/man9/VOP_PRINT.9 index 3bc8872..5eed854 100644 --- a/share/man/man9/VOP_PRINT.9 +++ b/share/man/man9/VOP_PRINT.9 @@ -40,7 +40,6 @@ .Ft int .Fn VOP_PRINT "struct vnode *vp" .Sh DESCRIPTION -.Pp The arguments are: .Bl -tag -width 2n .It Ar vp diff --git a/share/man/man9/VOP_REALLOCBLKS.9 b/share/man/man9/VOP_REALLOCBLKS.9 index d0a8315..c7cfd0a 100644 --- a/share/man/man9/VOP_REALLOCBLKS.9 +++ b/share/man/man9/VOP_REALLOCBLKS.9 @@ -40,7 +40,6 @@ .Ft int .Fn VOP_REALLOCBLKS "struct vnode *vp" "struct cluster_save *buflist" .Sh DESCRIPTION -.Pp The arguments are: .Bl -tag -width buflist .It Ar vp diff --git a/share/man/man9/VOP_STRATEGY.9 b/share/man/man9/VOP_STRATEGY.9 index 8957cb0..f15d665 100644 --- a/share/man/man9/VOP_STRATEGY.9 +++ b/share/man/man9/VOP_STRATEGY.9 @@ -40,7 +40,6 @@ .Ft int .Fn VOP_STRATEGY "struct vnode *vp" "struct buf *bp" .Sh DESCRIPTION -.Pp The arguments are: .Bl -tag -width 2n .It Ar vp diff --git a/share/man/man9/at_exit.9 b/share/man/man9/at_exit.9 index 2f39653..7561279 100644 --- a/share/man/man9/at_exit.9 +++ b/share/man/man9/at_exit.9 @@ -56,7 +56,6 @@ must be called with the exact .Fa func argument as the corresponding call to .Fn at_exit . -.Pp .Sh RETURN VALUES The .Fa at_exit diff --git a/share/man/man9/at_fork.9 b/share/man/man9/at_fork.9 index 53d6f2b..0fe439a 100644 --- a/share/man/man9/at_fork.9 +++ b/share/man/man9/at_fork.9 @@ -61,7 +61,6 @@ must be called with the exact .Fa func argument as the corresponding call to .Fn at_fork . -.Pp .Sh RETURN VALUES .Fn at_fork returns an errno, 0 meaning success. diff --git a/share/man/man9/boot.9 b/share/man/man9/boot.9 index 6ce3ac1..7d0352e 100644 --- a/share/man/man9/boot.9 +++ b/share/man/man9/boot.9 @@ -98,7 +98,6 @@ If the system has not finished autoconfiguration, runs any shutdown hooks previously set by .Xr at_shutdown 9 , prints a message, and halts the system. -.Pp .Sh SEE ALSO .Xr at_shutdown 9 , .Xr vfs_unmountall 9 diff --git a/share/man/man9/buf.9 b/share/man/man9/buf.9 index bd48fee..d3fdef1 100644 --- a/share/man/man9/buf.9 +++ b/share/man/man9/buf.9 @@ -38,7 +38,6 @@ .Nm BUF .Nd "kernel buffer I/O scheme used in FreeBSD VM system" .Sh DESCRIPTION -.Pp The kernel implements a KVM abstraction of the buffer cache which allows it to map potentially disparate vm_page's into contiguous KVM for use by (mainly filesystem) devices and device I/O. This abstraction supports diff --git a/share/man/man9/bus_alloc_resource.9 b/share/man/man9/bus_alloc_resource.9 index f8056e6..d00de18 100644 --- a/share/man/man9/bus_alloc_resource.9 +++ b/share/man/man9/bus_alloc_resource.9 @@ -44,7 +44,6 @@ .Ft struct resource * .Fn bus_alloc_resource "device_t dev" "int type" "int *rid" "u_long start" "u_long end" "u_long count" "u_int flags" .Sh DESCRIPTION -.Pp This is an easy interface to the resource-management functions. It hides the indirection through the parent's method table. This function generally should be called in attach, but (except in some diff --git a/share/man/man9/bus_generic_attach.9 b/share/man/man9/bus_generic_attach.9 index 8bbcffc..a389227 100644 --- a/share/man/man9/bus_generic_attach.9 +++ b/share/man/man9/bus_generic_attach.9 @@ -42,7 +42,6 @@ for busses .Ft int .Fn bus_generic_attach "device_t dev" .Sh DESCRIPTION -.Pp This function provides an implementation of the .Xr DEVICE_ATTACH 9 method which can be used by most bus code. It simply calls diff --git a/share/man/man9/bus_generic_detach.9 b/share/man/man9/bus_generic_detach.9 index 8b15c3b..b4e135a 100644 --- a/share/man/man9/bus_generic_detach.9 +++ b/share/man/man9/bus_generic_detach.9 @@ -42,7 +42,6 @@ for busses .Ft int .Fn bus_generic_detach "device_t dev" .Sh DESCRIPTION -.Pp This function provides an implementation of the .Xr DEVICE_DETACH 9 method diff --git a/share/man/man9/bus_generic_map_intr.9 b/share/man/man9/bus_generic_map_intr.9 index ce01950..8205a74 100644 --- a/share/man/man9/bus_generic_map_intr.9 +++ b/share/man/man9/bus_generic_map_intr.9 @@ -42,7 +42,6 @@ for busses .Ft int .Fn bus_generic_map_intr "device_t dev" "device_t child" "driver_intr_t *intr" "void *arg" .Sh DESCRIPTION -.Pp This simple implementation of .Xr BUS_MAP_INTR 9 just calls the method of diff --git a/share/man/man9/bus_generic_print_child.9 b/share/man/man9/bus_generic_print_child.9 index 2e7f830..c7b6ae2 100644 --- a/share/man/man9/bus_generic_print_child.9 +++ b/share/man/man9/bus_generic_print_child.9 @@ -42,7 +42,6 @@ for busses .Ft int .Fn bus_generic_print_child "device_t dev" "device_t child" .Sh DESCRIPTION -.Pp This implementation prints out the default device announcement message. Given device 'foo0' on bus 'bar0' where foo0 has the name "FooCard 1234" the following would be printed: diff --git a/share/man/man9/bus_generic_read_ivar.9 b/share/man/man9/bus_generic_read_ivar.9 index a4f8f8a..88f30c1 100644 --- a/share/man/man9/bus_generic_read_ivar.9 +++ b/share/man/man9/bus_generic_read_ivar.9 @@ -47,7 +47,6 @@ for busses .Ft int .Fn bus_generic_write_ivar "device_t dev" "device_t child" "int index" "uintptr_t value" .Sh DESCRIPTION -.Pp These functions simply return .Er ENOENT . .Sh SEE ALSO diff --git a/share/man/man9/bus_generic_shutdown.9 b/share/man/man9/bus_generic_shutdown.9 index b51d6e0..3cc6981 100644 --- a/share/man/man9/bus_generic_shutdown.9 +++ b/share/man/man9/bus_generic_shutdown.9 @@ -42,7 +42,6 @@ for busses .Ft int .Fn bus_generic_shutdown "device_t dev" .Sh DESCRIPTION -.Pp This function provides an implementation of the .Xr DEVICE_SHUTDOWN 9 method diff --git a/share/man/man9/devclass.9 b/share/man/man9/devclass.9 index 8539e34..f4d1106 100644 --- a/share/man/man9/devclass.9 +++ b/share/man/man9/devclass.9 @@ -37,7 +37,6 @@ .Sh SYNOPSIS .Vt typedef struct devclass *devclass_t ; .Sh DESCRIPTION -.Pp The .Dv devclass object has two main functions in the system. The first is to manage diff --git a/share/man/man9/devclass_add_driver.9 b/share/man/man9/devclass_add_driver.9 index b4c0a9f..ec97313 100644 --- a/share/man/man9/devclass_add_driver.9 +++ b/share/man/man9/devclass_add_driver.9 @@ -46,7 +46,6 @@ .Ft driver_t * .Fn devclass_find_driver "devclass_t dc" "const char *name" .Sh DESCRIPTION -.Pp These functions can be used to add new drivers into the system, remove old ones and search for existing ones. Normally drivers are added automatically during system initialisation. diff --git a/share/man/man9/devclass_find.9 b/share/man/man9/devclass_find.9 index 6fa9e2c..dcce970 100644 --- a/share/man/man9/devclass_find.9 +++ b/share/man/man9/devclass_find.9 @@ -40,7 +40,6 @@ .Ft devclass_t .Fn devclass_find "const char *classname" .Sh DESCRIPTION -.Pp Search for the .Dv devclass with the specified name. diff --git a/share/man/man9/devclass_get_device.9 b/share/man/man9/devclass_get_device.9 index 1b9e0a4..0f09893 100644 --- a/share/man/man9/devclass_get_device.9 +++ b/share/man/man9/devclass_get_device.9 @@ -40,7 +40,6 @@ .Ft device_t .Fn devclass_get_device "devclass_t dc" "int unit" .Sh DESCRIPTION -.Pp This function retrieves the device instance with the given unit number and returns it. .Sh RETURN VALUES diff --git a/share/man/man9/devclass_get_devices.9 b/share/man/man9/devclass_get_devices.9 index 100c633..cbdb673 100644 --- a/share/man/man9/devclass_get_devices.9 +++ b/share/man/man9/devclass_get_devices.9 @@ -40,7 +40,6 @@ .Ft int .Fn devclass_get_devices "devclass_t dc" "device_t **devlistp" "int *devcountp" .Sh DESCRIPTION -.Pp Retrieve a list of all device instances currently in the devclass and return the list in .Fa *devlistp diff --git a/share/man/man9/devclass_get_maxunit.9 b/share/man/man9/devclass_get_maxunit.9 index e1d6468..7f21caa 100644 --- a/share/man/man9/devclass_get_maxunit.9 +++ b/share/man/man9/devclass_get_maxunit.9 @@ -40,7 +40,6 @@ .Ft int .Fn devclass_get_maxunit "devclass_t dc" .Sh DESCRIPTION -.Pp Returns the maximum unit number allocated to device instances in the specified .Dv devclass . diff --git a/share/man/man9/devclass_get_name.9 b/share/man/man9/devclass_get_name.9 index 3241a42..72760d2 100644 --- a/share/man/man9/devclass_get_name.9 +++ b/share/man/man9/devclass_get_name.9 @@ -40,7 +40,6 @@ .Ft const char * .Fn devclass_get_name "devclass_t dc" .Sh DESCRIPTION -.Pp Return the name of a devclass. .Sh SEE ALSO .Xr devclass 9 , diff --git a/share/man/man9/devclass_get_softc.9 b/share/man/man9/devclass_get_softc.9 index 9472945..2b0cf77 100644 --- a/share/man/man9/devclass_get_softc.9 +++ b/share/man/man9/devclass_get_softc.9 @@ -40,7 +40,6 @@ .Ft void * .Fn devclass_get_softc "devclass_t dc" "int unit" .Sh DESCRIPTION -.Pp This function retrieves the driver private instance variables for the device with the given unit number and returns it. .Sh RETURN VALUES diff --git a/share/man/man9/device.9 b/share/man/man9/device.9 index 1cb1524..c5a7b38 100644 --- a/share/man/man9/device.9 +++ b/share/man/man9/device.9 @@ -37,7 +37,6 @@ .Sh SYNOPSIS .Vt typedef struct device *device_t ; .Sh DESCRIPTION -.Pp The device object represents a piece of hardware attached to the system such as an expansion card, the bus which that card is plugged into, disk drives attached to the expansion card etc. diff --git a/share/man/man9/device_add_child.9 b/share/man/man9/device_add_child.9 index 954772d..d512c70 100644 --- a/share/man/man9/device_add_child.9 +++ b/share/man/man9/device_add_child.9 @@ -43,7 +43,6 @@ .Ft device_t .Fn device_add_child_ordered "device_t dev" "int order" "const char *name" "int unit" .Sh DESCRIPTION -.Pp Create a new child device of .Fa dev . The diff --git a/share/man/man9/device_delete_child.9 b/share/man/man9/device_delete_child.9 index b9ad6c0..d82a589 100644 --- a/share/man/man9/device_delete_child.9 +++ b/share/man/man9/device_delete_child.9 @@ -40,7 +40,6 @@ .Ft int .Fn device_delete_child "device_t dev" "device_t child" .Sh DESCRIPTION -.Pp The specified device is removed from .Fa dev and deleted. diff --git a/share/man/man9/device_enable.9 b/share/man/man9/device_enable.9 index 7185dba..21e4dce 100644 --- a/share/man/man9/device_enable.9 +++ b/share/man/man9/device_enable.9 @@ -46,7 +46,6 @@ .Ft int .Fn device_is_enabled "device_t dev" .Sh DESCRIPTION -.Pp Each device has an enabled flag associated with it. A device is enabled by default when it is created but may be disabled (for instance to prevent a destructive or time consuming probe attempt). diff --git a/share/man/man9/device_find_child.9 b/share/man/man9/device_find_child.9 index 56b1d8c..20dcde4 100644 --- a/share/man/man9/device_find_child.9 +++ b/share/man/man9/device_find_child.9 @@ -40,7 +40,6 @@ .Ft device_t .Fn device_find_child "device_t dev" "const char* name" "int unit" .Sh DESCRIPTION -.Pp This function looks for a specific child of .Dv dev . with the given diff --git a/share/man/man9/device_get_children.9 b/share/man/man9/device_get_children.9 index 1893848..6d36406 100644 --- a/share/man/man9/device_get_children.9 +++ b/share/man/man9/device_get_children.9 @@ -40,7 +40,6 @@ .Ft int .Fn device_get_children "device_t dev" "device_t **devlistp" "int *devcountp" .Sh DESCRIPTION -.Pp Retrieve a list of all device instances currently connected to .Pa dev and return the list in diff --git a/share/man/man9/device_get_devclass.9 b/share/man/man9/device_get_devclass.9 index 0b060cd..59e3a79 100644 --- a/share/man/man9/device_get_devclass.9 +++ b/share/man/man9/device_get_devclass.9 @@ -40,7 +40,6 @@ .Ft devclass_t .Fn device_get_devclass "device_t dev" .Sh DESCRIPTION -.Pp The current devclass associated with the device is returned. If the device has no devclass, .Dv NULL diff --git a/share/man/man9/device_get_driver.9 b/share/man/man9/device_get_driver.9 index 67fd91e..c9c9b36 100644 --- a/share/man/man9/device_get_driver.9 +++ b/share/man/man9/device_get_driver.9 @@ -40,7 +40,6 @@ .Ft driver_t * .Fn device_get_driver "device_t dev" .Sh DESCRIPTION -.Pp The current driver associated with the device is returned. If the device has no driver, .Dv NULL diff --git a/share/man/man9/device_get_ivars.9 b/share/man/man9/device_get_ivars.9 index 5669117..8ffb51e 100644 --- a/share/man/man9/device_get_ivars.9 +++ b/share/man/man9/device_get_ivars.9 @@ -40,7 +40,6 @@ .Ft void * .Fn device_get_ivars "device_t dev" .Sh DESCRIPTION -.Pp Return the bus-specific instance variables of a device. .Sh SEE ALSO .Xr device 9 diff --git a/share/man/man9/device_get_softc.9 b/share/man/man9/device_get_softc.9 index 24bd23e..2fedd8f 100644 --- a/share/man/man9/device_get_softc.9 +++ b/share/man/man9/device_get_softc.9 @@ -40,7 +40,6 @@ .Ft void * .Fn device_get_softc "device_t dev" .Sh DESCRIPTION -.Pp Return the driver-specific instance variables of a device. .Sh RETURN VALUES The pointer to the driver-specific instance variable is returned. diff --git a/share/man/man9/device_get_state.9 b/share/man/man9/device_get_state.9 index 5185484..c49ce71 100644 --- a/share/man/man9/device_get_state.9 +++ b/share/man/man9/device_get_state.9 @@ -49,7 +49,6 @@ .Ft int .Fn device_is_alive "device_t dev" .Sh DESCRIPTION -.Pp The current state of a device is accessed by calling .Xr device_get_state 9 which returns diff --git a/share/man/man9/device_get_unit.9 b/share/man/man9/device_get_unit.9 index 7c2a83f..65ca4e0 100644 --- a/share/man/man9/device_get_unit.9 +++ b/share/man/man9/device_get_unit.9 @@ -40,7 +40,6 @@ .Ft int .Fn device_get_unit "device_t dev" .Sh DESCRIPTION -.Pp Return the unit number of the device. .Sh SEE ALSO .Xr device 9 diff --git a/share/man/man9/device_probe_and_attach.9 b/share/man/man9/device_probe_and_attach.9 index bbe6955..5782d36 100644 --- a/share/man/man9/device_probe_and_attach.9 +++ b/share/man/man9/device_probe_and_attach.9 @@ -40,7 +40,6 @@ .Ft int .Fn device_probe_and_attach "device_t dev" .Sh DESCRIPTION -.Pp This function is called during autoconfiguration to initialise the devices in the system. For each device, the .Xr DEVICE_PROBE 9 diff --git a/share/man/man9/device_quiet.9 b/share/man/man9/device_quiet.9 index 5dfa5d5..dd274b2 100644 --- a/share/man/man9/device_quiet.9 +++ b/share/man/man9/device_quiet.9 @@ -46,7 +46,6 @@ .Ft int .Fn device_is_quiet "device_t dev" .Sh DESCRIPTION -.Pp Each device has a quiet flag associated with it. A device is verbose by default when it is created but may be quieted to prevent the device identification string to be printed during probe. diff --git a/share/man/man9/device_set_desc.9 b/share/man/man9/device_set_desc.9 index fae5839..90b681b 100644 --- a/share/man/man9/device_set_desc.9 +++ b/share/man/man9/device_set_desc.9 @@ -46,7 +46,6 @@ .Ft const char * .Fn device_get_desc "device_t dev" .Sh DESCRIPTION -.Pp Manipulate the verbose description of a device. This description (if present) is printed as part of the message when it is attached during autoconfiguration. diff --git a/share/man/man9/device_set_flags.9 b/share/man/man9/device_set_flags.9 index cee9dc9..aaefaa3 100644 --- a/share/man/man9/device_set_flags.9 +++ b/share/man/man9/device_set_flags.9 @@ -43,7 +43,6 @@ .Ft u_int32_t .Fn device_get_flags "device_t dev" .Sh DESCRIPTION -.Pp Each device supports a set of driver-dependent flags which are often used to control device behaviour. These flags are read by calling diff --git a/share/man/man9/kernacc.9 b/share/man/man9/kernacc.9 index ab83a94..5fe6021 100644 --- a/share/man/man9/kernacc.9 +++ b/share/man/man9/kernacc.9 @@ -78,14 +78,12 @@ to represent an user space address. The process context to use for this operation is taken from the global variable .Va curproc . -.Pp .Sh RETURN VALUES Both functions return boolean true if the type of access specified by .Fa rw is permitted. Otherwise boolean false is returned. -.Pp .Sh BUGS The process pointer should be passed in as an argument to .Fn useracc . diff --git a/share/man/man9/kobj.9 b/share/man/man9/kobj.9 index dec8994..da14b08 100644 --- a/share/man/man9/kobj.9 +++ b/share/man/man9/kobj.9 @@ -51,7 +51,6 @@ .Fn kobj_delete "kobj_t obj" "struct malloc_type *mtype" .Fn DEFINE_CLASS name methods size .Sh DESCRIPTION -.Pp The kernel object system implements an object-oriented programming system in the .Fx diff --git a/share/man/man9/kthread.9 b/share/man/man9/kthread.9 index ca22b13..a183bc6 100644 --- a/share/man/man9/kthread.9 +++ b/share/man/man9/kthread.9 @@ -54,7 +54,6 @@ .Ft void .Fn kthread_suspend_check "struct proc *p" .Sh DESCRIPTION -.Pp The function .Fn kproc_start is used to start diff --git a/share/man/man9/lock.9 b/share/man/man9/lock.9 index 595c2a7..fc36abb 100644 --- a/share/man/man9/lock.9 +++ b/share/man/man9/lock.9 @@ -46,7 +46,6 @@ .Ft int .Fn lockstatus "struct lock *lkp" "struct proc *p" .Sh DESCRIPTION -.Pp The function .Fn lockinit is used to initialise a lock. diff --git a/share/man/man9/physio.9 b/share/man/man9/physio.9 index 5f57ecd..f16238e 100644 --- a/share/man/man9/physio.9 +++ b/share/man/man9/physio.9 @@ -115,7 +115,6 @@ set to anything other than .Dv UIO_USERSPACE , are undefined. .El -.Pp .Sh RETURN VALUES If successful .Fn physio diff --git a/share/man/man9/random.9 b/share/man/man9/random.9 index eaa9b87..1e55c2c 100644 --- a/share/man/man9/random.9 +++ b/share/man/man9/random.9 @@ -125,7 +125,6 @@ The .Fn read_random function returns the number of bytes placed in .Ar buffer . -.Pp .Sh AUTHORS .An Dan Moschuk wrote diff --git a/share/man/man9/sysctl_add_oid.9 b/share/man/man9/sysctl_add_oid.9 index 68ee915..9f62a88 100644 --- a/share/man/man9/sysctl_add_oid.9 +++ b/share/man/man9/sysctl_add_oid.9 @@ -481,7 +481,6 @@ newtree.newint .Ed .Pp .Em "Care should be taken to free all oids once they are no longer needed!" -.Pp .Sh SEE ALSO .Xr sysctl 8 , .Xr sysctl_ctx_free 9 , diff --git a/share/man/man9/taskqueue.9 b/share/man/man9/taskqueue.9 index 6356594..6cbb982 100644 --- a/share/man/man9/taskqueue.9 +++ b/share/man/man9/taskqueue.9 @@ -67,7 +67,6 @@ struct task { .Fn TASKQUEUE_DECLARE "name" .Fn TASKQUEUE_DEFINE "name" "enqueue" "context" "init" .Sh DESCRIPTION -.Pp These functions provide a simple interface for asynchronous execution of code. .Pp |