struct handle_s

Name

struct handle_s --  The handle_s type is the concrete type associated with

Synopsis

struct handle_s {
  transaction_t * h_transaction;
  int h_buffer_credits;
  int h_ref;
  int h_err;
  struct list_head h_jcb;
};  

Members

h_transaction

Which compound transaction is this update a part of?

h_buffer_credits

Number of remaining buffers we are allowed to dirty.

h_ref

Reference count on this handle

h_err

Field for caller's use to track errors through large fs operations

h_jcb

List of application registered callbacks for this handle.

Description

handle_t.