projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
352e921
)
[SCSI] sd: remove __GFP_DMA
author
Bernhard Walle
<bwalle@suse.de>
Mon, 21 May 2007 15:15:26 +0000
(17:15 +0200)
committer
James 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
patch
|
blob
|
blame
|
history
diff --git
a/drivers/scsi/sd.c
b/drivers/scsi/sd.c
index 00e46662296f89ebdfe1def87804f10fcd5e390c..f071b9edaf360f949e8d8571f8986739cda237d5 100644
(file)
--- 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");