X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftdb2%2Ftdb1_private.h;h=809f13555552ac85811946f1d8dd212cc92f0200;hb=0fd5be2955f8e6487c0f4ab711e2a6958bb8f412;hp=b34d4dd1ba194490871ed21c3ce87d9625b1b682;hpb=b929638e3cfe629285af3ecd0813e03eaeaa1133;p=ccan diff --git a/ccan/tdb2/tdb1_private.h b/ccan/tdb2/tdb1_private.h index b34d4dd1..809f1355 100644 --- a/ccan/tdb2/tdb1_private.h +++ b/ccan/tdb2/tdb1_private.h @@ -45,11 +45,6 @@ #include #include #include - -#ifndef _PUBLIC_ -#define _PUBLIC_ -#endif - #else #include "replace.h" #include "system/filesys.h" @@ -185,8 +180,6 @@ enum tdb1_lock_flags { TDB1_LOCK_WAIT = 1, /* If set, don't log an error on failure. */ TDB1_LOCK_PROBE = 2, - /* If set, don't actually lock at all. */ - TDB1_LOCK_MARK_ONLY = 4, }; struct tdb1_context; @@ -234,8 +227,7 @@ void tdb1_mmap(struct tdb1_context *tdb); int tdb1_lock(struct tdb1_context *tdb, int list, int ltype); int tdb1_nest_lock(struct tdb1_context *tdb, uint32_t offset, int ltype, enum tdb1_lock_flags flags); -int tdb1_nest_unlock(struct tdb1_context *tdb, uint32_t offset, int ltype, - bool mark_lock); +int tdb1_nest_unlock(struct tdb1_context *tdb, uint32_t offset, int ltype); int tdb1_unlock(struct tdb1_context *tdb, int list, int ltype); int tdb1_brlock(struct tdb1_context *tdb, int rw_type, tdb1_off_t offset, size_t len, @@ -253,7 +245,7 @@ int tdb1_recovery_area(struct tdb1_context *tdb, struct tdb1_record *rec); int tdb1_allrecord_lock(struct tdb1_context *tdb, int ltype, enum tdb1_lock_flags flags, bool upgradable); -int tdb1_allrecord_unlock(struct tdb1_context *tdb, int ltype, bool mark_lock); +int tdb1_allrecord_unlock(struct tdb1_context *tdb, int ltype); int tdb1_allrecord_upgrade(struct tdb1_context *tdb); int tdb1_write_lock_record(struct tdb1_context *tdb, tdb1_off_t off); int tdb1_write_unlock_record(struct tdb1_context *tdb, tdb1_off_t off);