Lines Matching defs:temp
46 struct mid_q_entry *temp;
53 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS);
54 memset(temp, 0, sizeof(struct mid_q_entry));
55 kref_init(&temp->refcount);
56 temp->mid = get_mid(smb_buffer);
57 temp->pid = current->pid;
58 temp->command = cpu_to_le16(smb_buffer->Command);
62 temp->when_alloc = jiffies;
63 temp->server = server;
70 temp->creator = current;
71 temp->callback = cifs_wake_up_task;
72 temp->callback_data = current;
75 temp->mid_state = MID_REQUEST_ALLOCATED;
76 return temp;