patch-2.3.35 linux/drivers/fc4/fc.c
Next file: linux/drivers/fc4/fcp_impl.h
Previous file: linux/drivers/char/synclink.c
Back to the patch index
Back to the overall index
- Lines: 82
- Date:
Mon Dec 20 22:06:42 1999
- Orig file:
v2.3.34/linux/drivers/fc4/fc.c
- Orig date:
Wed May 12 08:41:15 1999
diff -u --recursive --new-file v2.3.34/linux/drivers/fc4/fc.c linux/drivers/fc4/fc.c
@@ -54,29 +54,29 @@
#endif
#ifdef __sparc__
-static inline void *fc_dma_alloc(long size, char *name, dma_handle *dma)
+static inline void *fc_dma_alloc(long size, dma_handle *dma, fc_channel *fc)
{
- return (void *) sparc_dvma_malloc (size, name, dma);
+ return sbus_alloc_consistant(fc->dev, size, dma);
}
-static inline dma_handle fc_sync_dma_entry(void *buf, int len, fc_channel *fc)
+static inline dma_handle fc_sync_dma_entry(void *buf, long len, fc_channel *fc)
{
- return mmu_get_scsi_one (buf, len, fc->dev->my_bus);
+ return sbus_map_single(fc->dev, buf, len);
}
static inline void fc_sync_dma_exit(dma_handle dmh, long size, fc_channel *fc)
{
- mmu_release_scsi_one (dmh, size, fc->dev->my_bus);
+ sbus_unmap_single(fc->dev, dmh, size);
}
static inline void fc_sync_dma_entry_sg(struct scatterlist *list, int count, fc_channel *fc)
{
- mmu_get_scsi_sgl((struct mmu_sglist *)list, count - 1, fc->dev->my_bus);
+ sbus_map_sg(fc->dev, list, count);
}
static inline void fc_sync_dma_exit_sg(struct scatterlist *list, int count, fc_channel *fc)
{
- mmu_release_scsi_sgl ((struct mmu_sglist *)list, count - 1, fc->dev->my_bus);
+ sbus_unmap_sg(fc->dev, list, count);
}
#else
#error Port this
@@ -352,7 +352,7 @@
if (!unregister) {
fc->scsi_cmd_pool =
(fcp_cmd *) fc_dma_alloc (slots * (sizeof (fcp_cmd) + fc->rsp_size),
- "FCP SCSI cmd & rsp queues", &fc->dma_scsi_cmd);
+ &fc->dma_scsi_cmd, fc);
fc->scsi_rsp_pool = (char *)(fc->scsi_cmd_pool + slots);
fc->dma_scsi_rsp = fc->dma_scsi_cmd + slots * sizeof (fcp_cmd);
fc->scsi_bitmap_end = (slots + 63) & ~63;
@@ -555,7 +555,7 @@
l->timer.function = fcp_login_timeout;
l->timer.data = (unsigned long)l;
atomic_set (&l->todo, count);
- l->logi = kmalloc (count * 3 * sizeof(logi), GFP_DMA);
+ l->logi = kmalloc (count * 3 * sizeof(logi), GFP_KERNEL);
l->fcmds = kmalloc (count * sizeof(fcp_cmnd), GFP_KERNEL);
if (!l->logi || !l->fcmds) {
if (l->logi) kfree (l->logi);
@@ -821,7 +821,7 @@
if (SCpnt->use_sg > 1) printk ("%s: SG for use_sg > 1 not handled yet\n", fc->name);
fc_sync_dma_entry_sg (sg, SCpnt->use_sg, fc);
fcmd->data = sg->dvma_address;
- cmd->fcp_data_len = sg->length;
+ cmd->fcp_data_len = sg->dvma_length;
}
}
memcpy (cmd->fcp_cdb, SCpnt->cmnd, SCpnt->cmd_len);
@@ -1103,7 +1103,7 @@
logi *l;
int status;
- l = (logi *)kmalloc(2 * sizeof(logi), GFP_DMA);
+ l = (logi *)kmalloc(2 * sizeof(logi), GFP_KERNEL);
if (!l) return -ENOMEM;
memset(l, 0, 2 * sizeof(logi));
l->code = LS_PLOGI;
@@ -1138,7 +1138,7 @@
prli *p;
int status;
- p = (prli *)kmalloc(2 * sizeof(prli), GFP_DMA);
+ p = (prli *)kmalloc(2 * sizeof(prli), GFP_KERNEL);
if (!p) return -ENOMEM;
memset(p, 0, 2 * sizeof(prli));
p->code = LS_PRLI;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)