• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/xnu-2782.1.97/bsd/vfs/

Lines Matching defs:journal_size

1642 			   off_t         journal_size,
1672 if (journal_size < (256*1024) || journal_size > (MAX_JOURNAL_SIZE)) {
1673 printf("jnl: %s: create: journal size %lld looks bogus.\n", jdev_name, journal_size);
1679 if (journal_size < min_size) {
1681 jdev_name, journal_size, phys_blksz);
1691 if ((journal_size % phys_blksz) != 0) {
1693 jdev_name, journal_size, phys_blksz);
1750 new_txn_base = (jnl->jhdr->sequence_num + (journal_size / phys_blksz) + (random() % 16384)) & 0x00ffffff;
1757 for(i = 1; i < journal_size / phys_blksz; i++) {
1777 jnl->jhdr->size = journal_size;
1826 off_t journal_size,
1857 if (journal_size < (256*1024) || journal_size > (1024*1024*1024)) {
1858 printf("jnl: %s: open: journal size %lld looks bogus.\n", jdev_name, journal_size);
1864 if (journal_size < min_size) {
1866 jdev_name, journal_size, phys_blksz);
1870 if ((journal_size % phys_blksz) != 0) {
1872 jdev_name, journal_size, phys_blksz);
2039 (journal_size / phys_blksz) +
2089 off_t journal_size,
2117 if (journal_size < (256*1024) || journal_size > (MAX_JOURNAL_SIZE)) {
2118 printf("jnl: %s: is_clean: journal size %lld looks bogus.\n", jdev_name, journal_size);
2123 if ((journal_size % phys_blksz) != 0) {
2125 jdev_name, journal_size, phys_blksz);
4693 * journal_size The size, in bytes, of the new journal.
4706 * EINVAL The journal_size is not a multiple of the block size
4711 int journal_relocate(journal *jnl, off_t offset, off_t journal_size, int32_t tbuffer_size,
4726 if ((journal_size % jnl->jhdr->jhdr_size) != 0) {
4728 jnl->jdev_name, journal_size, jnl->jhdr->jhdr_size);
4782 jnl->jhdr->size = journal_size;
4826 __unused off_t journal_size,
4841 __unused off_t journal_size,
4877 __unused off_t journal_size,
4911 __unused off_t journal_size,