Lines Matching defs:log
35 * file system space fsck inline log
57 struct jfs_log *log = sbi->log;
124 * reconfigure inline log space:
160 * - 50 extra pages for the chkdsk service log
180 * If we're expanding enough that the inline log does not overlap
181 * the old one, we can format the new log before we quiesce the
185 if ((rc = lmLogFormat(log, newLogAddress, newLogSize)))
192 * (prepare to move the inline log and to prevent map update)
197 * log is not required for recovery.
206 * deactivate old inline log
208 lmLogShutdown(log);
214 * of inline log space and fsck work space descriptors:
219 * fsck(): if FM_EXTENDFS, reformat inline log and fsck
220 * workspace from superblock inline log descriptor and fsck
243 * format new inline log synchronously;
245 * crash recovery: if log move in progress,
246 * reformat log and exit success;
249 if ((rc = lmLogFormat(log, newLogAddress, newLogSize)))
253 * activate new log
255 log->base = newLogAddress;
256 log->size = newLogSize >> (L2LOGPSIZE - sb->s_blocksize_bits);
257 if ((rc = lmLogInit(log)))
363 * logredo() do/can not use log records of bmap file growth
451 /* sync log to skip log replay of bmap file growth transaction; */
452 /* lmLogSync(log, 1); */
493 /* update inline log space descriptor */
499 /* record log's mount serial number */
500 j_sb->s_logserial = cpu_to_le32(log->serial);