Log binding ip address and port during startup
[openafs.git] / src / vlserver / vlserver_internal.h
index b7764ba..9650aa3 100644 (file)
 #ifndef _VLSERVER_INTERNAL_H
 #define _VLSERVER_INTERNAL_H
 
+/**
+ * context for a transaction of a single VL operation.
+ */
+struct vl_ctx {
+    struct ubik_trans *trans;
+    afs_uint32 *hostaddress;
+    struct extentaddr **ex_addr;
+    struct vlheader *cheader;
+};
+
 /* vlprocs.c */
-extern int Init_VLdbase(struct ubik_trans **trans, int locktype, int this_op);
+extern int Init_VLdbase(struct vl_ctx *ctx, int locktype, int this_op);
 
 /* vlutils.c */
 extern afs_int32 vlwrite(struct ubik_trans *trans, afs_int32 offset,
                         void *buffer, afs_int32 length);
 extern afs_int32 vlentrywrite(struct ubik_trans *trans, afs_int32 offset,
                              void *buffer, afs_int32 length);
-extern int write_vital_vlheader(struct ubik_trans *trans);
+extern int write_vital_vlheader(struct vl_ctx *ctx);
 extern afs_int32 readExtents(struct ubik_trans *trans);
 extern afs_int32 CheckInit(struct ubik_trans *trans, int builddb);
-extern afs_int32 AllocBlock(struct ubik_trans *trans,
+extern afs_int32 AllocBlock(struct vl_ctx *ctx,
                            struct nvlentry *tentry);
-extern afs_int32 FindExtentBlock(struct ubik_trans *trans, afsUUID *uuidp,
+extern afs_int32 FindExtentBlock(struct vl_ctx *ctx, afsUUID *uuidp,
                                 afs_int32 createit, afs_int32 hostslot,
                                 struct extentaddr **expp, afs_int32 *basep);
-extern afs_int32 FindByID(struct ubik_trans *trans, afs_uint32 volid,
+extern afs_int32 FindByID(struct vl_ctx *ctx, afs_uint32 volid,
                          afs_int32 voltype, struct nvlentry *tentry,
                          afs_int32 *error);
-extern afs_int32 FindByName(struct ubik_trans *trans, char *volname,
+extern afs_int32 FindByName(struct vl_ctx *ctx, char *volname,
                            struct nvlentry *tentry, afs_int32 *error);
-extern int EntryIDExists(struct ubik_trans *trans, const afs_uint32 *ids,
+extern int EntryIDExists(struct vl_ctx *ctx, const afs_uint32 *ids,
                         afs_int32 ids_len, afs_int32 *error);
-extern afs_uint32 NextUnusedID(struct ubik_trans *trans, afs_uint32 maxvolid,
+extern afs_uint32 NextUnusedID(struct vl_ctx *ctx, afs_uint32 maxvolid,
                               afs_uint32 bump, afs_int32 *error);
-extern int HashNDump(struct ubik_trans *trans, int hashindex);
-extern int HashIdDump(struct ubik_trans *trans, int hashindex);
-extern int ThreadVLentry(struct ubik_trans *trans, afs_int32 blockindex,
+extern int HashNDump(struct vl_ctx *ctx, int hashindex);
+extern int HashIdDump(struct vl_ctx *ctx, int hashindex);
+extern int ThreadVLentry(struct vl_ctx *ctx, afs_int32 blockindex,
                          struct nvlentry *tentry);
-extern int UnthreadVLentry(struct ubik_trans *trans, afs_int32 blockindex,
+extern int UnthreadVLentry(struct vl_ctx *ctx, afs_int32 blockindex,
                         struct nvlentry *aentry);
-extern int HashVolid(struct ubik_trans *trans, afs_int32 voltype,
+extern int HashVolid(struct vl_ctx *ctx, afs_int32 voltype,
                     afs_int32 blockindex, struct nvlentry *tentry);
-extern int UnhashVolid(struct ubik_trans *trans, afs_int32 voltype,
+extern int UnhashVolid(struct vl_ctx *ctx, afs_int32 voltype,
                       afs_int32 blockindex, struct nvlentry *aentry);
-extern int HashVolname(struct ubik_trans *trans, afs_int32 blockindex,
+extern int HashVolname(struct vl_ctx *ctx, afs_int32 blockindex,
                       struct nvlentry *aentry);
-extern int UnhashVolname(struct ubik_trans *trans, afs_int32 blockindex,
+extern int UnhashVolname(struct vl_ctx *ctx, afs_int32 blockindex,
                         struct nvlentry *aentry);
-extern afs_int32 NextEntry(struct ubik_trans *trans, afs_int32 blockindex,
+extern afs_int32 NextEntry(struct vl_ctx *ctx, afs_int32 blockindex,
                           struct nvlentry *tentry, afs_int32 *remaining);
-extern int FreeBlock(struct ubik_trans *trans, afs_int32 blockindex);
+extern int FreeBlock(struct vl_ctx *ctx, afs_int32 blockindex);
+extern int vlsetcache(struct vl_ctx *ctx, int locktype);
+extern int vlsynccache(void);
 #endif