Page MenuHomeFreeBSD

D16897.id47280.diff
No OneTemporary

D16897.id47280.diff

Index: share/man/man9/dev_refthread.9
===================================================================
--- /dev/null
+++ share/man/man9/dev_refthread.9
@@ -0,0 +1,119 @@
+.\" Copyright (c) 2018 Conrad Meyer <cem@FreeBSD.org>
+.\" 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 AUTHOR AND CONTRIBUTORS ``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 AUTHOR OR CONTRIBUTORS 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$
+.\"
+.Dd August 24, 2018
+.Dt DEV_REFTHREAD 9
+.Os
+.Sh NAME
+.Nm dev_refthread ,
+.Nm devvn_refthread ,
+.Nm dev_relthread
+.Nd safely access device methods
+.Sh SYNOPSIS
+.In sys/param.h
+.In sys/conf.h
+.Ft "struct cdevsw *"
+.Fn dev_refthread "struct cdev *dev" "int *ref"
+.Ft "struct cdevsw *"
+.Fn devvn_refthread "struct vnode *vp" "struct cdev **devp" "int *ref"
+.Ft void
+.Fn dev_relthread "struct cdev *dev" "int ref"
+.Sh DESCRIPTION
+The
+.Fn dev_refthread
+(or
+.Fn devvn_refthread )
+and
+.Fn dev_relthread
+routines provide a safe way to access
+.Xr devfs 5
+devices that may be concurrently destroyed by
+.Fn destroy_dev
+(e.g., removable media).
+.Pp
+If successful,
+.Fn dev_refthread
+and
+.Fn devvn_refthread
+acquire a reference on the associated
+.Vt "struct cdev"
+and return a non-NULL pointer to the cdev's
+.Vt "struct cdevsw"
+method table.
+For the duration of that reference, the method table object is valid and
+full destruction of the cdev is blocked.
+Of course, if a device has been removed (e.g., USB drive) all methods may
+return error statuses such as
+.Er ENXIO .
+.Pp
+If
+.Fn dev_refthread
+or
+.Fn devvn_refthread
+are unsuccessful, they return
+.Dv NULL .
+.Bf Em
+If these routines are unsuccessful, they do not increment the
+.Vt "struct cdev"
+reference count and do not initialize
+.Fa "*ref"
+in any way.
+.Ef
+.Pp
+The
+.Fn devvn_refthread
+variant of
+.Fn dev_refthread
+extracts the
+.Vt "struct cdev"
+pointer out of the
+.Dv VCHR
+.Xr vnode 9
+automatically before performing the same actions as
+.Fn dev_refthread .
+(Additionally, a pointer to the
+.Vt "struct cdev"
+is returned to the caller via
+.Fa "*devp" . )
+.Pp
+.Fn dev_relthread
+is used to release a reference to a
+.Vt "struct cdev" .
+.Fn dev_relthread
+.Sy must
+only be invoked when the associated invocation of
+.Fn dev_refthread
+or
+.Fn devvn_refthread
+returned a non-NULL
+.Vt "struct cdevsw *" .
+.Sh SEE ALSO
+.Xr destroy_dev 9 ,
+.Xr devfs 5
+.Sh CAVEATS
+Do not invoke
+.Fn dev_relthread
+unless the matching refthread routine succeeded!

File Metadata

Mime Type
text/plain
Expires
Sat, Apr 25, 8:51 AM (4 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
32118780
Default Alt Text
D16897.id47280.diff (3 KB)

Event Timeline