mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
[SCSI] sd: remove __GFP_DMA
After 821de3a27b
, 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>
This commit is contained in:
parent
352e921f0d
commit
a6123f1429
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user