'\" t .\" Title: struct fence_array .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 .\" Date: January 2017 .\" Manual: Device drivers infrastructure .\" Source: Kernel Hackers Manual 4.8.15 .\" Language: English .\" .TH "STRUCT FENCE_ARRAY" "9" "January 2017" "Kernel Hackers Manual 4\&.8\&." "Device drivers infrastructure" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" struct_fence_array \- fence to represent an array of fences .SH "SYNOPSIS" .sp .nf struct fence_array { struct fence base; spinlock_t lock; unsigned num_fences; atomic_t num_pending; struct fence ** fences; }; .fi .SH "MEMBERS" .PP base .RS 4 fence base class .RE .PP lock .RS 4 spinlock for fence handling .RE .PP num_fences .RS 4 number of fences in the array .RE .PP num_pending .RS 4 fences in the array still pending .RE .PP fences .RS 4 array of the fences .RE .SH "COPYRIGHT" .br