• 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

81 	enum dlm_status status;
89 status = __dlmconvert_master(dlm, res, lock, flags, type,
95 if (status != DLM_NORMAL && status != DLM_NOTQUEUED)
96 dlm_error(status);
107 return status;
125 enum dlm_status status = DLM_NORMAL;
140 status = DLM_DENIED;
148 status = DLM_DENIED;
187 status = DLM_NORMAL;
211 lock->lksb->status = DLM_NORMAL;
218 status = DLM_NORMAL;
227 status = DLM_NOTQUEUED;
239 if (status == DLM_DENIED) {
242 if (status == DLM_NORMAL)
244 return status;
261 * returns: DLM_NORMAL, DLM_RECOVERING, status from remote node
267 enum dlm_status status;
277 status = DLM_RECOVERING;
290 status = DLM_DENIED;
317 status = dlm_send_remote_convert_request(dlm, res, lock, flags, type);
323 if (status != DLM_NORMAL) {
324 if (status != DLM_NOTQUEUED)
325 dlm_error(status);
335 return status;
343 * returns: DLM_NOLOCKMGR, status from remote node
352 int status = 0;
377 vec, veclen, res->owner, &status);
380 ret = status; // this is already a dlm_status
419 * status from __dlmconvert_master
430 enum dlm_status status = DLM_NORMAL;
443 status = DLM_IVBUFLEN;
444 dlm_error(status);
453 status = DLM_BADARGS;
460 status = DLM_IVLOCKID;
463 dlm_error(status);
468 status = __dlm_lockres_state_to_status(res);
469 if (status != DLM_NORMAL) {
471 dlm_error(status);
485 status = DLM_IVLOCKID;
508 status = __dlm_lockres_state_to_status(res);
509 if (status == DLM_NORMAL) {
513 status = __dlmconvert_master(dlm, res, lock, flags,
523 if (status != DLM_NORMAL) {
524 if (status != DLM_NOTQUEUED)
525 dlm_error(status);
547 return status;