midEntry           86 fs/cifs/cifsproto.h extern void DeleteMidQEntry(struct mid_q_entry *midEntry);
midEntry           88 fs/cifs/cifsproto.h extern void cifs_mid_q_entry_release(struct mid_q_entry *midEntry);
midEntry           91 fs/cifs/transport.c 	struct mid_q_entry *midEntry =
midEntry           94 fs/cifs/transport.c 	__le16 command = midEntry->server->vals->lock_cmd;
midEntry           95 fs/cifs/transport.c 	__u16 smb_cmd = le16_to_cpu(midEntry->command);
midEntry           99 fs/cifs/transport.c 	struct TCP_Server_Info *server = midEntry->server;
midEntry          101 fs/cifs/transport.c 	if (midEntry->resp_buf && (midEntry->mid_flags & MID_WAIT_CANCELLED) &&
midEntry          102 fs/cifs/transport.c 	    midEntry->mid_state == MID_RESPONSE_RECEIVED &&
midEntry          104 fs/cifs/transport.c 		server->ops->handle_cancelled_mid(midEntry->resp_buf, server);
midEntry          106 fs/cifs/transport.c 	midEntry->mid_state = MID_FREE;
midEntry          108 fs/cifs/transport.c 	if (midEntry->large_buf)
midEntry          109 fs/cifs/transport.c 		cifs_buf_release(midEntry->resp_buf);
midEntry          111 fs/cifs/transport.c 		cifs_small_buf_release(midEntry->resp_buf);
midEntry          114 fs/cifs/transport.c 	if (now < midEntry->when_alloc)
midEntry          116 fs/cifs/transport.c 	roundtrip_time = now - midEntry->when_alloc;
midEntry          142 fs/cifs/transport.c 	    time_after(now, midEntry->when_alloc + (slow_rsp_threshold * HZ)) &&
midEntry          143 fs/cifs/transport.c 	    (midEntry->command != command)) {
midEntry          151 fs/cifs/transport.c 		trace_smb3_slow_rsp(smb_cmd, midEntry->mid, midEntry->pid,
midEntry          152 fs/cifs/transport.c 			       midEntry->when_sent, midEntry->when_received);
midEntry          155 fs/cifs/transport.c 			       midEntry->command, midEntry->mid);
midEntry          157 fs/cifs/transport.c 			       now - midEntry->when_alloc,
midEntry          158 fs/cifs/transport.c 			       now - midEntry->when_sent,
midEntry          159 fs/cifs/transport.c 			       now - midEntry->when_received);
midEntry          163 fs/cifs/transport.c 	put_task_struct(midEntry->creator);
midEntry          165 fs/cifs/transport.c 	mempool_free(midEntry, cifs_mid_poolp);
midEntry          168 fs/cifs/transport.c void cifs_mid_q_entry_release(struct mid_q_entry *midEntry)
midEntry          171 fs/cifs/transport.c 	kref_put(&midEntry->refcount, _cifs_mid_q_entry_release);
midEntry          175 fs/cifs/transport.c void DeleteMidQEntry(struct mid_q_entry *midEntry)
midEntry          177 fs/cifs/transport.c 	cifs_mid_q_entry_release(midEntry);