From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bart Van Assche Subject: Re: [PATCH v2 0/6] virtio-scsi patches for 3.16 + midlayer fix Date: Wed, 04 Jun 2014 13:21:11 +0200 Message-ID: <538F0127.9040300@acm.org> References: <1401876703-10236-1-git-send-email-pbonzini@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1401876703-10236-1-git-send-email-pbonzini@redhat.com> Sender: linux-kernel-owner@vger.kernel.org To: Paolo Bonzini , linux-kernel@vger.kernel.org, linux-scsi@vger.kernel.org Cc: hch@lst.de, JBottomley@Parallels.com, venkateshs@google.com List-Id: linux-scsi@vger.kernel.org On 06/04/14 12:11, Paolo Bonzini wrote: > v1->v2: fix all occurrences of "scmd->result |= DID_TIME_OUT << 16" > in patch 4 Hello Paolo, Thanks for the quick respin. However, since you are mentioning that in v2 all occurrences of "scmd->result |= DID_TIME_OUT << 16" have been addressed, this made me wonder whether you had noticed the following code in scsi_decide_disposition() ? switch (host_byte(scmd->result)) { [ ... ] case DID_ABORT: if (scmd->eh_eflags & SCSI_EH_ABORT_SCHEDULED) { scmd->result |= DID_TIME_OUT << 16; return SUCCESS; } Thanks, Bart.