···15441544 /* we need to run complete recovery for offline orphan slots */15451545 ocfs2_replay_map_set_state(osb, REPLAY_NEEDED);1546154615471547- mlog(ML_NOTICE, "Recovering node %d from slot %d on device (%u,%u)\n",15481548- node_num, slot_num,15491549- MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));15471547+ printk(KERN_NOTICE "ocfs2: Begin replay journal (node %d, slot %d) on "\15481548+ "device (%u,%u)\n", node_num, slot_num, MAJOR(osb->sb->s_dev),15491549+ MINOR(osb->sb->s_dev));1550155015511551 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);15521552···1601160116021602 jbd2_journal_destroy(journal);1603160316041604+ printk(KERN_NOTICE "ocfs2: End replay journal (node %d, slot %d) on "\16051605+ "device (%u,%u)\n", node_num, slot_num, MAJOR(osb->sb->s_dev),16061606+ MINOR(osb->sb->s_dev));16041607done:16051608 /* drop the lock on this nodes journal */16061609 if (got_lock)
+9-4
fs/ocfs2/quota_local.c
···404404 int status = 0;405405 struct ocfs2_quota_recovery *rec;406406407407- mlog(ML_NOTICE, "Beginning quota recovery in slot %u\n", slot_num);407407+ printk(KERN_NOTICE "ocfs2: Beginning quota recovery on device (%s) for "408408+ "slot %u\n", osb->dev_str, slot_num);409409+408410 rec = ocfs2_alloc_quota_recovery();409411 if (!rec)410412 return ERR_PTR(-ENOMEM);···598596 struct inode *lqinode;599597 unsigned int flags;600598601601- mlog(ML_NOTICE, "Finishing quota recovery in slot %u\n", slot_num);599599+ printk(KERN_NOTICE "ocfs2: Finishing quota recovery on device (%s) for "600600+ "slot %u\n", osb->dev_str, slot_num);601601+602602 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);603603 for (type = 0; type < MAXQUOTAS; type++) {604604 if (list_empty(&(rec->r_list[type])))···616612 /* Someone else is holding the lock? Then he must be617613 * doing the recovery. Just skip the file... */618614 if (status == -EAGAIN) {619619- mlog(ML_NOTICE, "skipping quota recovery for slot %d "620620- "because quota file is locked.\n", slot_num);615615+ printk(KERN_NOTICE "ocfs2: Skipping quota recovery on "616616+ "device (%s) for slot %d because quota file is "617617+ "locked.\n", osb->dev_str, slot_num);621618 status = 0;622619 goto out_put;623620 } else if (status < 0) {
+2-2
fs/ocfs2/slot_map.c
···493493 goto bail;494494 }495495 } else496496- mlog(ML_NOTICE, "slot %d is already allocated to this node!\n",497497- slot);496496+ printk(KERN_INFO "ocfs2: Slot %d on device (%s) was already "497497+ "allocated to this node!\n", slot, osb->dev_str);498498499499 ocfs2_set_slot(si, slot, osb->node_num);500500 osb->slot_num = slot;
+5-5
fs/ocfs2/super.c
···1107110711081108 ocfs2_set_ro_flag(osb, 1);1109110911101110- printk(KERN_NOTICE "Readonly device detected. No cluster "11111111- "services will be utilized for this mount. Recovery "11121112- "will be skipped.\n");11101110+ printk(KERN_NOTICE "ocfs2: Readonly device (%s) detected. "11111111+ "Cluster services will not be used for this mount. "11121112+ "Recovery will be skipped.\n", osb->dev_str);11131113 }1114111411151115 if (!ocfs2_is_hard_readonly(osb)) {···24622462 goto finally;24632463 }24642464 } else {24652465- mlog(ML_NOTICE, "File system was not unmounted cleanly, "24662466- "recovering volume.\n");24652465+ printk(KERN_NOTICE "ocfs2: File system on device (%s) was not "24662466+ "unmounted cleanly, recovering it.\n", osb->dev_str);24672467 }2468246824692469 local = ocfs2_mount_local(osb);