Lines Matching refs:dummy_log
157 static struct jfs_log *dummy_log; variable
1192 if (!dummy_log) { in open_dummy_log()
1193 dummy_log = kzalloc(sizeof(struct jfs_log), GFP_KERNEL); in open_dummy_log()
1194 if (!dummy_log) { in open_dummy_log()
1198 INIT_LIST_HEAD(&dummy_log->sb_list); in open_dummy_log()
1199 init_waitqueue_head(&dummy_log->syncwait); in open_dummy_log()
1200 dummy_log->no_integrity = 1; in open_dummy_log()
1202 dummy_log->base = 0; in open_dummy_log()
1203 dummy_log->size = 1024; in open_dummy_log()
1204 rc = lmLogInit(dummy_log); in open_dummy_log()
1206 kfree(dummy_log); in open_dummy_log()
1207 dummy_log = NULL; in open_dummy_log()
1213 LOG_LOCK(dummy_log); in open_dummy_log()
1214 list_add(&JFS_SBI(sb)->log_list, &dummy_log->sb_list); in open_dummy_log()
1215 JFS_SBI(sb)->log = dummy_log; in open_dummy_log()
1216 LOG_UNLOCK(dummy_log); in open_dummy_log()