• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ocfs2/dlm/

Lines Matching refs:status

126 	enum dlm_status status = DLM_NORMAL;
133 status = __dlm_lockres_state_to_status(res);
134 if (status != DLM_NORMAL &&
138 dlm_error(status);
139 return status;
147 lock->lksb->status = DLM_NORMAL;
148 status = DLM_NORMAL;
170 status = DLM_NOTQUEUED;
201 return status;
218 * returns: DLM_DENIED, DLM_RECOVERING, or net status
224 enum dlm_status status = DLM_DENIED;
245 status = dlm_send_remote_lock_request(dlm, res, lock, flags);
250 if (status != DLM_NORMAL) {
251 if (status == DLM_RECOVERING &&
260 } else if (status != DLM_NOTQUEUED) {
268 dlm_error(status);
289 return status;
298 * returns: DLM_NOLOCKMGR, or net status
305 int tmpret, status = 0;
319 sizeof(create), res->owner, &status);
322 ret = status; // this is already a dlm_status
471 enum dlm_status status = DLM_NORMAL;
484 status = DLM_REJECTED;
489 dlm_error(status);
493 status = DLM_IVBUFLEN;
495 dlm_error(status);
499 status = DLM_SYSERR;
504 dlm_error(status);
515 status = DLM_IVLOCKID;
518 dlm_error(status);
523 status = __dlm_lockres_state_to_status(res);
526 if (status != DLM_NORMAL) {
533 status = dlmlock_master(dlm, res, newlock, be32_to_cpu(create->flags));
535 if (status != DLM_NORMAL)
544 return status;
570 enum dlm_status status;
583 status = DLM_BADPARAM;
585 dlm_error(status);
590 dlm_error(status);
599 dlm_error(status);
628 status = DLM_BADARGS;
640 status = dlmconvert_master(dlm, res, lock, flags, mode);
642 status = dlmconvert_remote(dlm, res, lock, flags, mode);
643 if (status == DLM_RECOVERING || status == DLM_MIGRATING ||
644 status == DLM_FORWARD) {
658 status = DLM_BADARGS;
660 dlm_error(status);
664 status = DLM_IVBUFLEN;
666 dlm_error(status);
673 dlm_error(status);
683 status = DLM_IVLOCKID;
684 dlm_error(status);
711 status = dlmlock_master(dlm, res, lock, flags);
713 status = dlmlock_remote(dlm, res, lock, flags);
715 if (status == DLM_RECOVERING || status == DLM_MIGRATING ||
716 status == DLM_FORWARD) {
722 if (status != DLM_RECOVERING)
740 if (status != DLM_NORMAL) {
742 if (status != DLM_NOTQUEUED)
743 dlm_error(status);
749 if (status != DLM_NORMAL) {
753 lksb->status = status;
761 return status;