Lines Matching refs:dummy_log
157 static struct jfs_log *dummy_log; variable
1200 if (!dummy_log) { in open_dummy_log()
1201 dummy_log = kzalloc(sizeof(struct jfs_log), GFP_KERNEL); in open_dummy_log()
1202 if (!dummy_log) { in open_dummy_log()
1206 INIT_LIST_HEAD(&dummy_log->sb_list); in open_dummy_log()
1207 init_waitqueue_head(&dummy_log->syncwait); in open_dummy_log()
1208 dummy_log->no_integrity = 1; in open_dummy_log()
1210 dummy_log->base = 0; in open_dummy_log()
1211 dummy_log->size = 1024; in open_dummy_log()
1212 rc = lmLogInit(dummy_log); in open_dummy_log()
1214 kfree(dummy_log); in open_dummy_log()
1215 dummy_log = NULL; in open_dummy_log()
1221 LOG_LOCK(dummy_log); in open_dummy_log()
1222 list_add(&JFS_SBI(sb)->log_list, &dummy_log->sb_list); in open_dummy_log()
1223 JFS_SBI(sb)->log = dummy_log; in open_dummy_log()
1224 LOG_UNLOCK(dummy_log); in open_dummy_log()