Lines Matching refs:temp
56 struct mid_q_entry *temp; in AllocMidQEntry() local
63 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS); in AllocMidQEntry()
64 memset(temp, 0, sizeof(struct mid_q_entry)); in AllocMidQEntry()
65 kref_init(&temp->refcount); in AllocMidQEntry()
66 temp->mid = get_mid(smb_buffer); in AllocMidQEntry()
67 temp->pid = current->pid; in AllocMidQEntry()
68 temp->command = cpu_to_le16(smb_buffer->Command); in AllocMidQEntry()
72 temp->when_alloc = jiffies; in AllocMidQEntry()
73 temp->server = server; in AllocMidQEntry()
80 temp->creator = current; in AllocMidQEntry()
81 temp->callback = cifs_wake_up_task; in AllocMidQEntry()
82 temp->callback_data = current; in AllocMidQEntry()
85 temp->mid_state = MID_REQUEST_ALLOCATED; in AllocMidQEntry()
86 return temp; in AllocMidQEntry()