aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/sd.c
diff options
context:
space:
mode:
authorBernhard Walle <bwalle@suse.de>2007-05-21 17:15:26 +0200
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>2007-05-24 09:09:09 -0500
commita6123f142924a5e21f6d48e6e3c67d9060726caa (patch)
treeff0014421b07b7fbbbfdf3fd6f1dff41397b1d9e /drivers/scsi/sd.c
parent[SCSI] jazz_esp: converted to use esp_core (diff)
downloadlinux-dev-a6123f142924a5e21f6d48e6e3c67d9060726caa.tar.xz
linux-dev-a6123f142924a5e21f6d48e6e3c67d9060726caa.zip
[SCSI] sd: remove __GFP_DMA
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>
Diffstat (limited to 'drivers/scsi/sd.c')
-rw-r--r--drivers/scsi/sd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
index 00e46662296f..f071b9edaf36 100644
--- a/drivers/scsi/sd.c
+++ b/drivers/scsi/sd.c
@@ -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");