'\" t .\" Title: struct handle_s .\" Author: .\" Generator: DocBook XSL Stylesheets v1.78.1 .\" Date: May 2018 .\" Manual: The Linux Journalling API .\" Source: Kernel Hackers Manual 3.16.56 .\" Language: English .\" .TH "STRUCT HANDLE_S" "9" "May 2018" "Kernel Hackers Manual 3\&.16\&" "The Linux Journalling API" .\" ----------------------------------------------------------------- .\" * 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_handle_s \- this is the concrete type associated with handle_t\&. .SH "SYNOPSIS" .sp .nf struct handle_s { transaction_t * h_transaction; int h_buffer_credits; int h_ref; int h_err; unsigned int h_sync:1; unsigned int h_jdata:1; unsigned int h_aborted:1; #ifdef CONFIG_DEBUG_LOCK_ALLOC struct lockdep_map h_lockdep_map; #endif }; .fi .SH "MEMBERS" .PP h_transaction .RS 4 Which compound transaction is this update a part of? .RE .PP h_buffer_credits .RS 4 Number of remaining buffers we are allowed to dirty\&. .RE .PP h_ref .RS 4 Reference count on this handle .RE .PP h_err .RS 4 Field for caller\*(Aqs use to track errors through large fs operations .RE .PP h_sync .RS 4 flag for sync\-on\-close .RE .PP h_jdata .RS 4 flag to force data journaling .RE .PP h_aborted .RS 4 flag indicating fatal error on handle .RE .PP h_lockdep_map .RS 4 lockdep info for debugging lock problems .RE .SH "AUTHORS" .PP \fBRoger Gammans\fR <\&rgammans@computer-surgery.co.uk\&> .RS 4 Author. .RE .PP \fBStephen Tweedie\fR <\&sct@redhat.com\&> .RS 4 Author. .RE .SH "COPYRIGHT" .br