Lines Matching defs:temp
737 struct mid_q_entry *temp;
745 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS);
746 memset(temp, 0, sizeof(struct mid_q_entry));
747 kref_init(&temp->refcount);
748 temp->mid = le64_to_cpu(shdr->MessageId);
749 temp->credits = credits > 0 ? credits : 1;
750 temp->pid = current->pid;
751 temp->command = shdr->Command; /* Always LE */
752 temp->when_alloc = jiffies;
753 temp->server = server;
760 temp->creator = current;
761 temp->callback = cifs_wake_up_task;
762 temp->callback_data = current;
765 temp->mid_state = MID_REQUEST_ALLOCATED;
768 le16_to_cpu(shdr->Command), temp->mid);
769 return temp;