On Sun, 6 Feb 2005, Guennadi Liakhovetski wrote:

> Two weeks since I posted this patch - ping...

...and another two weeks since you, Jamie, replied to me privately. Just 
wanted to say, it would be good to get this bug fixed for the post-2.6.11 
SCSI patch.

Regards
Guennadi
> 
> On Sun, 23 Jan 2005, Guennadi Liakhovetski wrote:
> 
> > On Sun, 9 Jan 2005, Jamie Lenehan wrote:
> > 
> > > On Sun, Jan 09, 2005 at 12:42:26PM +0100, Guennadi Liakhovetski wrote:
> > > [...]
> > > > I could try to improve the highmem situation / sg-handling. Or do you 
> > > > plan 
> > > > to do it, Jamie?
> > > 
> > > It's on my list of things to do, but I doubt I'll have any time to do
> > > anything about in the next few months. So if you have the time and
> > > desire please go ahead! I'll can test any changes you make (with a
> > > CD-R/W, tape-drive and HDD), although it may take me a week or two to
> > > get around to it.
> > 
> > Ok, less than 2 weeks and here comes the first attempt. It removes 
> > page_to_virt and maps sg lists dynamically. Please, review, test. Slightly 
> > tested here - without highmem.
> > 
> > Thanks
> > Guennadi
> > ---
> > Guennadi Liakhovetski
> > 
> > Signed-off-by: Guennadi Liakhovetski <[EMAIL PROTECTED]>
> > 
> > diff -u a/drivers/scsi/dc395x.c b/drivers/scsi/dc395x.c
> > --- a/drivers/scsi/dc395x.c 17 Nov 2004 21:04:51
> > +++ b/drivers/scsi/dc395x.c 22 Jan 2005 22:55:45
> > @@ -182,7 +182,7 @@
> >   * cross a page boundy.
> >   */
> >  #define SEGMENTX_LEN       (sizeof(struct SGentry)*DC395x_MAX_SG_LISTENTRY)
> > -
> > +#define VIRTX_LEN  (sizeof(void *) * DC395x_MAX_SG_LISTENTRY)
> >  
> >  struct SGentry {
> >     u32 address;            /* bus! address */
> > @@ -234,6 +234,7 @@
> >     u8 sg_count;                    /* No of HW sg entries for this request 
> > */
> >     u8 sg_index;                    /* Index of HW sg entry for this 
> > request */
> >     u32 total_xfer_length;          /* Total number of bytes remaining to 
> > be transfered */
> > +   void **virt_map;
> >     unsigned char *virt_addr;       /* Virtual address of current transfer 
> > position */
> >  
> >     /*
> > @@ -1020,14 +1021,14 @@
> >                     reqlen, cmd->request_buffer, cmd->use_sg,
> >                     srb->sg_count);
> >  
> > -           srb->virt_addr = page_address(sl->page);
> >             for (i = 0; i < srb->sg_count; i++) {
> > -                   u32 busaddr = (u32)sg_dma_address(&sl[i]);
> > -                   u32 seglen = (u32)sl[i].length;
> > -                   sgp[i].address = busaddr;
> > +                   u32 seglen = (u32)sg_dma_len(sl + i);
> > +                   sgp[i].address = (u32)sg_dma_address(sl + i);
> >                     sgp[i].length = seglen;
> >                     srb->total_xfer_length += seglen;
> > +                   srb->virt_map[i] = kmap(sl[i].page);
> >             }
> > +           srb->virt_addr = srb->virt_map[0];
> >             sgp += srb->sg_count - 1;
> >  
> >             /*
> > @@ -1964,6 +1965,7 @@
> >     int segment = cmd->use_sg;
> >     u32 xferred = srb->total_xfer_length - left; /* bytes transfered */
> >     struct SGentry *psge = srb->segment_x + srb->sg_index;
> > +   void **virt = srb->virt_map;
> >  
> >     dprintkdbg(DBG_0,
> >             "sg_update_list: Transfered %i of %i bytes, %i remain\n",
> > @@ -2003,16 +2005,16 @@
> >  
> >     /* We have to walk the scatterlist to find it */
> >     sg = (struct scatterlist *)cmd->request_buffer;
> > +   idx = 0;
> >     while (segment--) {
> >             unsigned long mask =
> >                 ~((unsigned long)sg->length - 1) & PAGE_MASK;
> >             if ((sg_dma_address(sg) & mask) == (psge->address & mask)) {
> > -                   srb->virt_addr = (page_address(sg->page)
> > -                                      + psge->address -
> > -                                      (psge->address & PAGE_MASK));
> > +                   srb->virt_addr = virt[idx] + (psge->address & 
> > ~PAGE_MASK);
> >                     return;
> >             }
> >             ++sg;
> > +           ++idx;
> >     }
> >  
> >     dprintkl(KERN_ERR, "sg_update_list: sg_to_virt failed\n");
> > @@ -2138,7 +2140,7 @@
> >                             DC395x_read32(acb, TRM_S1040_DMA_CXCNT));
> >             }
> >             /*
> > -            * calculate all the residue data that not yet tranfered
> > +            * calculate all the residue data that not yet transfered
> >              * SCSI transfer counter + left in SCSI FIFO data
> >              *
> >              * .....TRM_S1040_SCSI_COUNTER (24bits)
> > @@ -3256,6 +3258,7 @@
> >     struct scsi_cmnd *cmd = srb->cmd;
> >     enum dma_data_direction dir = cmd->sc_data_direction;
> >     if (cmd->use_sg && dir != PCI_DMA_NONE) {
> > +           int i;
> >             /* unmap DC395x SG list */
> >             dprintkdbg(DBG_SG, "pci_unmap_srb: list=%08x(%05x)\n",
> >                     srb->sg_bus_addr, SEGMENTX_LEN);
> > @@ -3265,6 +3268,8 @@
> >             dprintkdbg(DBG_SG, "pci_unmap_srb: segs=%i buffer=%p\n",
> >                     cmd->use_sg, cmd->request_buffer);
> >             /* unmap the sg segments */
> > +           for (i = 0; i < srb->sg_count; i++)
> > +                   kunmap(virt_to_page(srb->virt_map[i]));
> >             pci_unmap_sg(acb->dev,
> >                          (struct scatterlist *)cmd->request_buffer,
> >                          cmd->use_sg, dir);
> > @@ -3311,7 +3316,7 @@
> >  
> >     if (cmd->use_sg) {
> >             struct scatterlist* sg = (struct scatterlist 
> > *)cmd->request_buffer;
> > -           ptr = (struct ScsiInqData *)(page_address(sg->page) + 
> > sg->offset);
> > +           ptr = (struct ScsiInqData *)(srb->virt_map[0] + sg->offset);
> >     } else {
> >             ptr = (struct ScsiInqData *)(cmd->request_buffer);
> >     }
> > @@ -4246,8 +4251,9 @@
> >     const unsigned srbs_per_page = PAGE_SIZE/SEGMENTX_LEN;
> >  
> >     for (i = 0; i < DC395x_MAX_SRB_CNT; i += srbs_per_page)
> > -           if (acb->srb_array[i].segment_x)
> > -                   kfree(acb->srb_array[i].segment_x);
> > +           kfree(acb->srb_array[i].segment_x);
> > +
> > +   vfree(acb->srb_array[0].virt_map);
> >  }
> >  
> >  
> > @@ -4263,9 +4269,12 @@
> >     int srb_idx = 0;
> >     unsigned i = 0;
> >     struct SGentry *ptr;
> > +   void **virt_array;
> >  
> > -   for (i = 0; i < DC395x_MAX_SRB_CNT; i++)
> > +   for (i = 0; i < DC395x_MAX_SRB_CNT; i++) {
> >             acb->srb_array[i].segment_x = NULL;
> > +           acb->srb_array[i].virt_map = NULL;
> > +   }
> >  
> >     dprintkdbg(DBG_1, "Allocate %i pages for SG tables\n", pages);
> >     while (pages--) {
> > @@ -4286,6 +4295,19 @@
> >                 ptr + (i * DC395x_MAX_SG_LISTENTRY);
> >     else
> >             dprintkl(KERN_DEBUG, "No space for tmsrb SG table 
> > reserved?!\n");
> > +
> > +   virt_array = vmalloc((DC395x_MAX_SRB_CNT + 1) * DC395x_MAX_SG_LISTENTRY 
> > * sizeof(void*));
> > +
> > +   if (!virt_array) {
> > +           adapter_sg_tables_free(acb);
> > +           return 1;
> > +   }
> > +
> > +   for (i = 0; i < DC395x_MAX_SRB_CNT + 1; i++) {
> > +           acb->srb_array[i].virt_map = virt_array;
> > +           virt_array += DC395x_MAX_SG_LISTENTRY;
> > +   }
> > +
> >     return 0;
> >  }
> >  
> > 
> 
> ---
> Guennadi Liakhovetski
> 
> 

---
Guennadi Liakhovetski

-
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to