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

    [SCSI] aic7xxx_old: remove redundant GFP_ATOMIC from kmalloc
    
    drivers/scsi/aic7xxx_old.c:aic7xxx_slave_alloc() 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]>
    Cc: Doug Ledford <[EMAIL PROTECTED]>
    Signed-off-by: James Bottomley <[EMAIL PROTECTED]>
---
 drivers/scsi/aic7xxx_old.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/scsi/aic7xxx_old.c b/drivers/scsi/aic7xxx_old.c
index f5e3c6b..4998bb8 100644
--- a/drivers/scsi/aic7xxx_old.c
+++ b/drivers/scsi/aic7xxx_old.c
@@ -6572,7 +6572,7 @@ aic7xxx_slave_alloc(struct scsi_device *SDptr)
   struct aic7xxx_host *p = (struct aic7xxx_host *)SDptr->host->hostdata;
   struct aic_dev_data *aic_dev;
 
-  aic_dev = kmalloc(sizeof(struct aic_dev_data), GFP_ATOMIC | GFP_KERNEL);
+  aic_dev = kmalloc(sizeof(struct aic_dev_data), GFP_KERNEL);
   if(!aic_dev)
     return 1;
   /*
-
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