Lines Matching defs:jid
341 * 10. gfs2_control updates control_lock lvb with new generation and jid bits
345 * 14. gfs2_control updates control_lock lvb jid bits for recovered journals
378 * number and jid bits, but only the first to get the control_lock EX will
386 * . One node succeeds for a jid, and that one clears the jid bit in the lvb
392 * 1. jid fails
394 * 3. jid recovered for step 1
395 * 4. jid taken again (new mount)
396 * 5. jid fails (for step 4)
462 * from recover_done callback. Indicates the jid bitmap has been updated
465 * GDLM_LVB_SIZE-8 bytes of jid bit map. If bit N is set, it indicates
466 * that jid N needs recovery.
688 * the jid and cleared the lvb bit for it.
750 * Everyone will see jid bits set in the lvb, run gfs2_recover_set(),
751 * and clear a jid bit in the lvb if the recovery is a success.
752 * Eventually all journals will be recovered, all jid bits will
758 fs_info(sdp, "recover generation %u jid %d\n",
768 * No more jid bits set in lvb, all recovery is done, unblock locks
1044 * Expand static jid arrays if necessary (by increments of RECOVER_SIZE_INC)
1046 * gfs2 jids start at 0, so jid = slot - 1)
1135 identifies slot/jid of failed member */
1141 int jid = slot->slot - 1;
1144 fs_err(sdp, "recover_slot jid %d ignored due to withdraw.\n",
1145 jid);
1149 if (ls->ls_recover_size < jid + 1) {
1150 fs_err(sdp, "recover_slot jid %d gen %u short size %d\n",
1151 jid, ls->ls_recover_block, ls->ls_recover_size);
1156 if (ls->ls_recover_submit[jid]) {
1157 fs_info(sdp, "recover_slot jid %d gen %u prev %u\n",
1158 jid, ls->ls_recover_block, ls->ls_recover_submit[jid]);
1160 ls->ls_recover_submit[jid] = ls->ls_recover_block;
1176 /* ensure the ls jid arrays are large enough */
1198 static void gdlm_recovery_result(struct gfs2_sbd *sdp, unsigned int jid,
1204 fs_err(sdp, "recovery_result jid %d ignored due to withdraw.\n",
1205 jid);
1212 if (jid == ls->ls_jid)
1220 if (ls->ls_recover_size < jid + 1) {
1221 fs_err(sdp, "recovery_result jid %d short size %d\n",
1222 jid, ls->ls_recover_size);
1227 fs_info(sdp, "recover jid %d result %s\n", jid,
1230 ls->ls_recover_result[jid] = result;
1315 fs_err(sdp, "dlm lockspace ops disallow jid preset\n");
1383 { Opt_jid, "jid=%d"},