Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a3f249a242e804b61a14518ec9d5ec8ee48720d7
Commit:     a3f249a242e804b61a14518ec9d5ec8ee48720d7
Parent:     3021c710cbf87c4ac528b737908d0c0669e8098e
Author:     Satyam Sharma <[EMAIL PROTECTED]>
AuthorDate: Mon Jul 9 12:00:07 2007 -0700
Committer:  James Bottomley <[EMAIL PROTECTED]>
CommitDate: Sun Jul 15 09:33:34 2007 -0500

    [SCSI] i2o: remove redundant GFP_ATOMIC from kmalloc from device.c
    
    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 <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: James Bottomley <[EMAIL PROTECTED]>
---
 drivers/message/i2o/device.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/message/i2o/device.c b/drivers/message/i2o/device.c
index b9df143..611adc3 100644
--- a/drivers/message/i2o/device.c
+++ b/drivers/message/i2o/device.c
@@ -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;
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to