Lines Matching defs:log
35 * file system space fsck inline log
57 struct jfs_log *log = sbi->log;
123 * reconfigure inline log space:
159 * - 50 extra pages for the chkdsk service log
179 * If we're expanding enough that the inline log does not overlap
180 * the old one, we can format the new log before we quiesce the
184 if ((rc = lmLogFormat(log, newLogAddress, newLogSize)))
191 * (prepare to move the inline log and to prevent map update)
196 * log is not required for recovery.
205 * deactivate old inline log
207 lmLogShutdown(log);
213 * of inline log space and fsck work space descriptors:
218 * fsck(): if FM_EXTENDFS, reformat inline log and fsck
219 * workspace from superblock inline log descriptor and fsck
242 * format new inline log synchronously;
244 * crash recovery: if log move in progress,
245 * reformat log and exit success;
248 if ((rc = lmLogFormat(log, newLogAddress, newLogSize)))
252 * activate new log
254 log->base = newLogAddress;
255 log->size = newLogSize >> (L2LOGPSIZE - sb->s_blocksize_bits);
256 if ((rc = lmLogInit(log)))
362 * logredo() do/can not use log records of bmap file growth
450 /* sync log to skip log replay of bmap file growth transaction; */
451 /* lmLogSync(log, 1); */
492 /* update inline log space descriptor */
498 /* record log's mount serial number */
499 j_sb->s_logserial = cpu_to_le32(log->serial);