past              276 fs/ocfs2/dlm/dlmast.c 	struct dlm_proxy_ast *past = (struct dlm_proxy_ast *) msg->buf;
past              291 fs/ocfs2/dlm/dlmast.c 	name = past->name;
past              292 fs/ocfs2/dlm/dlmast.c 	locklen = past->namelen;
past              293 fs/ocfs2/dlm/dlmast.c 	cookie = past->cookie;
past              294 fs/ocfs2/dlm/dlmast.c 	flags = be32_to_cpu(past->flags);
past              295 fs/ocfs2/dlm/dlmast.c 	node = past->node_idx;
past              315 fs/ocfs2/dlm/dlmast.c 	mlog(0, "type=%d, blocked_type=%d\n", past->type, past->blocked_type);
past              317 fs/ocfs2/dlm/dlmast.c 	if (past->type != DLM_AST &&
past              318 fs/ocfs2/dlm/dlmast.c 	    past->type != DLM_BAST) {
past              320 fs/ocfs2/dlm/dlmast.c 		     "name=%.*s, node=%u\n", past->type,
past              331 fs/ocfs2/dlm/dlmast.c 		     "name=%.*s, node=%u\n", (past->type == DLM_AST ? "" : "b"),
past              365 fs/ocfs2/dlm/dlmast.c 	if (past->type == DLM_AST)
past              380 fs/ocfs2/dlm/dlmast.c 	     "node=%u\n", past->type == DLM_AST ? "" : "b",
past              392 fs/ocfs2/dlm/dlmast.c 	if (past->type == DLM_AST) {
past              413 fs/ocfs2/dlm/dlmast.c 			memcpy(lock->lksb->lvb, past->lvb, DLM_LVB_LEN);
past              418 fs/ocfs2/dlm/dlmast.c 	if (past->type == DLM_AST)
past              421 fs/ocfs2/dlm/dlmast.c 		dlm_do_local_bast(dlm, res, lock, past->blocked_type);
past              438 fs/ocfs2/dlm/dlmast.c 	struct dlm_proxy_ast past;
past              447 fs/ocfs2/dlm/dlmast.c 	memset(&past, 0, sizeof(struct dlm_proxy_ast));
past              448 fs/ocfs2/dlm/dlmast.c 	past.node_idx = dlm->node_num;
past              449 fs/ocfs2/dlm/dlmast.c 	past.type = msg_type;
past              450 fs/ocfs2/dlm/dlmast.c 	past.blocked_type = blocked_type;
past              451 fs/ocfs2/dlm/dlmast.c 	past.namelen = res->lockname.len;
past              452 fs/ocfs2/dlm/dlmast.c 	memcpy(past.name, res->lockname.name, past.namelen);
past              453 fs/ocfs2/dlm/dlmast.c 	past.cookie = lock->ml.cookie;
past              456 fs/ocfs2/dlm/dlmast.c 	vec[0].iov_base = &past;
past              458 fs/ocfs2/dlm/dlmast.c 		be32_add_cpu(&past.flags, LKM_GET_LVB);