log_put.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:17k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996, 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: log_put.c,v 11.26 2000/11/30 00:58:40 ubell Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #if TIME_WITH_SYS_TIME
  14. #include <sys/time.h>
  15. #include <time.h>
  16. #else
  17. #if HAVE_SYS_TIME_H
  18. #include <sys/time.h>
  19. #else
  20. #include <time.h>
  21. #endif
  22. #endif
  23. #include <stdio.h>
  24. #include <string.h>
  25. #include <unistd.h>
  26. #endif
  27. #ifdef  HAVE_RPC
  28. #include "db_server.h"
  29. #endif
  30. #include "db_int.h"
  31. #include "db_page.h"
  32. #include "log.h"
  33. #include "hash.h"
  34. #include "clib_ext.h"
  35. #ifdef HAVE_RPC
  36. #include "gen_client_ext.h"
  37. #include "rpc_client_ext.h"
  38. #endif
  39. static int __log_fill __P((DB_LOG *, DB_LSN *, void *, u_int32_t));
  40. static int __log_flush __P((DB_LOG *, const DB_LSN *));
  41. static int __log_newfh __P((DB_LOG *));
  42. static int __log_putr __P((DB_LOG *, DB_LSN *, const DBT *, u_int32_t));
  43. static int __log_open_files __P((DB_ENV *));
  44. static int __log_write __P((DB_LOG *, void *, u_int32_t));
  45. /*
  46.  * log_put --
  47.  * Write a log record.
  48.  */
  49. int
  50. log_put(dbenv, lsn, dbt, flags)
  51. DB_ENV *dbenv;
  52. DB_LSN *lsn;
  53. const DBT *dbt;
  54. u_int32_t flags;
  55. {
  56. DB_LOG *dblp;
  57. int ret;
  58. #ifdef HAVE_RPC
  59. if (F_ISSET(dbenv, DB_ENV_RPCCLIENT))
  60. return (__dbcl_log_put(dbenv, lsn, dbt, flags));
  61. #endif
  62. PANIC_CHECK(dbenv);
  63. ENV_REQUIRES_CONFIG(dbenv, dbenv->lg_handle, DB_INIT_LOG);
  64. /* Validate arguments. */
  65. if (flags != 0 && flags != DB_CHECKPOINT &&
  66.     flags != DB_CURLSN && flags != DB_FLUSH)
  67. return (__db_ferr(dbenv, "log_put", 0));
  68. dblp = dbenv->lg_handle;
  69. R_LOCK(dbenv, &dblp->reginfo);
  70. ret = __log_put(dbenv, lsn, dbt, flags);
  71. R_UNLOCK(dbenv, &dblp->reginfo);
  72. return (ret);
  73. }
  74. /*
  75.  * __log_put --
  76.  * Write a log record; internal version.
  77.  *
  78.  * PUBLIC: int __log_put __P((DB_ENV *, DB_LSN *, const DBT *, u_int32_t));
  79.  */
  80. int
  81. __log_put(dbenv, lsn, dbt, flags)
  82. DB_ENV *dbenv;
  83. DB_LSN *lsn;
  84. const DBT *dbt;
  85. u_int32_t flags;
  86. {
  87. DBT t;
  88. DB_LOG *dblp;
  89. LOG *lp;
  90. u_int32_t lastoff;
  91. int ret;
  92. dblp = dbenv->lg_handle;
  93. lp = dblp->reginfo.primary;
  94. /*
  95.  * If the application just wants to know where we are, fill in
  96.  * the information.  Currently used by the transaction manager
  97.  * to avoid writing TXN_begin records.
  98.  */
  99. if (flags == DB_CURLSN) {
  100. lsn->file = lp->lsn.file;
  101. lsn->offset = lp->lsn.offset;
  102. return (0);
  103. }
  104. /* If this information won't fit in the file, swap files. */
  105. if (lp->lsn.offset + sizeof(HDR) + dbt->size > lp->persist.lg_max) {
  106. if (sizeof(HDR) +
  107.     sizeof(LOGP) + dbt->size > lp->persist.lg_max) {
  108. __db_err(dbenv,
  109.     "log_put: record larger than maximum file size");
  110. return (EINVAL);
  111. }
  112. /* Flush the log. */
  113. if ((ret = __log_flush(dblp, NULL)) != 0)
  114. return (ret);
  115. /*
  116.  * Save the last known offset from the previous file, we'll
  117.  * need it to initialize the persistent header information.
  118.  */
  119. lastoff = lp->lsn.offset;
  120. /* Point the current LSN to the new file. */
  121. ++lp->lsn.file;
  122. lp->lsn.offset = 0;
  123. /* Reset the file write offset. */
  124. lp->w_off = 0;
  125. if (dbenv->db_noticecall != NULL)
  126. dbenv->db_noticecall(dbenv, DB_NOTICE_LOGFILE_CHANGED);
  127. } else
  128. lastoff = 0;
  129. /* Initialize the LSN information returned to the user. */
  130. lsn->file = lp->lsn.file;
  131. lsn->offset = lp->lsn.offset;
  132. /*
  133.  * Insert persistent information as the first record in every file.
  134.  * Note that the previous length is wrong for the very first record
  135.  * of the log, but that's okay, we check for it during retrieval.
  136.  */
  137. if (lp->lsn.offset == 0) {
  138. t.data = &lp->persist;
  139. t.size = sizeof(LOGP);
  140. if ((ret = __log_putr(dblp, lsn,
  141.     &t, lastoff == 0 ? 0 : lastoff - lp->len)) != 0)
  142. return (ret);
  143. /*
  144.  * Record files open in this log.
  145.  * If we are recovering then we are in the
  146.  * process of outputting the files, don't do
  147.  * it again.
  148.  */
  149. if (!F_ISSET(dblp, DBLOG_RECOVER) &&
  150.     (ret = __log_open_files(dbenv)) != 0)
  151. return (ret);
  152. /* Update the LSN information returned to the user. */
  153. lsn->file = lp->lsn.file;
  154. lsn->offset = lp->lsn.offset;
  155. }
  156. /* Write the application's log record. */
  157. if ((ret = __log_putr(dblp, lsn, dbt, lp->lsn.offset - lp->len)) != 0)
  158. return (ret);
  159. /*
  160.  * On a checkpoint, we:
  161.  * Put out the checkpoint record (above).
  162.  * Save the LSN of the checkpoint in the shared region.
  163.  * Append the set of file name information into the log.
  164.  */
  165. if (flags == DB_CHECKPOINT) {
  166. lp->chkpt_lsn = *lsn;
  167. if ((ret = __log_open_files(dbenv)) != 0)
  168. return (ret);
  169. }
  170. /*
  171.  * On a checkpoint or when flush is requested, we:
  172.  * Flush the current buffer contents to disk.
  173.  * Sync the log to disk.
  174.  */
  175. if (flags == DB_FLUSH || flags == DB_CHECKPOINT)
  176. if ((ret = __log_flush(dblp, NULL)) != 0)
  177. return (ret);
  178. /*
  179.  * On a checkpoint, we:
  180.  * Save the time the checkpoint was written.
  181.  * Reset the bytes written since the last checkpoint.
  182.  */
  183. if (flags == DB_CHECKPOINT) {
  184. (void)time(&lp->chkpt);
  185. lp->stat.st_wc_bytes = lp->stat.st_wc_mbytes = 0;
  186. }
  187. return (0);
  188. }
  189. /*
  190.  * __log_putr --
  191.  * Actually put a record into the log.
  192.  */
  193. static int
  194. __log_putr(dblp, lsn, dbt, prev)
  195. DB_LOG *dblp;
  196. DB_LSN *lsn;
  197. const DBT *dbt;
  198. u_int32_t prev;
  199. {
  200. HDR hdr;
  201. LOG *lp;
  202. int ret;
  203. lp = dblp->reginfo.primary;
  204. /*
  205.  * Initialize the header.  If we just switched files, lsn.offset will
  206.  * be 0, and what we really want is the offset of the previous record
  207.  * in the previous file.  Fortunately, prev holds the value we want.
  208.  */
  209. hdr.prev = prev;
  210. hdr.len = sizeof(HDR) + dbt->size;
  211. hdr.cksum = __ham_func4(NULL, dbt->data, dbt->size);
  212. if ((ret = __log_fill(dblp, lsn, &hdr, sizeof(HDR))) != 0)
  213. return (ret);
  214. lp->len = sizeof(HDR);
  215. lp->lsn.offset += sizeof(HDR);
  216. if ((ret = __log_fill(dblp, lsn, dbt->data, dbt->size)) != 0)
  217. return (ret);
  218. lp->len += dbt->size;
  219. lp->lsn.offset += dbt->size;
  220. return (0);
  221. }
  222. /*
  223.  * log_flush --
  224.  * Write all records less than or equal to the specified LSN.
  225.  */
  226. int
  227. log_flush(dbenv, lsn)
  228. DB_ENV *dbenv;
  229. const DB_LSN *lsn;
  230. {
  231. DB_LOG *dblp;
  232. int ret;
  233. #ifdef HAVE_RPC
  234. if (F_ISSET(dbenv, DB_ENV_RPCCLIENT))
  235. return (__dbcl_log_flush(dbenv, lsn));
  236. #endif
  237. PANIC_CHECK(dbenv);
  238. ENV_REQUIRES_CONFIG(dbenv, dbenv->lg_handle, DB_INIT_LOG);
  239. dblp = dbenv->lg_handle;
  240. R_LOCK(dbenv, &dblp->reginfo);
  241. ret = __log_flush(dblp, lsn);
  242. R_UNLOCK(dbenv, &dblp->reginfo);
  243. return (ret);
  244. }
  245. /*
  246.  * __log_flush --
  247.  * Write all records less than or equal to the specified LSN; internal
  248.  * version.
  249.  */
  250. static int
  251. __log_flush(dblp, lsn)
  252. DB_LOG *dblp;
  253. const DB_LSN *lsn;
  254. {
  255. DB_LSN t_lsn;
  256. LOG *lp;
  257. int current, ret;
  258. ret = 0;
  259. lp = dblp->reginfo.primary;
  260. /*
  261.  * If no LSN specified, flush the entire log by setting the flush LSN
  262.  * to the last LSN written in the log.  Otherwise, check that the LSN
  263.  * isn't a non-existent record for the log.
  264.  */
  265. if (lsn == NULL) {
  266. t_lsn.file = lp->lsn.file;
  267. t_lsn.offset = lp->lsn.offset - lp->len;
  268. lsn = &t_lsn;
  269. } else
  270. if (lsn->file > lp->lsn.file ||
  271.     (lsn->file == lp->lsn.file &&
  272.     lsn->offset > lp->lsn.offset - lp->len)) {
  273. __db_err(dblp->dbenv,
  274.     "log_flush: LSN past current end-of-log");
  275. return (EINVAL);
  276. }
  277. /*
  278.  * If the LSN is less than or equal to the last-sync'd LSN, we're done.
  279.  * Note, the last-sync LSN saved in s_lsn is the LSN of the first byte
  280.  * after the byte we absolutely know was written to disk, so the test
  281.  * is <, not <=.
  282.  */
  283. if (lsn->file < lp->s_lsn.file ||
  284.     (lsn->file == lp->s_lsn.file && lsn->offset < lp->s_lsn.offset))
  285. return (0);
  286. /*
  287.  * We may need to write the current buffer.  We have to write the
  288.  * current buffer if the flush LSN is greater than or equal to the
  289.  * buffer's starting LSN.
  290.  */
  291. current = 0;
  292. if (lp->b_off != 0 && log_compare(lsn, &lp->f_lsn) >= 0) {
  293. if ((ret = __log_write(dblp, dblp->bufp, lp->b_off)) != 0)
  294. return (ret);
  295. lp->b_off = 0;
  296. current = 1;
  297. }
  298. /*
  299.  * It's possible that this thread may never have written to this log
  300.  * file.  Acquire a file descriptor if we don't already have one.
  301.  * One last check -- if we're not writing anything from the current
  302.  * buffer, don't bother.  We have nothing to write and nothing to
  303.  * sync.
  304.  */
  305. if (dblp->lfname != lp->lsn.file) {
  306. if (!current)
  307. return (0);
  308. if ((ret = __log_newfh(dblp)) != 0)
  309. return (ret);
  310. }
  311. /* Sync all writes to disk. */
  312. if ((ret = __os_fsync(dblp->dbenv, &dblp->lfh)) != 0)
  313. return (__db_panic(dblp->dbenv, ret));
  314. ++lp->stat.st_scount;
  315. /* Set the last-synced LSN, using the on-disk write offset. */
  316. lp->s_lsn.file = lp->f_lsn.file;
  317. lp->s_lsn.offset = lp->w_off;
  318. return (0);
  319. }
  320. /*
  321.  * __log_fill --
  322.  * Write information into the log.
  323.  */
  324. static int
  325. __log_fill(dblp, lsn, addr, len)
  326. DB_LOG *dblp;
  327. DB_LSN *lsn;
  328. void *addr;
  329. u_int32_t len;
  330. {
  331. LOG *lp;
  332. u_int32_t bsize, nrec;
  333. size_t nw, remain;
  334. int ret;
  335. lp = dblp->reginfo.primary;
  336. bsize = lp->buffer_size;
  337. while (len > 0) { /* Copy out the data. */
  338. /*
  339.  * If we're beginning a new buffer, note the user LSN to which
  340.  * the first byte of the buffer belongs.  We have to know this
  341.  * when flushing the buffer so that we know if the in-memory
  342.  * buffer needs to be flushed.
  343.  */
  344. if (lp->b_off == 0)
  345. lp->f_lsn = *lsn;
  346. /*
  347.  * If we're on a buffer boundary and the data is big enough,
  348.  * copy as many records as we can directly from the data.
  349.  */
  350. if (lp->b_off == 0 && len >= bsize) {
  351. nrec = len / bsize;
  352. if ((ret = __log_write(dblp, addr, nrec * bsize)) != 0)
  353. return (ret);
  354. addr = (u_int8_t *)addr + nrec * bsize;
  355. len -= nrec * bsize;
  356. ++lp->stat.st_wcount_fill;
  357. continue;
  358. }
  359. /* Figure out how many bytes we can copy this time. */
  360. remain = bsize - lp->b_off;
  361. nw = remain > len ? len : remain;
  362. memcpy(dblp->bufp + lp->b_off, addr, nw);
  363. addr = (u_int8_t *)addr + nw;
  364. len -= nw;
  365. lp->b_off += nw;
  366. /* If we fill the buffer, flush it. */
  367. if (lp->b_off == bsize) {
  368. if ((ret = __log_write(dblp, dblp->bufp, bsize)) != 0)
  369. return (ret);
  370. lp->b_off = 0;
  371. ++lp->stat.st_wcount_fill;
  372. }
  373. }
  374. return (0);
  375. }
  376. /*
  377.  * __log_write --
  378.  * Write the log buffer to disk.
  379.  */
  380. static int
  381. __log_write(dblp, addr, len)
  382. DB_LOG *dblp;
  383. void *addr;
  384. u_int32_t len;
  385. {
  386. LOG *lp;
  387. size_t nw;
  388. int ret;
  389. /*
  390.  * If we haven't opened the log file yet or the current one
  391.  * has changed, acquire a new log file.
  392.  */
  393. lp = dblp->reginfo.primary;
  394. if (!F_ISSET(&dblp->lfh, DB_FH_VALID) || dblp->lfname != lp->lsn.file)
  395. if ((ret = __log_newfh(dblp)) != 0)
  396. return (ret);
  397. /*
  398.  * Seek to the offset in the file (someone may have written it
  399.  * since we last did).
  400.  */
  401. if ((ret =
  402.     __os_seek(dblp->dbenv,
  403.     &dblp->lfh, 0, 0, lp->w_off, 0, DB_OS_SEEK_SET)) != 0 ||
  404.     (ret = __os_write(dblp->dbenv, &dblp->lfh, addr, len, &nw)) != 0)
  405. return (__db_panic(dblp->dbenv, ret));
  406. if (nw != len) {
  407. __db_err(dblp->dbenv, "Short write while writing log");
  408. return (EIO);
  409. }
  410. /* Reset the buffer offset and update the seek offset. */
  411. lp->w_off += len;
  412. /* Update written statistics. */
  413. if ((lp->stat.st_w_bytes += len) >= MEGABYTE) {
  414. lp->stat.st_w_bytes -= MEGABYTE;
  415. ++lp->stat.st_w_mbytes;
  416. }
  417. if ((lp->stat.st_wc_bytes += len) >= MEGABYTE) {
  418. lp->stat.st_wc_bytes -= MEGABYTE;
  419. ++lp->stat.st_wc_mbytes;
  420. }
  421. ++lp->stat.st_wcount;
  422. return (0);
  423. }
  424. /*
  425.  * log_file --
  426.  * Map a DB_LSN to a file name.
  427.  */
  428. int
  429. log_file(dbenv, lsn, namep, len)
  430. DB_ENV *dbenv;
  431. const DB_LSN *lsn;
  432. char *namep;
  433. size_t len;
  434. {
  435. DB_LOG *dblp;
  436. int ret;
  437. char *name;
  438. #ifdef HAVE_RPC
  439. if (F_ISSET(dbenv, DB_ENV_RPCCLIENT))
  440. return (__dbcl_log_file(dbenv, lsn, namep, len));
  441. #endif
  442. PANIC_CHECK(dbenv);
  443. ENV_REQUIRES_CONFIG(dbenv, dbenv->lg_handle, DB_INIT_LOG);
  444. dblp = dbenv->lg_handle;
  445. R_LOCK(dbenv, &dblp->reginfo);
  446. ret = __log_name(dblp, lsn->file, &name, NULL, 0);
  447. R_UNLOCK(dbenv, &dblp->reginfo);
  448. if (ret != 0)
  449. return (ret);
  450. /* Check to make sure there's enough room and copy the name. */
  451. if (len < strlen(name) + 1) {
  452. *namep = '';
  453. __db_err(dbenv, "log_file: name buffer is too short");
  454. return (EINVAL);
  455. }
  456. (void)strcpy(namep, name);
  457. __os_freestr(name);
  458. return (0);
  459. }
  460. /*
  461.  * __log_newfh --
  462.  * Acquire a file handle for the current log file.
  463.  */
  464. static int
  465. __log_newfh(dblp)
  466. DB_LOG *dblp;
  467. {
  468. LOG *lp;
  469. int ret;
  470. char *name;
  471. /* Close any previous file descriptor. */
  472. if (F_ISSET(&dblp->lfh, DB_FH_VALID))
  473. (void)__os_closehandle(&dblp->lfh);
  474. /* Get the path of the new file and open it. */
  475. lp = dblp->reginfo.primary;
  476. dblp->lfname = lp->lsn.file;
  477. /*
  478.  * Adding DB_OSO_LOG to the flags may add additional platform-specific
  479.  * optimizations.  On WinNT, the logfile is preallocated, which may
  480.  * have a time penalty at startup, but have better overall throughput.
  481.  * We are not certain that this works reliably, so enable at your own
  482.  * risk.
  483.  *
  484.  * XXX:
  485.  * Initialize the log file size.  This is a hack to push the log's
  486.  * maximum size down into the Windows __os_open routine, because it
  487.  * wants to pre-allocate it.
  488.  */
  489. dblp->lfh.log_size = dblp->dbenv->lg_max;
  490. if ((ret = __log_name(dblp, dblp->lfname,
  491.     &name, &dblp->lfh,
  492.     DB_OSO_CREATE |/* DB_OSO_LOG |*/ DB_OSO_SEQ)) != 0)
  493. __db_err(dblp->dbenv,
  494.     "log_put: %s: %s", name, db_strerror(ret));
  495. __os_freestr(name);
  496. return (ret);
  497. }
  498. /*
  499.  * __log_name --
  500.  * Return the log name for a particular file, and optionally open it.
  501.  *
  502.  * PUBLIC: int __log_name __P((DB_LOG *,
  503.  * PUBLIC:     u_int32_t, char **, DB_FH *, u_int32_t));
  504.  */
  505. int
  506. __log_name(dblp, filenumber, namep, fhp, flags)
  507. DB_LOG *dblp;
  508. u_int32_t filenumber, flags;
  509. char **namep;
  510. DB_FH *fhp;
  511. {
  512. LOG *lp;
  513. int ret;
  514. char *oname;
  515. char old[sizeof(LFPREFIX) + 5 + 20], new[sizeof(LFPREFIX) + 10 + 20];
  516. lp = dblp->reginfo.primary;
  517. /*
  518.  * !!!
  519.  * The semantics of this routine are bizarre.
  520.  *
  521.  * The reason for all of this is that we need a place where we can
  522.  * intercept requests for log files, and, if appropriate, check for
  523.  * both the old-style and new-style log file names.  The trick is
  524.  * that all callers of this routine that are opening the log file
  525.  * read-only want to use an old-style file name if they can't find
  526.  * a match using a new-style name.  The only down-side is that some
  527.  * callers may check for the old-style when they really don't need
  528.  * to, but that shouldn't mess up anything, and we only check for
  529.  * the old-style name when we've already failed to find a new-style
  530.  * one.
  531.  *
  532.  * Create a new-style file name, and if we're not going to open the
  533.  * file, return regardless.
  534.  */
  535. (void)snprintf(new, sizeof(new), LFNAME, filenumber);
  536. if ((ret = __db_appname(dblp->dbenv,
  537.     DB_APP_LOG, NULL, new, 0, NULL, namep)) != 0 || fhp == NULL)
  538. return (ret);
  539. /* Open the new-style file -- if we succeed, we're done. */
  540. if ((ret = __os_open(dblp->dbenv,
  541.     *namep, flags, lp->persist.mode, fhp)) == 0)
  542. return (0);
  543. /*
  544.  * The open failed... if the DB_RDONLY flag isn't set, we're done,
  545.  * the caller isn't interested in old-style files.
  546.  */
  547. if (!LF_ISSET(DB_OSO_RDONLY)) {
  548. __db_err(dblp->dbenv,
  549.     "%s: log file open failed: %s", *namep, db_strerror(ret));
  550. return (__db_panic(dblp->dbenv, ret));
  551. }
  552. /* Create an old-style file name. */
  553. (void)snprintf(old, sizeof(old), LFNAME_V1, filenumber);
  554. if ((ret = __db_appname(dblp->dbenv,
  555.     DB_APP_LOG, NULL, old, 0, NULL, &oname)) != 0)
  556. goto err;
  557. /*
  558.  * Open the old-style file -- if we succeed, we're done.  Free the
  559.  * space allocated for the new-style name and return the old-style
  560.  * name to the caller.
  561.  */
  562. if ((ret = __os_open(dblp->dbenv,
  563.     oname, flags, lp->persist.mode, fhp)) == 0) {
  564. __os_freestr(*namep);
  565. *namep = oname;
  566. return (0);
  567. }
  568. /*
  569.  * Couldn't find either style of name -- return the new-style name
  570.  * for the caller's error message.  If it's an old-style name that's
  571.  * actually missing we're going to confuse the user with the error
  572.  * message, but that implies that not only were we looking for an
  573.  * old-style name, but we expected it to exist and we weren't just
  574.  * looking for any log file.  That's not a likely error.
  575.  */
  576. err: __os_freestr(oname);
  577. return (ret);
  578. }
  579. static int
  580. __log_open_files(dbenv)
  581. DB_ENV *dbenv;
  582. {
  583. DB_LOG *dblp;
  584. DB_LSN r_unused;
  585. DBT fid_dbt, t;
  586. FNAME *fnp;
  587. LOG *lp;
  588. int ret;
  589. dblp = dbenv->lg_handle;
  590. lp = dblp->reginfo.primary;
  591. for (fnp = SH_TAILQ_FIRST(&lp->fq, __fname);
  592.     fnp != NULL; fnp = SH_TAILQ_NEXT(fnp, q, __fname)) {
  593. if (fnp->ref == 0) /* Entry not in use. */
  594. continue;
  595. if (fnp->name_off != INVALID_ROFF) {
  596. memset(&t, 0, sizeof(t));
  597. t.data = R_ADDR(&dblp->reginfo, fnp->name_off);
  598. t.size = strlen(t.data) + 1;
  599. }
  600. memset(&fid_dbt, 0, sizeof(fid_dbt));
  601. fid_dbt.data = fnp->ufid;
  602. fid_dbt.size = DB_FILE_ID_LEN;
  603. /*
  604.  * Output LOG_CHECKPOINT records which will be
  605.  * processed during the OPENFILES pass of recovery.
  606.  * At the end of recovery we want to output the
  607.  * files that were open so that a future recovery
  608.  * run will have the correct files open during
  609.  * a backward pass.  For this we output LOG_CLOSE
  610.  * records so that the files will be closed on
  611.  * the forward pass.
  612.  */
  613. if ((ret = __log_register_log(dbenv,
  614.     NULL, &r_unused, 0,
  615.     F_ISSET(dblp, DBLOG_RECOVER) ? LOG_CLOSE : LOG_CHECKPOINT,
  616.     fnp->name_off == INVALID_ROFF ? NULL : &t,
  617.     &fid_dbt, fnp->id, fnp->s_type, fnp->meta_pgno)) != 0)
  618. return (ret);
  619. }
  620. return (0);
  621. }