Home
last modified time | relevance | path

Searched refs:ckp_lsn (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/sendmail/db/log/
H A Dlog_findckp.c62 DB_LSN ckp_lsn, final_ckp, last_ckp, next_lsn; local
75 ZERO_LSN(ckp_lsn);
95 if (IS_ZERO_LSN(ckp_lsn))
96 ckp_lsn = ckp_args->ckp_lsn;
101 (u_long)ckp_args->ckp_lsn.file,
102 (u_long)ckp_args->ckp_lsn.offset);
117 (log_compare(&last_ckp, &ckp_lsn) > 0 ||
130 if (log_compare(&last_ckp, &ckp_lsn) > 0 ||
/illumos-gate/usr/src/cmd/sendmail/db/db/
H A Ddb_apprec.c47 DB_LSN ckp_lsn, first_lsn, lsn, open_lsn; local
100 if ((ret = log_get(lp, &ckp_lsn, &data, DB_CHECKPOINT)) != 0) {
106 first: if ((ret = log_get(lp, &ckp_lsn, &data, DB_FIRST)) != 0) {
113 open_lsn = ckp_lsn;
116 (u_long)ckp_lsn.file, (u_long)ckp_lsn.offset);
218 dbenv->tx_info->region->last_ckp = ckp_lsn;
/illumos-gate/usr/src/cmd/sendmail/db/txn/
H A Dtxn_auto.c142 ckp_lsn, last_ckp) in __txn_ckp_log() argument
147 DB_LSN * ckp_lsn;
164 + sizeof(*ckp_lsn)
176 if (ckp_lsn != NULL)
177 memcpy(bp, ckp_lsn, sizeof(*ckp_lsn));
179 memset(bp, 0, sizeof(*ckp_lsn));
180 bp += sizeof(*ckp_lsn);
230 (u_long)argp->ckp_lsn.file, (u_long)argp->ckp_lsn.offset);
262 memcpy(&argp->ckp_lsn, bp, sizeof(argp->ckp_lsn));
263 bp += sizeof(argp->ckp_lsn);
H A Dtxn.c744 DB_LSN ckp_lsn, sync_lsn, last_ckp; local
755 ZERO_LSN(ckp_lsn);
773 ckp_lsn = dblp->lp->lsn;
787 if (IS_ZERO_LSN(ckp_lsn)) {
790 ckp_lsn = dblp->lp->lsn;
814 ckp_lsn = txnp->begin_lsn;
817 mgr->region->pending_ckp = ckp_lsn;
824 sync_lsn = ckp_lsn;
844 NULL, &ckp_lsn, DB_CHECKPOINT, &ckp_lsn, &last_ckp)) != 0) {
847 (long)ckp_lsn.file, (long)ckp_lsn.offset,
[all …]
H A Dtxn_rec.c194 if (argp->ckp_lsn.file == lsnp->file &&
195 argp->ckp_lsn.offset == lsnp->offset)
/illumos-gate/usr/src/cmd/sendmail/db/include/
H A Dtxn_auto.h21 DB_LSN ckp_lsn; member