Plasma GitLab Archive
Projects Blog Knowledge

sig
  type longstring = string
  and longstrings = Plasma_rpcapi_aux.longstring array
  and longstring_opt = Plasma_rpcapi_aux.longstring option
  and hypers = int64 array
  and trans_id = int64
  and ug = {
    mutable user : Plasma_rpcapi_aux.longstring;
    mutable group : Plasma_rpcapi_aux.longstring;
  }
  and time = { mutable tsecs : int64; mutable tnsecs : int; }
  and time_opt = Plasma_rpcapi_aux.time option
  and ftype_enum = Rtypes.int4
  and ftype = [ `ftype_directory | `ftype_regular | `ftype_symlink ]
  and blockinfo = {
    mutable index : int64;
    mutable node : Plasma_rpcapi_aux.longstring;
    mutable identity : Plasma_rpcapi_aux.longstring;
    mutable block : int64;
    mutable node_alive : bool;
    mutable checksum : Plasma_rpcapi_aux.longstring option;
    mutable inode_seqno : int64;
    mutable inode_committed : bool;
    mutable safetrans_id : int64;
    mutable safetrans_tmo : int64;
    mutable safetrans_vfy : int64;
  }
  and blocklist = Plasma_rpcapi_aux.blockinfo array
  and inodeinfo = {
    mutable filetype : Plasma_rpcapi_aux.ftype;
    mutable usergroup : Plasma_rpcapi_aux.ug;
    mutable mode : int;
    mutable eof : int64;
    mutable mtime : Plasma_rpcapi_aux.time;
    mutable ctime : Plasma_rpcapi_aux.time;
    mutable replication : int;
    mutable blocklimit : int64;
    mutable field1 : Plasma_rpcapi_aux.longstring;
    mutable seqno : int64;
    mutable committed : bool;
    mutable create_verifier : int64;
  }
  and entry = {
    mutable entry_name : Plasma_rpcapi_aux.longstring;
    mutable entry_inode : int64;
  }
  and entries = Plasma_rpcapi_aux.entry array
  and fsstat = {
    mutable total_blocks : int64;
    mutable used_blocks : int64;
    mutable trans_blocks : int64;
    mutable have_block_checksums : bool;
    mutable have_safetrans_for_reads : bool;
    mutable have_protected_inodes : bool;
  }
  and errno_code = Rtypes.int4
  and rvoid =
      [ `eaccess
      | `ebadpath
      | `econflict
      | `ecoord
      | `eexist
      | `efailed
      | `efailedcommit
      | `efbig
      | `efhier
      | `einval
      | `eio
      | `eisdir
      | `elongtrans
      | `eloop
      | `enametoolong
      | `enoent
      | `enonode
      | `enospc
      | `enotdir
      | `enotempty
      | `enotrans
      | `eperm
      | `erofs
      | `estale
      | `etbusy
      | `ok ]
  and rinodeinfo =
      [ `eaccess
      | `ebadpath
      | `econflict
      | `ecoord
      | `eexist
      | `efailed
      | `efailedcommit
      | `efbig
      | `efhier
      | `einval
      | `eio
      | `eisdir
      | `elongtrans
      | `eloop
      | `enametoolong
      | `enoent
      | `enonode
      | `enospc
      | `enotdir
      | `enotempty
      | `enotrans
      | `eperm
      | `erofs
      | `estale
      | `etbusy
      | `ok of Plasma_rpcapi_aux.inodeinfo ]
  and rblocklist =
      [ `eaccess
      | `ebadpath
      | `econflict
      | `ecoord
      | `eexist
      | `efailed
      | `efailedcommit
      | `efbig
      | `efhier
      | `einval
      | `eio
      | `eisdir
      | `elongtrans
      | `eloop
      | `enametoolong
      | `enoent
      | `enonode
      | `enospc
      | `enotdir
      | `enotempty
      | `enotrans
      | `eperm
      | `erofs
      | `estale
      | `etbusy
      | `ok of Plasma_rpcapi_aux.blocklist ]
  and rfsstat =
      [ `eaccess
      | `ebadpath
      | `econflict
      | `ecoord
      | `eexist
      | `efailed
      | `efailedcommit
      | `efbig
      | `efhier
      | `einval
      | `eio
      | `eisdir
      | `elongtrans
      | `eloop
      | `enametoolong
      | `enoent
      | `enonode
      | `enospc
      | `enotdir
      | `enotempty
      | `enotrans
      | `eperm
      | `erofs
      | `estale
      | `etbusy
      | `ok of Plasma_rpcapi_aux.fsstat ]
  and rint =
      [ `eaccess
      | `ebadpath
      | `econflict
      | `ecoord
      | `eexist
      | `efailed
      | `efailedcommit
      | `efbig
      | `efhier
      | `einval
      | `eio
      | `eisdir
      | `elongtrans
      | `eloop
      | `enametoolong
      | `enoent
      | `enonode
      | `enospc
      | `enotdir
      | `enotempty
      | `enotrans
      | `eperm
      | `erofs
      | `estale
      | `etbusy
      | `ok of int ]
  and rhyper =
      [ `eaccess
      | `ebadpath
      | `econflict
      | `ecoord
      | `eexist
      | `efailed
      | `efailedcommit
      | `efbig
      | `efhier
      | `einval
      | `eio
      | `eisdir
      | `elongtrans
      | `eloop
      | `enametoolong
      | `enoent
      | `enonode
      | `enospc
      | `enotdir
      | `enotempty
      | `enotrans
      | `eperm
      | `erofs
      | `estale
      | `etbusy
      | `ok of int64 ]
  and rhypers =
      [ `eaccess
      | `ebadpath
      | `econflict
      | `ecoord
      | `eexist
      | `efailed
      | `efailedcommit
      | `efbig
      | `efhier
      | `einval
      | `eio
      | `eisdir
      | `elongtrans
      | `eloop
      | `enametoolong
      | `enoent
      | `enonode
      | `enospc
      | `enotdir
      | `enotempty
      | `enotrans
      | `eperm
      | `erofs
      | `estale
      | `etbusy
      | `ok of Plasma_rpcapi_aux.hypers ]
  and rlongstring =
      [ `eaccess
      | `ebadpath
      | `econflict
      | `ecoord
      | `eexist
      | `efailed
      | `efailedcommit
      | `efbig
      | `efhier
      | `einval
      | `eio
      | `eisdir
      | `elongtrans
      | `eloop
      | `enametoolong
      | `enoent
      | `enonode
      | `enospc
      | `enotdir
      | `enotempty
      | `enotrans
      | `eperm
      | `erofs
      | `estale
      | `etbusy
      | `ok of Plasma_rpcapi_aux.longstring ]
  and rlongstrings =
      [ `eaccess
      | `ebadpath
      | `econflict
      | `ecoord
      | `eexist
      | `efailed
      | `efailedcommit
      | `efbig
      | `efhier
      | `einval
      | `eio
      | `eisdir
      | `elongtrans
      | `eloop
      | `enametoolong
      | `enoent
      | `enonode
      | `enospc
      | `enotdir
      | `enotempty
      | `enotrans
      | `eperm
      | `erofs
      | `estale
      | `etbusy
      | `ok of Plasma_rpcapi_aux.longstrings ]
  and rentries =
      [ `eaccess
      | `ebadpath
      | `econflict
      | `ecoord
      | `eexist
      | `efailed
      | `efailedcommit
      | `efbig
      | `efhier
      | `einval
      | `eio
      | `eisdir
      | `elongtrans
      | `eloop
      | `enametoolong
      | `enoent
      | `enonode
      | `enospc
      | `enotdir
      | `enotempty
      | `enotrans
      | `eperm
      | `erofs
      | `estale
      | `etbusy
      | `ok of Plasma_rpcapi_aux.entries ]
  and readdata = Xdr_mstring.mstring
  and writedata = Xdr_mstring.mstring
  and dn_channel_enum = Rtypes.int4
  and dn_channel_shm_obj = {
    mutable shm_path : Plasma_rpcapi_aux.longstring;
    mutable shm_offset : int64;
    mutable shm_length : int;
  }
  and dn_channel_rd_req =
      [ `dnch_rpc | `dnch_shm of Plasma_rpcapi_aux.dn_channel_shm_obj ]
  and dn_channel_rd_data =
      [ `dnch_rpc of Plasma_rpcapi_aux.readdata | `dnch_shm ]
  and dn_channel_wr_data =
      [ `dnch_rpc of Plasma_rpcapi_aux.writedata
      | `dnch_shm of Plasma_rpcapi_aux.dn_channel_shm_obj ]
  and t_Datanode'V1'null'arg = unit
  and t_Datanode'V1'null'res = unit
  and t_Datanode'V1'identity'arg = Plasma_rpcapi_aux.longstring
  and t_Datanode'V1'identity'res = Plasma_rpcapi_aux.longstring
  and t_Datanode'V1'size'arg = unit
  and t_Datanode'V1'size'res = int64
  and t_Datanode'V1'blocksize'arg = unit
  and t_Datanode'V1'blocksize'res = int
  and t_Datanode'V1'clustername'arg = unit
  and t_Datanode'V1'clustername'res = Plasma_rpcapi_aux.longstring
  and t_Datanode'V1'read'arg =
      Plasma_rpcapi_aux.dn_channel_rd_req * int64 * int * int * int64 * int64
  and t_Datanode'V1'read'res = Plasma_rpcapi_aux.dn_channel_rd_data
  and t_Datanode'V1'write'arg =
      int64 * Plasma_rpcapi_aux.dn_channel_wr_data * int64 * int64
  and t_Datanode'V1'write'res = unit
  and t_Datanode'V1'copy'arg =
      int64 * Plasma_rpcapi_aux.longstring * Plasma_rpcapi_aux.longstring *
      int64 * int64 * int64 * int64 * int64
  and t_Datanode'V1'copy'res = unit
  and t_Datanode'V1'zero'arg = int64 * int64 * int64
  and t_Datanode'V1'zero'res = unit
  and t_Datanode'V1'sync'arg = unit
  and t_Datanode'V1'sync'res = unit
  and t_Datanode'V1'alloc_shm_if_local'arg = unit
  and t_Datanode'V1'alloc_shm_if_local'res = Plasma_rpcapi_aux.longstring_opt
  and t_Datanode'V1'udsocket_if_local'arg = unit
  and t_Datanode'V1'udsocket_if_local'res = Plasma_rpcapi_aux.longstring_opt
  and t_Filesystem'V1'null'arg = unit
  and t_Filesystem'V1'null'res = unit
  and t_Filesystem'V1'begin_transaction'arg = Plasma_rpcapi_aux.trans_id
  and t_Filesystem'V1'begin_transaction'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'commit_transaction'arg = Plasma_rpcapi_aux.trans_id
  and t_Filesystem'V1'commit_transaction'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'abort_transaction'arg = Plasma_rpcapi_aux.trans_id
  and t_Filesystem'V1'abort_transaction'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'get_inodeinfo'arg = Plasma_rpcapi_aux.trans_id * int64
  and t_Filesystem'V1'get_inodeinfo'res = Plasma_rpcapi_aux.rinodeinfo
  and t_Filesystem'V1'allocate_inode'arg =
      Plasma_rpcapi_aux.trans_id * Plasma_rpcapi_aux.inodeinfo
  and t_Filesystem'V1'allocate_inode'res = Plasma_rpcapi_aux.rhyper
  and t_Filesystem'V1'update_inodeinfo'arg =
      Plasma_rpcapi_aux.trans_id * int64 * Plasma_rpcapi_aux.inodeinfo
  and t_Filesystem'V1'update_inodeinfo'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'delete_inode'arg = Plasma_rpcapi_aux.trans_id * int64
  and t_Filesystem'V1'delete_inode'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'get_blocks'arg =
      Plasma_rpcapi_aux.trans_id * int64 * int64 * int64
  and t_Filesystem'V1'get_blocks'res = Plasma_rpcapi_aux.rblocklist
  and t_Filesystem'V1'allocate_blocks'arg =
      Plasma_rpcapi_aux.trans_id * int64 * int64 * int64 * bool *
      Plasma_rpcapi_aux.longstrings
  and t_Filesystem'V1'allocate_blocks'res = Plasma_rpcapi_aux.rblocklist
  and t_Filesystem'V1'free_blocks'arg =
      Plasma_rpcapi_aux.trans_id * int64 * int64 * int64 * bool
  and t_Filesystem'V1'free_blocks'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'get_fsstat'arg = unit
  and t_Filesystem'V1'get_fsstat'res = Plasma_rpcapi_aux.rfsstat
  and t_Filesystem'V1'rereplicate'arg = Plasma_rpcapi_aux.trans_id * int64
  and t_Filesystem'V1'rereplicate'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'get_blocksize'arg = unit
  and t_Filesystem'V1'get_blocksize'res = int
  and t_Filesystem'V1'lookup'arg =
      Plasma_rpcapi_aux.trans_id * int64 * Plasma_rpcapi_aux.longstring *
      bool
  and t_Filesystem'V1'lookup'res = Plasma_rpcapi_aux.rhyper
  and t_Filesystem'V1'rev_lookup'arg = Plasma_rpcapi_aux.trans_id * int64
  and t_Filesystem'V1'rev_lookup'res = Plasma_rpcapi_aux.rlongstrings
  and t_Filesystem'V1'rev_lookup_dir'arg = Plasma_rpcapi_aux.trans_id * int64
  and t_Filesystem'V1'rev_lookup_dir'res = Plasma_rpcapi_aux.rlongstring
  and t_Filesystem'V1'link_count'arg = Plasma_rpcapi_aux.trans_id * int64
  and t_Filesystem'V1'link_count'res = Plasma_rpcapi_aux.rint
  and t_Filesystem'V1'link'arg =
      Plasma_rpcapi_aux.trans_id * Plasma_rpcapi_aux.longstring * int64
  and t_Filesystem'V1'link'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'link_at'arg =
      Plasma_rpcapi_aux.trans_id * int64 * Plasma_rpcapi_aux.longstring *
      int64
  and t_Filesystem'V1'link_at'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'unlink'arg =
      Plasma_rpcapi_aux.trans_id * Plasma_rpcapi_aux.longstring
  and t_Filesystem'V1'unlink'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'unlink_at'arg =
      Plasma_rpcapi_aux.trans_id * int64 * Plasma_rpcapi_aux.longstring
  and t_Filesystem'V1'unlink_at'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'list'arg = Plasma_rpcapi_aux.trans_id * int64
  and t_Filesystem'V1'list'res = Plasma_rpcapi_aux.rentries
  and t_Filesystem'V1'rename'arg =
      Plasma_rpcapi_aux.trans_id * Plasma_rpcapi_aux.longstring *
      Plasma_rpcapi_aux.longstring
  and t_Filesystem'V1'rename'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'rename_at'arg =
      Plasma_rpcapi_aux.trans_id * int64 * Plasma_rpcapi_aux.longstring *
      int64 * Plasma_rpcapi_aux.longstring
  and t_Filesystem'V1'rename_at'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'namelock'arg =
      Plasma_rpcapi_aux.trans_id * int64 * Plasma_rpcapi_aux.longstring
  and t_Filesystem'V1'namelock'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'set_block_checksum'arg =
      Plasma_rpcapi_aux.trans_id * int64 * int64 *
      Plasma_rpcapi_aux.longstring
  and t_Filesystem'V1'set_block_checksum'res = Plasma_rpcapi_aux.rvoid
  and t_Filesystem'V1'iterate'arg = Plasma_rpcapi_aux.trans_id * int64 * int
  and t_Filesystem'V1'iterate'res = Plasma_rpcapi_aux.rhypers
  and t_Coordination'V1'null'arg = unit
  and t_Coordination'V1'null'res = unit
  and t_Coordination'V1'find_coordinator'arg = Plasma_rpcapi_aux.longstring
  and t_Coordination'V1'find_coordinator'res =
      Plasma_rpcapi_aux.longstring_opt
  and t_Coordination'V1'find_namenodes'arg = Plasma_rpcapi_aux.longstring
  and t_Coordination'V1'find_namenodes'res = Plasma_rpcapi_aux.longstrings
  and t_Coordination'V1'is_coordinator'arg = Plasma_rpcapi_aux.longstring
  and t_Coordination'V1'is_coordinator'res = bool
  and t_Coordination'V1'clustername'arg = unit
  and t_Coordination'V1'clustername'res = Plasma_rpcapi_aux.longstring
  and t_Coordination'V1'find_inodecaches'arg = Plasma_rpcapi_aux.longstring
  and t_Coordination'V1'find_inodecaches'res = Plasma_rpcapi_aux.longstrings
  and t_Coordination'V1'local_identities'arg = Plasma_rpcapi_aux.longstring
  and t_Coordination'V1'local_identities'res = Plasma_rpcapi_aux.longstrings
  and t_Dn_admin'V1'null'arg = unit
  and t_Dn_admin'V1'null'res = unit
  and t_Dn_admin'V1'add_datanode'arg = Plasma_rpcapi_aux.longstring * int64
  and t_Dn_admin'V1'add_datanode'res = unit
  and t_Dn_admin'V1'enable_datanode'arg =
      Plasma_rpcapi_aux.longstring * Plasma_rpcapi_aux.longstring
  and t_Dn_admin'V1'enable_datanode'res = unit
  and t_Dn_admin'V1'disable_datanode'arg = Plasma_rpcapi_aux.longstring
  and t_Dn_admin'V1'disable_datanode'res = unit
  and t_Dn_admin'V1'is_enabled'arg = Plasma_rpcapi_aux.longstring
  and t_Dn_admin'V1'is_enabled'res = bool
  and t_Dn_admin'V1'lookup'arg = Plasma_rpcapi_aux.longstring
  and t_Dn_admin'V1'lookup'res = Plasma_rpcapi_aux.longstring
  and t_Dn_admin'V1'datanodes'arg = unit
  and t_Dn_admin'V1'datanodes'res = Plasma_rpcapi_aux.longstrings
  and t_Dn_admin'V1'destroy_datanode'arg = Plasma_rpcapi_aux.longstring
  and t_Dn_admin'V1'destroy_datanode'res = unit
  and t_Inode_cache'V1'null'arg = unit
  and t_Inode_cache'V1'null'res = unit
  and t_Inode_cache'V1'is_up_to_date'arg =
      int64 * Plasma_rpcapi_aux.inodeinfo
  and t_Inode_cache'V1'is_up_to_date'res = bool
  and t_Inode_cache'V1'is_up_to_date_seqno'arg = int64 * int64
  and t_Inode_cache'V1'is_up_to_date_seqno'res = bool
  val ftype_regular : Rtypes.int4
  val ftype_directory : Rtypes.int4
  val ftype_symlink : Rtypes.int4
  val ok : Rtypes.int4
  val enotrans : Rtypes.int4
  val efailedcommit : Rtypes.int4
  val elongtrans : Rtypes.int4
  val efailed : Rtypes.int4
  val eperm : Rtypes.int4
  val enoent : Rtypes.int4
  val eaccess : Rtypes.int4
  val eexist : Rtypes.int4
  val efhier : Rtypes.int4
  val einval : Rtypes.int4
  val efbig : Rtypes.int4
  val enospc : Rtypes.int4
  val erofs : Rtypes.int4
  val enametoolong : Rtypes.int4
  val econflict : Rtypes.int4
  val ecoord : Rtypes.int4
  val enonode : Rtypes.int4
  val etbusy : Rtypes.int4
  val estale : Rtypes.int4
  val eio : Rtypes.int4
  val eloop : Rtypes.int4
  val enotdir : Rtypes.int4
  val eisdir : Rtypes.int4
  val enotempty : Rtypes.int4
  val ebadpath : Rtypes.int4
  val dnch_rpc : Rtypes.int4
  val dnch_shm : Rtypes.int4
  val _to_longstring : Xdr.xdr_value -> Plasma_rpcapi_aux.longstring
  val _of_longstring : Plasma_rpcapi_aux.longstring -> Xdr.xdr_value
  val _to_longstrings : Xdr.xdr_value -> Plasma_rpcapi_aux.longstrings
  val _of_longstrings : Plasma_rpcapi_aux.longstrings -> Xdr.xdr_value
  val _to_longstring_opt : Xdr.xdr_value -> Plasma_rpcapi_aux.longstring_opt
  val _of_longstring_opt : Plasma_rpcapi_aux.longstring_opt -> Xdr.xdr_value
  val _to_hypers : Xdr.xdr_value -> Plasma_rpcapi_aux.hypers
  val _of_hypers : Plasma_rpcapi_aux.hypers -> Xdr.xdr_value
  val _to_trans_id : Xdr.xdr_value -> Plasma_rpcapi_aux.trans_id
  val _of_trans_id : Plasma_rpcapi_aux.trans_id -> Xdr.xdr_value
  val _to_ug : Xdr.xdr_value -> Plasma_rpcapi_aux.ug
  val _of_ug : Plasma_rpcapi_aux.ug -> Xdr.xdr_value
  val _to_time : Xdr.xdr_value -> Plasma_rpcapi_aux.time
  val _of_time : Plasma_rpcapi_aux.time -> Xdr.xdr_value
  val _to_time_opt : Xdr.xdr_value -> Plasma_rpcapi_aux.time_opt
  val _of_time_opt : Plasma_rpcapi_aux.time_opt -> Xdr.xdr_value
  val _to_ftype_enum : Xdr.xdr_value -> Plasma_rpcapi_aux.ftype_enum
  val _of_ftype_enum : Plasma_rpcapi_aux.ftype_enum -> Xdr.xdr_value
  val _to_ftype : Xdr.xdr_value -> Plasma_rpcapi_aux.ftype
  val _of_ftype : Plasma_rpcapi_aux.ftype -> Xdr.xdr_value
  val _to_blockinfo : Xdr.xdr_value -> Plasma_rpcapi_aux.blockinfo
  val _of_blockinfo : Plasma_rpcapi_aux.blockinfo -> Xdr.xdr_value
  val _to_blocklist : Xdr.xdr_value -> Plasma_rpcapi_aux.blocklist
  val _of_blocklist : Plasma_rpcapi_aux.blocklist -> Xdr.xdr_value
  val _to_inodeinfo : Xdr.xdr_value -> Plasma_rpcapi_aux.inodeinfo
  val _of_inodeinfo : Plasma_rpcapi_aux.inodeinfo -> Xdr.xdr_value
  val _to_entry : Xdr.xdr_value -> Plasma_rpcapi_aux.entry
  val _of_entry : Plasma_rpcapi_aux.entry -> Xdr.xdr_value
  val _to_entries : Xdr.xdr_value -> Plasma_rpcapi_aux.entries
  val _of_entries : Plasma_rpcapi_aux.entries -> Xdr.xdr_value
  val _to_fsstat : Xdr.xdr_value -> Plasma_rpcapi_aux.fsstat
  val _of_fsstat : Plasma_rpcapi_aux.fsstat -> Xdr.xdr_value
  val _to_errno_code : Xdr.xdr_value -> Plasma_rpcapi_aux.errno_code
  val _of_errno_code : Plasma_rpcapi_aux.errno_code -> Xdr.xdr_value
  val _to_rvoid : Xdr.xdr_value -> Plasma_rpcapi_aux.rvoid
  val _of_rvoid : Plasma_rpcapi_aux.rvoid -> Xdr.xdr_value
  val _to_rinodeinfo : Xdr.xdr_value -> Plasma_rpcapi_aux.rinodeinfo
  val _of_rinodeinfo : Plasma_rpcapi_aux.rinodeinfo -> Xdr.xdr_value
  val _to_rblocklist : Xdr.xdr_value -> Plasma_rpcapi_aux.rblocklist
  val _of_rblocklist : Plasma_rpcapi_aux.rblocklist -> Xdr.xdr_value
  val _to_rfsstat : Xdr.xdr_value -> Plasma_rpcapi_aux.rfsstat
  val _of_rfsstat : Plasma_rpcapi_aux.rfsstat -> Xdr.xdr_value
  val _to_rint : Xdr.xdr_value -> Plasma_rpcapi_aux.rint
  val _of_rint : Plasma_rpcapi_aux.rint -> Xdr.xdr_value
  val _to_rhyper : Xdr.xdr_value -> Plasma_rpcapi_aux.rhyper
  val _of_rhyper : Plasma_rpcapi_aux.rhyper -> Xdr.xdr_value
  val _to_rhypers : Xdr.xdr_value -> Plasma_rpcapi_aux.rhypers
  val _of_rhypers : Plasma_rpcapi_aux.rhypers -> Xdr.xdr_value
  val _to_rlongstring : Xdr.xdr_value -> Plasma_rpcapi_aux.rlongstring
  val _of_rlongstring : Plasma_rpcapi_aux.rlongstring -> Xdr.xdr_value
  val _to_rlongstrings : Xdr.xdr_value -> Plasma_rpcapi_aux.rlongstrings
  val _of_rlongstrings : Plasma_rpcapi_aux.rlongstrings -> Xdr.xdr_value
  val _to_rentries : Xdr.xdr_value -> Plasma_rpcapi_aux.rentries
  val _of_rentries : Plasma_rpcapi_aux.rentries -> Xdr.xdr_value
  val _to_readdata : Xdr.xdr_value -> Plasma_rpcapi_aux.readdata
  val _of_readdata : Plasma_rpcapi_aux.readdata -> Xdr.xdr_value
  val _to_writedata : Xdr.xdr_value -> Plasma_rpcapi_aux.writedata
  val _of_writedata : Plasma_rpcapi_aux.writedata -> Xdr.xdr_value
  val _to_dn_channel_enum :
    Xdr.xdr_value -> Plasma_rpcapi_aux.dn_channel_enum
  val _of_dn_channel_enum :
    Plasma_rpcapi_aux.dn_channel_enum -> Xdr.xdr_value
  val _to_dn_channel_shm_obj :
    Xdr.xdr_value -> Plasma_rpcapi_aux.dn_channel_shm_obj
  val _of_dn_channel_shm_obj :
    Plasma_rpcapi_aux.dn_channel_shm_obj -> Xdr.xdr_value
  val _to_dn_channel_rd_req :
    Xdr.xdr_value -> Plasma_rpcapi_aux.dn_channel_rd_req
  val _of_dn_channel_rd_req :
    Plasma_rpcapi_aux.dn_channel_rd_req -> Xdr.xdr_value
  val _to_dn_channel_rd_data :
    Xdr.xdr_value -> Plasma_rpcapi_aux.dn_channel_rd_data
  val _of_dn_channel_rd_data :
    Plasma_rpcapi_aux.dn_channel_rd_data -> Xdr.xdr_value
  val _to_dn_channel_wr_data :
    Xdr.xdr_value -> Plasma_rpcapi_aux.dn_channel_wr_data
  val _of_dn_channel_wr_data :
    Plasma_rpcapi_aux.dn_channel_wr_data -> Xdr.xdr_value
  val _to_Datanode'V1'null'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'null'arg
  val _of_Datanode'V1'null'arg :
    Plasma_rpcapi_aux.t_Datanode'V1'null'arg -> Xdr.xdr_value
  val _to_Datanode'V1'null'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'null'res
  val _of_Datanode'V1'null'res :
    Plasma_rpcapi_aux.t_Datanode'V1'null'res -> Xdr.xdr_value
  val _to_Datanode'V1'identity'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'identity'arg
  val _of_Datanode'V1'identity'arg :
    Plasma_rpcapi_aux.t_Datanode'V1'identity'arg -> Xdr.xdr_value
  val _to_Datanode'V1'identity'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'identity'res
  val _of_Datanode'V1'identity'res :
    Plasma_rpcapi_aux.t_Datanode'V1'identity'res -> Xdr.xdr_value
  val _to_Datanode'V1'size'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'size'arg
  val _of_Datanode'V1'size'arg :
    Plasma_rpcapi_aux.t_Datanode'V1'size'arg -> Xdr.xdr_value
  val _to_Datanode'V1'size'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'size'res
  val _of_Datanode'V1'size'res :
    Plasma_rpcapi_aux.t_Datanode'V1'size'res -> Xdr.xdr_value
  val _to_Datanode'V1'blocksize'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'blocksize'arg
  val _of_Datanode'V1'blocksize'arg :
    Plasma_rpcapi_aux.t_Datanode'V1'blocksize'arg -> Xdr.xdr_value
  val _to_Datanode'V1'blocksize'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'blocksize'res
  val _of_Datanode'V1'blocksize'res :
    Plasma_rpcapi_aux.t_Datanode'V1'blocksize'res -> Xdr.xdr_value
  val _to_Datanode'V1'clustername'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'clustername'arg
  val _of_Datanode'V1'clustername'arg :
    Plasma_rpcapi_aux.t_Datanode'V1'clustername'arg -> Xdr.xdr_value
  val _to_Datanode'V1'clustername'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'clustername'res
  val _of_Datanode'V1'clustername'res :
    Plasma_rpcapi_aux.t_Datanode'V1'clustername'res -> Xdr.xdr_value
  val _to_Datanode'V1'read'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'read'arg
  val _of_Datanode'V1'read'arg :
    Plasma_rpcapi_aux.t_Datanode'V1'read'arg -> Xdr.xdr_value
  val _to_Datanode'V1'read'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'read'res
  val _of_Datanode'V1'read'res :
    Plasma_rpcapi_aux.t_Datanode'V1'read'res -> Xdr.xdr_value
  val _to_Datanode'V1'write'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'write'arg
  val _of_Datanode'V1'write'arg :
    Plasma_rpcapi_aux.t_Datanode'V1'write'arg -> Xdr.xdr_value
  val _to_Datanode'V1'write'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'write'res
  val _of_Datanode'V1'write'res :
    Plasma_rpcapi_aux.t_Datanode'V1'write'res -> Xdr.xdr_value
  val _to_Datanode'V1'copy'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'copy'arg
  val _of_Datanode'V1'copy'arg :
    Plasma_rpcapi_aux.t_Datanode'V1'copy'arg -> Xdr.xdr_value
  val _to_Datanode'V1'copy'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'copy'res
  val _of_Datanode'V1'copy'res :
    Plasma_rpcapi_aux.t_Datanode'V1'copy'res -> Xdr.xdr_value
  val _to_Datanode'V1'zero'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'zero'arg
  val _of_Datanode'V1'zero'arg :
    Plasma_rpcapi_aux.t_Datanode'V1'zero'arg -> Xdr.xdr_value
  val _to_Datanode'V1'zero'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'zero'res
  val _of_Datanode'V1'zero'res :
    Plasma_rpcapi_aux.t_Datanode'V1'zero'res -> Xdr.xdr_value
  val _to_Datanode'V1'sync'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'sync'arg
  val _of_Datanode'V1'sync'arg :
    Plasma_rpcapi_aux.t_Datanode'V1'sync'arg -> Xdr.xdr_value
  val _to_Datanode'V1'sync'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'sync'res
  val _of_Datanode'V1'sync'res :
    Plasma_rpcapi_aux.t_Datanode'V1'sync'res -> Xdr.xdr_value
  val _to_Datanode'V1'alloc_shm_if_local'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'alloc_shm_if_local'arg
  val _of_Datanode'V1'alloc_shm_if_local'arg :
    Plasma_rpcapi_aux.t_Datanode'V1'alloc_shm_if_local'arg -> Xdr.xdr_value
  val _to_Datanode'V1'alloc_shm_if_local'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'alloc_shm_if_local'res
  val _of_Datanode'V1'alloc_shm_if_local'res :
    Plasma_rpcapi_aux.t_Datanode'V1'alloc_shm_if_local'res -> Xdr.xdr_value
  val _to_Datanode'V1'udsocket_if_local'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'udsocket_if_local'arg
  val _of_Datanode'V1'udsocket_if_local'arg :
    Plasma_rpcapi_aux.t_Datanode'V1'udsocket_if_local'arg -> Xdr.xdr_value
  val _to_Datanode'V1'udsocket_if_local'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Datanode'V1'udsocket_if_local'res
  val _of_Datanode'V1'udsocket_if_local'res :
    Plasma_rpcapi_aux.t_Datanode'V1'udsocket_if_local'res -> Xdr.xdr_value
  val _to_Filesystem'V1'null'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'null'arg
  val _of_Filesystem'V1'null'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'null'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'null'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'null'res
  val _of_Filesystem'V1'null'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'null'res -> Xdr.xdr_value
  val _to_Filesystem'V1'begin_transaction'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'begin_transaction'arg
  val _of_Filesystem'V1'begin_transaction'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'begin_transaction'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'begin_transaction'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'begin_transaction'res
  val _of_Filesystem'V1'begin_transaction'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'begin_transaction'res -> Xdr.xdr_value
  val _to_Filesystem'V1'commit_transaction'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'commit_transaction'arg
  val _of_Filesystem'V1'commit_transaction'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'commit_transaction'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'commit_transaction'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'commit_transaction'res
  val _of_Filesystem'V1'commit_transaction'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'commit_transaction'res -> Xdr.xdr_value
  val _to_Filesystem'V1'abort_transaction'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'abort_transaction'arg
  val _of_Filesystem'V1'abort_transaction'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'abort_transaction'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'abort_transaction'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'abort_transaction'res
  val _of_Filesystem'V1'abort_transaction'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'abort_transaction'res -> Xdr.xdr_value
  val _to_Filesystem'V1'get_inodeinfo'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'get_inodeinfo'arg
  val _of_Filesystem'V1'get_inodeinfo'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'get_inodeinfo'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'get_inodeinfo'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'get_inodeinfo'res
  val _of_Filesystem'V1'get_inodeinfo'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'get_inodeinfo'res -> Xdr.xdr_value
  val _to_Filesystem'V1'allocate_inode'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'allocate_inode'arg
  val _of_Filesystem'V1'allocate_inode'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'allocate_inode'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'allocate_inode'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'allocate_inode'res
  val _of_Filesystem'V1'allocate_inode'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'allocate_inode'res -> Xdr.xdr_value
  val _to_Filesystem'V1'update_inodeinfo'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'update_inodeinfo'arg
  val _of_Filesystem'V1'update_inodeinfo'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'update_inodeinfo'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'update_inodeinfo'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'update_inodeinfo'res
  val _of_Filesystem'V1'update_inodeinfo'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'update_inodeinfo'res -> Xdr.xdr_value
  val _to_Filesystem'V1'delete_inode'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'delete_inode'arg
  val _of_Filesystem'V1'delete_inode'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'delete_inode'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'delete_inode'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'delete_inode'res
  val _of_Filesystem'V1'delete_inode'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'delete_inode'res -> Xdr.xdr_value
  val _to_Filesystem'V1'get_blocks'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'get_blocks'arg
  val _of_Filesystem'V1'get_blocks'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'get_blocks'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'get_blocks'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'get_blocks'res
  val _of_Filesystem'V1'get_blocks'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'get_blocks'res -> Xdr.xdr_value
  val _to_Filesystem'V1'allocate_blocks'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'allocate_blocks'arg
  val _of_Filesystem'V1'allocate_blocks'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'allocate_blocks'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'allocate_blocks'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'allocate_blocks'res
  val _of_Filesystem'V1'allocate_blocks'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'allocate_blocks'res -> Xdr.xdr_value
  val _to_Filesystem'V1'free_blocks'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'free_blocks'arg
  val _of_Filesystem'V1'free_blocks'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'free_blocks'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'free_blocks'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'free_blocks'res
  val _of_Filesystem'V1'free_blocks'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'free_blocks'res -> Xdr.xdr_value
  val _to_Filesystem'V1'get_fsstat'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'get_fsstat'arg
  val _of_Filesystem'V1'get_fsstat'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'get_fsstat'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'get_fsstat'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'get_fsstat'res
  val _of_Filesystem'V1'get_fsstat'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'get_fsstat'res -> Xdr.xdr_value
  val _to_Filesystem'V1'rereplicate'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'rereplicate'arg
  val _of_Filesystem'V1'rereplicate'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'rereplicate'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'rereplicate'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'rereplicate'res
  val _of_Filesystem'V1'rereplicate'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'rereplicate'res -> Xdr.xdr_value
  val _to_Filesystem'V1'get_blocksize'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'get_blocksize'arg
  val _of_Filesystem'V1'get_blocksize'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'get_blocksize'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'get_blocksize'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'get_blocksize'res
  val _of_Filesystem'V1'get_blocksize'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'get_blocksize'res -> Xdr.xdr_value
  val _to_Filesystem'V1'lookup'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'lookup'arg
  val _of_Filesystem'V1'lookup'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'lookup'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'lookup'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'lookup'res
  val _of_Filesystem'V1'lookup'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'lookup'res -> Xdr.xdr_value
  val _to_Filesystem'V1'rev_lookup'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'rev_lookup'arg
  val _of_Filesystem'V1'rev_lookup'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'rev_lookup'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'rev_lookup'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'rev_lookup'res
  val _of_Filesystem'V1'rev_lookup'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'rev_lookup'res -> Xdr.xdr_value
  val _to_Filesystem'V1'rev_lookup_dir'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'rev_lookup_dir'arg
  val _of_Filesystem'V1'rev_lookup_dir'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'rev_lookup_dir'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'rev_lookup_dir'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'rev_lookup_dir'res
  val _of_Filesystem'V1'rev_lookup_dir'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'rev_lookup_dir'res -> Xdr.xdr_value
  val _to_Filesystem'V1'link_count'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'link_count'arg
  val _of_Filesystem'V1'link_count'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'link_count'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'link_count'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'link_count'res
  val _of_Filesystem'V1'link_count'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'link_count'res -> Xdr.xdr_value
  val _to_Filesystem'V1'link'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'link'arg
  val _of_Filesystem'V1'link'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'link'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'link'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'link'res
  val _of_Filesystem'V1'link'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'link'res -> Xdr.xdr_value
  val _to_Filesystem'V1'link_at'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'link_at'arg
  val _of_Filesystem'V1'link_at'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'link_at'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'link_at'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'link_at'res
  val _of_Filesystem'V1'link_at'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'link_at'res -> Xdr.xdr_value
  val _to_Filesystem'V1'unlink'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'unlink'arg
  val _of_Filesystem'V1'unlink'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'unlink'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'unlink'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'unlink'res
  val _of_Filesystem'V1'unlink'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'unlink'res -> Xdr.xdr_value
  val _to_Filesystem'V1'unlink_at'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'unlink_at'arg
  val _of_Filesystem'V1'unlink_at'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'unlink_at'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'unlink_at'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'unlink_at'res
  val _of_Filesystem'V1'unlink_at'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'unlink_at'res -> Xdr.xdr_value
  val _to_Filesystem'V1'list'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'list'arg
  val _of_Filesystem'V1'list'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'list'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'list'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'list'res
  val _of_Filesystem'V1'list'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'list'res -> Xdr.xdr_value
  val _to_Filesystem'V1'rename'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'rename'arg
  val _of_Filesystem'V1'rename'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'rename'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'rename'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'rename'res
  val _of_Filesystem'V1'rename'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'rename'res -> Xdr.xdr_value
  val _to_Filesystem'V1'rename_at'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'rename_at'arg
  val _of_Filesystem'V1'rename_at'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'rename_at'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'rename_at'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'rename_at'res
  val _of_Filesystem'V1'rename_at'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'rename_at'res -> Xdr.xdr_value
  val _to_Filesystem'V1'namelock'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'namelock'arg
  val _of_Filesystem'V1'namelock'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'namelock'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'namelock'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'namelock'res
  val _of_Filesystem'V1'namelock'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'namelock'res -> Xdr.xdr_value
  val _to_Filesystem'V1'set_block_checksum'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'set_block_checksum'arg
  val _of_Filesystem'V1'set_block_checksum'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'set_block_checksum'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'set_block_checksum'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'set_block_checksum'res
  val _of_Filesystem'V1'set_block_checksum'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'set_block_checksum'res -> Xdr.xdr_value
  val _to_Filesystem'V1'iterate'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'iterate'arg
  val _of_Filesystem'V1'iterate'arg :
    Plasma_rpcapi_aux.t_Filesystem'V1'iterate'arg -> Xdr.xdr_value
  val _to_Filesystem'V1'iterate'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Filesystem'V1'iterate'res
  val _of_Filesystem'V1'iterate'res :
    Plasma_rpcapi_aux.t_Filesystem'V1'iterate'res -> Xdr.xdr_value
  val _to_Coordination'V1'null'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'null'arg
  val _of_Coordination'V1'null'arg :
    Plasma_rpcapi_aux.t_Coordination'V1'null'arg -> Xdr.xdr_value
  val _to_Coordination'V1'null'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'null'res
  val _of_Coordination'V1'null'res :
    Plasma_rpcapi_aux.t_Coordination'V1'null'res -> Xdr.xdr_value
  val _to_Coordination'V1'find_coordinator'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'find_coordinator'arg
  val _of_Coordination'V1'find_coordinator'arg :
    Plasma_rpcapi_aux.t_Coordination'V1'find_coordinator'arg -> Xdr.xdr_value
  val _to_Coordination'V1'find_coordinator'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'find_coordinator'res
  val _of_Coordination'V1'find_coordinator'res :
    Plasma_rpcapi_aux.t_Coordination'V1'find_coordinator'res -> Xdr.xdr_value
  val _to_Coordination'V1'find_namenodes'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'find_namenodes'arg
  val _of_Coordination'V1'find_namenodes'arg :
    Plasma_rpcapi_aux.t_Coordination'V1'find_namenodes'arg -> Xdr.xdr_value
  val _to_Coordination'V1'find_namenodes'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'find_namenodes'res
  val _of_Coordination'V1'find_namenodes'res :
    Plasma_rpcapi_aux.t_Coordination'V1'find_namenodes'res -> Xdr.xdr_value
  val _to_Coordination'V1'is_coordinator'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'is_coordinator'arg
  val _of_Coordination'V1'is_coordinator'arg :
    Plasma_rpcapi_aux.t_Coordination'V1'is_coordinator'arg -> Xdr.xdr_value
  val _to_Coordination'V1'is_coordinator'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'is_coordinator'res
  val _of_Coordination'V1'is_coordinator'res :
    Plasma_rpcapi_aux.t_Coordination'V1'is_coordinator'res -> Xdr.xdr_value
  val _to_Coordination'V1'clustername'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'clustername'arg
  val _of_Coordination'V1'clustername'arg :
    Plasma_rpcapi_aux.t_Coordination'V1'clustername'arg -> Xdr.xdr_value
  val _to_Coordination'V1'clustername'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'clustername'res
  val _of_Coordination'V1'clustername'res :
    Plasma_rpcapi_aux.t_Coordination'V1'clustername'res -> Xdr.xdr_value
  val _to_Coordination'V1'find_inodecaches'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'find_inodecaches'arg
  val _of_Coordination'V1'find_inodecaches'arg :
    Plasma_rpcapi_aux.t_Coordination'V1'find_inodecaches'arg -> Xdr.xdr_value
  val _to_Coordination'V1'find_inodecaches'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'find_inodecaches'res
  val _of_Coordination'V1'find_inodecaches'res :
    Plasma_rpcapi_aux.t_Coordination'V1'find_inodecaches'res -> Xdr.xdr_value
  val _to_Coordination'V1'local_identities'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'local_identities'arg
  val _of_Coordination'V1'local_identities'arg :
    Plasma_rpcapi_aux.t_Coordination'V1'local_identities'arg -> Xdr.xdr_value
  val _to_Coordination'V1'local_identities'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Coordination'V1'local_identities'res
  val _of_Coordination'V1'local_identities'res :
    Plasma_rpcapi_aux.t_Coordination'V1'local_identities'res -> Xdr.xdr_value
  val _to_Dn_admin'V1'null'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'null'arg
  val _of_Dn_admin'V1'null'arg :
    Plasma_rpcapi_aux.t_Dn_admin'V1'null'arg -> Xdr.xdr_value
  val _to_Dn_admin'V1'null'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'null'res
  val _of_Dn_admin'V1'null'res :
    Plasma_rpcapi_aux.t_Dn_admin'V1'null'res -> Xdr.xdr_value
  val _to_Dn_admin'V1'add_datanode'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'add_datanode'arg
  val _of_Dn_admin'V1'add_datanode'arg :
    Plasma_rpcapi_aux.t_Dn_admin'V1'add_datanode'arg -> Xdr.xdr_value
  val _to_Dn_admin'V1'add_datanode'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'add_datanode'res
  val _of_Dn_admin'V1'add_datanode'res :
    Plasma_rpcapi_aux.t_Dn_admin'V1'add_datanode'res -> Xdr.xdr_value
  val _to_Dn_admin'V1'enable_datanode'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'enable_datanode'arg
  val _of_Dn_admin'V1'enable_datanode'arg :
    Plasma_rpcapi_aux.t_Dn_admin'V1'enable_datanode'arg -> Xdr.xdr_value
  val _to_Dn_admin'V1'enable_datanode'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'enable_datanode'res
  val _of_Dn_admin'V1'enable_datanode'res :
    Plasma_rpcapi_aux.t_Dn_admin'V1'enable_datanode'res -> Xdr.xdr_value
  val _to_Dn_admin'V1'disable_datanode'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'disable_datanode'arg
  val _of_Dn_admin'V1'disable_datanode'arg :
    Plasma_rpcapi_aux.t_Dn_admin'V1'disable_datanode'arg -> Xdr.xdr_value
  val _to_Dn_admin'V1'disable_datanode'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'disable_datanode'res
  val _of_Dn_admin'V1'disable_datanode'res :
    Plasma_rpcapi_aux.t_Dn_admin'V1'disable_datanode'res -> Xdr.xdr_value
  val _to_Dn_admin'V1'is_enabled'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'is_enabled'arg
  val _of_Dn_admin'V1'is_enabled'arg :
    Plasma_rpcapi_aux.t_Dn_admin'V1'is_enabled'arg -> Xdr.xdr_value
  val _to_Dn_admin'V1'is_enabled'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'is_enabled'res
  val _of_Dn_admin'V1'is_enabled'res :
    Plasma_rpcapi_aux.t_Dn_admin'V1'is_enabled'res -> Xdr.xdr_value
  val _to_Dn_admin'V1'lookup'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'lookup'arg
  val _of_Dn_admin'V1'lookup'arg :
    Plasma_rpcapi_aux.t_Dn_admin'V1'lookup'arg -> Xdr.xdr_value
  val _to_Dn_admin'V1'lookup'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'lookup'res
  val _of_Dn_admin'V1'lookup'res :
    Plasma_rpcapi_aux.t_Dn_admin'V1'lookup'res -> Xdr.xdr_value
  val _to_Dn_admin'V1'datanodes'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'datanodes'arg
  val _of_Dn_admin'V1'datanodes'arg :
    Plasma_rpcapi_aux.t_Dn_admin'V1'datanodes'arg -> Xdr.xdr_value
  val _to_Dn_admin'V1'datanodes'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'datanodes'res
  val _of_Dn_admin'V1'datanodes'res :
    Plasma_rpcapi_aux.t_Dn_admin'V1'datanodes'res -> Xdr.xdr_value
  val _to_Dn_admin'V1'destroy_datanode'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'destroy_datanode'arg
  val _of_Dn_admin'V1'destroy_datanode'arg :
    Plasma_rpcapi_aux.t_Dn_admin'V1'destroy_datanode'arg -> Xdr.xdr_value
  val _to_Dn_admin'V1'destroy_datanode'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Dn_admin'V1'destroy_datanode'res
  val _of_Dn_admin'V1'destroy_datanode'res :
    Plasma_rpcapi_aux.t_Dn_admin'V1'destroy_datanode'res -> Xdr.xdr_value
  val _to_Inode_cache'V1'null'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Inode_cache'V1'null'arg
  val _of_Inode_cache'V1'null'arg :
    Plasma_rpcapi_aux.t_Inode_cache'V1'null'arg -> Xdr.xdr_value
  val _to_Inode_cache'V1'null'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Inode_cache'V1'null'res
  val _of_Inode_cache'V1'null'res :
    Plasma_rpcapi_aux.t_Inode_cache'V1'null'res -> Xdr.xdr_value
  val _to_Inode_cache'V1'is_up_to_date'arg :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Inode_cache'V1'is_up_to_date'arg
  val _of_Inode_cache'V1'is_up_to_date'arg :
    Plasma_rpcapi_aux.t_Inode_cache'V1'is_up_to_date'arg -> Xdr.xdr_value
  val _to_Inode_cache'V1'is_up_to_date'res :
    Xdr.xdr_value -> Plasma_rpcapi_aux.t_Inode_cache'V1'is_up_to_date'res
  val _of_Inode_cache'V1'is_up_to_date'res :
    Plasma_rpcapi_aux.t_Inode_cache'V1'is_up_to_date'res -> Xdr.xdr_value
  val _to_Inode_cache'V1'is_up_to_date_seqno'arg :
    Xdr.xdr_value ->
    Plasma_rpcapi_aux.t_Inode_cache'V1'is_up_to_date_seqno'arg
  val _of_Inode_cache'V1'is_up_to_date_seqno'arg :
    Plasma_rpcapi_aux.t_Inode_cache'V1'is_up_to_date_seqno'arg ->
    Xdr.xdr_value
  val _to_Inode_cache'V1'is_up_to_date_seqno'res :
    Xdr.xdr_value ->
    Plasma_rpcapi_aux.t_Inode_cache'V1'is_up_to_date_seqno'res
  val _of_Inode_cache'V1'is_up_to_date_seqno'res :
    Plasma_rpcapi_aux.t_Inode_cache'V1'is_up_to_date_seqno'res ->
    Xdr.xdr_value
  val xdrt_longstring : Xdr.xdr_type_term
  val xdrt_longstrings : Xdr.xdr_type_term
  val xdrt_longstring_opt : Xdr.xdr_type_term
  val xdrt_hypers : Xdr.xdr_type_term
  val xdrt_trans_id : Xdr.xdr_type_term
  val xdrt_ug : Xdr.xdr_type_term
  val xdrt_time : Xdr.xdr_type_term
  val xdrt_time_opt : Xdr.xdr_type_term
  val xdrt_ftype_enum : Xdr.xdr_type_term
  val xdrt_ftype : Xdr.xdr_type_term
  val xdrt_blockinfo : Xdr.xdr_type_term
  val xdrt_blocklist : Xdr.xdr_type_term
  val xdrt_inodeinfo : Xdr.xdr_type_term
  val xdrt_entry : Xdr.xdr_type_term
  val xdrt_entries : Xdr.xdr_type_term
  val xdrt_fsstat : Xdr.xdr_type_term
  val xdrt_errno_code : Xdr.xdr_type_term
  val xdrt_rvoid : Xdr.xdr_type_term
  val xdrt_rinodeinfo : Xdr.xdr_type_term
  val xdrt_rblocklist : Xdr.xdr_type_term
  val xdrt_rfsstat : Xdr.xdr_type_term
  val xdrt_rint : Xdr.xdr_type_term
  val xdrt_rhyper : Xdr.xdr_type_term
  val xdrt_rhypers : Xdr.xdr_type_term
  val xdrt_rlongstring : Xdr.xdr_type_term
  val xdrt_rlongstrings : Xdr.xdr_type_term
  val xdrt_rentries : Xdr.xdr_type_term
  val xdrt_readdata : Xdr.xdr_type_term
  val xdrt_writedata : Xdr.xdr_type_term
  val xdrt_dn_channel_enum : Xdr.xdr_type_term
  val xdrt_dn_channel_shm_obj : Xdr.xdr_type_term
  val xdrt_dn_channel_rd_req : Xdr.xdr_type_term
  val xdrt_dn_channel_rd_data : Xdr.xdr_type_term
  val xdrt_dn_channel_wr_data : Xdr.xdr_type_term
  val xdrt_Datanode'V1'null'arg : Xdr.xdr_type_term
  val xdrt_Datanode'V1'null'res : Xdr.xdr_type_term
  val xdrt_Datanode'V1'identity'arg : Xdr.xdr_type_term
  val xdrt_Datanode'V1'identity'res : Xdr.xdr_type_term
  val xdrt_Datanode'V1'size'arg : Xdr.xdr_type_term
  val xdrt_Datanode'V1'size'res : Xdr.xdr_type_term
  val xdrt_Datanode'V1'blocksize'arg : Xdr.xdr_type_term
  val xdrt_Datanode'V1'blocksize'res : Xdr.xdr_type_term
  val xdrt_Datanode'V1'clustername'arg : Xdr.xdr_type_term
  val xdrt_Datanode'V1'clustername'res : Xdr.xdr_type_term
  val xdrt_Datanode'V1'read'arg : Xdr.xdr_type_term
  val xdrt_Datanode'V1'read'res : Xdr.xdr_type_term
  val xdrt_Datanode'V1'write'arg : Xdr.xdr_type_term
  val xdrt_Datanode'V1'write'res : Xdr.xdr_type_term
  val xdrt_Datanode'V1'copy'arg : Xdr.xdr_type_term
  val xdrt_Datanode'V1'copy'res : Xdr.xdr_type_term
  val xdrt_Datanode'V1'zero'arg : Xdr.xdr_type_term
  val xdrt_Datanode'V1'zero'res : Xdr.xdr_type_term
  val xdrt_Datanode'V1'sync'arg : Xdr.xdr_type_term
  val xdrt_Datanode'V1'sync'res : Xdr.xdr_type_term
  val xdrt_Datanode'V1'alloc_shm_if_local'arg : Xdr.xdr_type_term
  val xdrt_Datanode'V1'alloc_shm_if_local'res : Xdr.xdr_type_term
  val xdrt_Datanode'V1'udsocket_if_local'arg : Xdr.xdr_type_term
  val xdrt_Datanode'V1'udsocket_if_local'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'null'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'null'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'begin_transaction'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'begin_transaction'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'commit_transaction'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'commit_transaction'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'abort_transaction'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'abort_transaction'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'get_inodeinfo'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'get_inodeinfo'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'allocate_inode'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'allocate_inode'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'update_inodeinfo'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'update_inodeinfo'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'delete_inode'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'delete_inode'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'get_blocks'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'get_blocks'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'allocate_blocks'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'allocate_blocks'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'free_blocks'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'free_blocks'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'get_fsstat'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'get_fsstat'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'rereplicate'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'rereplicate'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'get_blocksize'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'get_blocksize'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'lookup'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'lookup'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'rev_lookup'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'rev_lookup'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'rev_lookup_dir'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'rev_lookup_dir'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'link_count'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'link_count'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'link'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'link'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'link_at'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'link_at'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'unlink'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'unlink'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'unlink_at'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'unlink_at'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'list'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'list'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'rename'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'rename'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'rename_at'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'rename_at'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'namelock'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'namelock'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'set_block_checksum'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'set_block_checksum'res : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'iterate'arg : Xdr.xdr_type_term
  val xdrt_Filesystem'V1'iterate'res : Xdr.xdr_type_term
  val xdrt_Coordination'V1'null'arg : Xdr.xdr_type_term
  val xdrt_Coordination'V1'null'res : Xdr.xdr_type_term
  val xdrt_Coordination'V1'find_coordinator'arg : Xdr.xdr_type_term
  val xdrt_Coordination'V1'find_coordinator'res : Xdr.xdr_type_term
  val xdrt_Coordination'V1'find_namenodes'arg : Xdr.xdr_type_term
  val xdrt_Coordination'V1'find_namenodes'res : Xdr.xdr_type_term
  val xdrt_Coordination'V1'is_coordinator'arg : Xdr.xdr_type_term
  val xdrt_Coordination'V1'is_coordinator'res : Xdr.xdr_type_term
  val xdrt_Coordination'V1'clustername'arg : Xdr.xdr_type_term
  val xdrt_Coordination'V1'clustername'res : Xdr.xdr_type_term
  val xdrt_Coordination'V1'find_inodecaches'arg : Xdr.xdr_type_term
  val xdrt_Coordination'V1'find_inodecaches'res : Xdr.xdr_type_term
  val xdrt_Coordination'V1'local_identities'arg : Xdr.xdr_type_term
  val xdrt_Coordination'V1'local_identities'res : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'null'arg : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'null'res : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'add_datanode'arg : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'add_datanode'res : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'enable_datanode'arg : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'enable_datanode'res : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'disable_datanode'arg : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'disable_datanode'res : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'is_enabled'arg : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'is_enabled'res : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'lookup'arg : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'lookup'res : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'datanodes'arg : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'datanodes'res : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'destroy_datanode'arg : Xdr.xdr_type_term
  val xdrt_Dn_admin'V1'destroy_datanode'res : Xdr.xdr_type_term
  val xdrt_Inode_cache'V1'null'arg : Xdr.xdr_type_term
  val xdrt_Inode_cache'V1'null'res : Xdr.xdr_type_term
  val xdrt_Inode_cache'V1'is_up_to_date'arg : Xdr.xdr_type_term
  val xdrt_Inode_cache'V1'is_up_to_date'res : Xdr.xdr_type_term
  val xdrt_Inode_cache'V1'is_up_to_date_seqno'arg : Xdr.xdr_type_term
  val xdrt_Inode_cache'V1'is_up_to_date_seqno'res : Xdr.xdr_type_term
  val program_Datanode'V1 : Rpc_program.t
  val program_Filesystem'V1 : Rpc_program.t
  val program_Coordination'V1 : Rpc_program.t
  val program_Dn_admin'V1 : Rpc_program.t
  val program_Inode_cache'V1 : Rpc_program.t
end
This web site is published by Informatikbüro Gerd Stolpmann
Powered by Caml