Lines Matching defs:mid
22 check_smb2_hdr(struct smb2_hdr *shdr, __u64 mid)
31 (mid == wire_mid)) {
41 } else { /* bad signature or mid */
45 if (mid != wire_mid)
47 mid, wire_mid);
145 __u64 mid;
175 mid = le64_to_cpu(shdr->MessageId);
176 if (check_smb2_hdr(shdr, mid))
206 cifs_dbg(VFS, "SMB length greater than maximum, mid=%llu\n",
207 mid);
270 "length %u doesn't match read length %u (cmd=%d, mid=%llu)\n",
271 calc_len, len, command, mid);
274 "%u doesn't match read length %u (cmd=%d, mid=%llu)\n",
275 calc_len, len, command, mid);
759 if (cancelled->mid)
761 cancelled->mid);
768 cifs_tcon_dbg(VFS, "Close cancelled mid failed rc:%d\n", rc);
783 __smb2_handle_cancelled_cmd(struct cifs_tcon *tcon, __u16 cmd, __u64 mid,
796 cancelled->mid = mid;
842 smb2_handle_cancelled_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server)
844 struct smb2_hdr *hdr = mid->resp_buf;
845 struct smb2_create_rsp *rsp = mid->resp_buf;
849 if ((mid->optype & CIFS_CP_CREATE_CLOSE_OP) || hdr->Command != SMB2_CREATE ||