]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
[SCSI] sd: remove __GFP_DMA
authorBernhard Walle <bwalle@suse.de>
Mon, 21 May 2007 15:15:26 +0000 (17:15 +0200)
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>
Thu, 24 May 2007 14:09:09 +0000 (09:09 -0500)
After 821de3a27bf33f11ec878562577c586cd5f83c64, it's not necessary to
alloate a DMA buffer any more in sd.c.

Signed-off-by: Bernhard Walle <bwalle@suse.de>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
drivers/scsi/sd.c

index 00e46662296f89ebdfe1def87804f10fcd5e390c..f071b9edaf360f949e8d8571f8986739cda237d5 100644 (file)
@@ -1515,7 +1515,7 @@ static int sd_revalidate_disk(struct gendisk *disk)
        if (!scsi_device_online(sdp))
                goto out;
 
-       buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL | __GFP_DMA);
+       buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
        if (!buffer) {
                sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
                          "allocation failure.\n");