• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/ocfs2/dlm/

Lines Matching defs:status

83 	enum dlm_status status;
91 status = __dlmconvert_master(dlm, res, lock, flags, type,
97 if (status != DLM_NORMAL && status != DLM_NOTQUEUED)
98 dlm_error(status);
109 return status;
127 enum dlm_status status = DLM_NORMAL;
142 status = DLM_DENIED;
150 status = DLM_DENIED;
189 status = DLM_NORMAL;
213 lock->lksb->status = DLM_NORMAL;
220 status = DLM_NORMAL;
229 status = DLM_NOTQUEUED;
241 if (status == DLM_DENIED) {
244 if (status == DLM_NORMAL)
246 return status;
263 * returns: DLM_NORMAL, DLM_RECOVERING, status from remote node
269 enum dlm_status status;
279 status = DLM_RECOVERING;
292 status = DLM_DENIED;
319 status = dlm_send_remote_convert_request(dlm, res, lock, flags, type);
325 if (status != DLM_NORMAL) {
326 if (status != DLM_NOTQUEUED)
327 dlm_error(status);
337 return status;
345 * returns: DLM_NOLOCKMGR, status from remote node
354 int status = 0;
379 vec, veclen, res->owner, &status);
382 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;