lkml.org 
[lkml]   [2011]   [Jun]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 24/40] Staging: hv: storvsc: On I/O get the correct IDE device
    Date
    We use the channel number to distinguish an IDE device managed by the
    storvsc driver from scsi devices. Add code to get the correct
    device pointer based on the channel number.

    Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
    Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
    Signed-off-by: Abhishek Kane <v-abkane@microsoft.com>
    Signed-off-by: Hank Janssen <hjanssen@microsoft.com>
    ---
    drivers/staging/hv/storvsc_drv.c | 10 ++++++++++
    1 files changed, 10 insertions(+), 0 deletions(-)

    diff --git a/drivers/staging/hv/storvsc_drv.c b/drivers/staging/hv/storvsc_drv.c
    index cf659d7..fcc3f5d 100644
    --- a/drivers/staging/hv/storvsc_drv.c
    +++ b/drivers/staging/hv/storvsc_drv.c
    @@ -517,6 +517,16 @@ static int storvsc_queuecommand_lck(struct scsi_cmnd *scmnd,
    unsigned int sg_count = 0;
    struct vmscsi_request *vm_srb;

    + if (scmnd->device->channel >= HV_IDE_BASE_CHANNEL) {
    + int channel = scmnd->device->channel;
    +
    + /*
    + * This is an IDE device; get the right dev.
    + */
    +
    + dev = ide_devices[channel - HV_IDE_BASE_CHANNEL];
    + }
    +
    /* If retrying, no need to prep the cmd */
    if (scmnd->host_scribble) {

    --
    1.7.4.1


    \
     
     \ /
      Last update: 2011-06-29 16:27    [W:4.331 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site