Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 388
b: refs/heads/master
c: bc86120
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Apr 24, 2005
1 parent be26b9d commit 990ed79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: df6c6804ce1d383c878ab071bce8125125d96abc
refs/heads/master: bc86120a85ebf553180946e8854d1993f074e9f5
2 changes: 1 addition & 1 deletion trunk/drivers/scsi/scsi_error.c
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ static int scsi_request_sense(struct scsi_cmnd *scmd)

memcpy(scmd->cmnd, generic_sense, sizeof(generic_sense));

scsi_result = kmalloc(252, GFP_ATOMIC | (scmd->device->host->hostt->unchecked_isa_dma) ? __GFP_DMA : 0);
scsi_result = kmalloc(252, GFP_ATOMIC | ((scmd->device->host->hostt->unchecked_isa_dma) ? __GFP_DMA : 0));


if (unlikely(!scsi_result)) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/scsi/scsi_scan.c
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ static int scsi_probe_and_add_lun(struct scsi_target *starget,
if (!sreq)
goto out_free_sdev;
result = kmalloc(256, GFP_ATOMIC |
(shost->unchecked_isa_dma) ? __GFP_DMA : 0);
((shost->unchecked_isa_dma) ? __GFP_DMA : 0));
if (!result)
goto out_free_sreq;

Expand Down

0 comments on commit 990ed79

Please sign in to comment.