All buffers are bounced by the block layer

Signed-off-by: Andi Kleen <[EMAIL PROTECTED]>

Index: linux/drivers/scsi/ch.c
===================================================================
--- linux.orig/drivers/scsi/ch.c
+++ linux/drivers/scsi/ch.c
@@ -231,7 +231,7 @@ ch_read_element_status(scsi_changer *ch,
        u_char  *buffer;
        int     result;
 
-       buffer = kmalloc(512, GFP_KERNEL | GFP_DMA);
+       buffer = kmalloc(512, GFP_KERNEL);
        if(!buffer)
                return -ENOMEM;
 
@@ -288,7 +288,7 @@ ch_readconfig(scsi_changer *ch)
        int     result,id,lun,i;
        u_int   elem;
 
-       buffer = kzalloc(512, GFP_KERNEL | GFP_DMA);
+       buffer = kzalloc(512, GFP_KERNEL);
        if (!buffer)
                return -ENOMEM;
 
@@ -733,7 +733,7 @@ static long ch_ioctl(struct file *file,
                        return -EINVAL;
                elem = ch->firsts[cge.cge_type] + cge.cge_unit;
 
-               buffer = kmalloc(512, GFP_KERNEL | GFP_DMA);
+               buffer = kmalloc(512, GFP_KERNEL);
                if (!buffer)
                        return -ENOMEM;
                mutex_lock(&ch->lock);
-
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