Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755647AbcCBBqb (ORCPT ); Tue, 1 Mar 2016 20:46:31 -0500 Received: from mail333.us4.mandrillapp.com ([205.201.137.77]:44579 "EHLO mail333.us4.mandrillapp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755082AbcCAXx7 (ORCPT ); Tue, 1 Mar 2016 18:53:59 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=mandrill; d=linuxfoundation.org; b=U/IgdHzBt2Jp3MCX3PxnH45AqaMkr3IABnjIuD5ccyEReA9nzyup+9Q9kYfYAPZQ/cHF5n9vFj0B RCYbHYHmDYfxcSbrHULTgK4f5Zztz70vgQ9kt6AG3kxMi72vACeX/v/6OkMWCfX/vVRktwHswRWB 8suYnzgQrFrP0SrKLRA=; From: Greg Kroah-Hartman Subject: [PATCH 3.14 061/130] storvsc: Dont set the SRB_FLAGS_QUEUE_ACTION_ENABLE flag X-Mailer: git-send-email 2.7.2 To: Cc: Greg Kroah-Hartman , , "K. Y. Srinivasan" , James Bottomley Message-Id: <20160301234501.971297830@linuxfoundation.org> In-Reply-To: <20160301234459.768886030@linuxfoundation.org> References: <20160301234459.768886030@linuxfoundation.org> X-Report-Abuse: Please forward a copy of this message, including all headers, to abuse@mandrill.com X-Report-Abuse: You can also report abuse here: http://mandrillapp.com/contact/abuse?id=30481620.b4020948a00f43ff89d05636b8577a11 X-Mandrill-User: md_30481620 Date: Tue, 01 Mar 2016 23:53:38 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1003 Lines: 31 3.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: K. Y. Srinivasan commit 8cf308e1225f5f93575f03cc4dbef24516fa81c9 upstream. Don't set the SRB_FLAGS_QUEUE_ACTION_ENABLE flag since we are not specifying tags. Without this, the qlogic driver doesn't work properly with storvsc. Signed-off-by: K. Y. Srinivasan Signed-off-by: James Bottomley Signed-off-by: Greg Kroah-Hartman --- drivers/scsi/storvsc_drv.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/drivers/scsi/storvsc_drv.c +++ b/drivers/scsi/storvsc_drv.c @@ -1610,8 +1610,7 @@ static int storvsc_queuecommand(struct S vm_srb->win8_extension.time_out_value = 60; vm_srb->win8_extension.srb_flags |= - (SRB_FLAGS_QUEUE_ACTION_ENABLE | - SRB_FLAGS_DISABLE_SYNCH_TRANSFER); + SRB_FLAGS_DISABLE_SYNCH_TRANSFER; /* Build the SRB */ switch (scmnd->sc_data_direction) {