Skip to content

Commit

Permalink
[SCSI] i2o: remove redundant GFP_ATOMIC from kmalloc from device.c
Browse files Browse the repository at this point in the history
drivers/message/i2o/device.c:i2o_parm_field_get() unnecessarily passes
GFP_ATOMIC (along with GFP_KERNEL) to kmalloc() from a context that is not
atomic. Remove the pointless GFP_ATOMIC.

Signed-off-by: Satyam Sharma <ssatyam@cse.iitk.ac.in>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
  • Loading branch information
Satyam Sharma authored and James Bottomley committed Jul 15, 2007
1 parent 3021c71 commit a3f249a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/message/i2o/device.c
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ int i2o_parm_field_get(struct i2o_device *i2o_dev, int group, int field,
u8 *resblk; /* 8 bytes for header */
int rc;

resblk = kmalloc(buflen + 8, GFP_KERNEL | GFP_ATOMIC);
resblk = kmalloc(buflen + 8, GFP_KERNEL);
if (!resblk)
return -ENOMEM;

Expand Down

0 comments on commit a3f249a

Please sign in to comment.