Lines Matching refs:journal_size

1639 			   off_t         journal_size,
1668 if (journal_size < (256*1024) || journal_size > (MAX_JOURNAL_SIZE)) {
1669 printf("jnl: create: journal size %lld looks bogus.\n", journal_size);
1675 if (journal_size < min_size) {
1677 journal_size, phys_blksz);
1687 if ((journal_size % phys_blksz) != 0) {
1689 jdev_name, journal_size, phys_blksz);
1740 new_txn_base = (jnl->jhdr->sequence_num + (journal_size / phys_blksz) + (random() % 16384)) & 0x00ffffff;
1747 for(i = 1; i < journal_size / phys_blksz; i++) {
1767 jnl->jhdr->size = journal_size;
1815 off_t journal_size,
1845 if (journal_size < (256*1024) || journal_size > (1024*1024*1024)) {
1846 printf("jnl: open: journal size %lld looks bogus.\n", journal_size);
1852 if (journal_size < min_size) {
1854 journal_size, phys_blksz);
1858 if ((journal_size % phys_blksz) != 0) {
1860 jdev_name, journal_size, phys_blksz);
2021 (journal_size / phys_blksz) +
2069 off_t journal_size,
2095 if (journal_size < (256*1024) || journal_size > (MAX_JOURNAL_SIZE)) {
2096 printf("jnl: is_clean: journal size %lld looks bogus.\n", journal_size);
2100 if ((journal_size % phys_blksz) != 0) {
2102 jdev_name, journal_size, phys_blksz);
4504 * journal_size The size, in bytes, of the new journal.
4517 * EINVAL The journal_size is not a multiple of the block size
4522 int journal_relocate(journal *jnl, off_t offset, off_t journal_size, int32_t tbuffer_size,
4537 if ((journal_size % jnl->jhdr->jhdr_size) != 0) {
4539 jnl->jdev_name, journal_size, jnl->jhdr->jhdr_size);
4593 jnl->jhdr->size = journal_size;
4637 __unused off_t journal_size,
4651 __unused off_t journal_size,
4686 __unused off_t journal_size,
4720 __unused off_t journal_size,