All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] SCSI: Remove redundant GFP_KERNEL type flag in kmalloc().
@ 2007-04-30  8:37 Robert P. J. Day
  2007-05-04  8:15 ` Andrew Morton
  0 siblings, 1 reply; 4+ messages in thread
From: Robert P. J. Day @ 2007-04-30  8:37 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Andrew Morton


Remove the apparently redundant GFP_KERNEL type flag in the call to
kmalloc().

Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>

---

diff --git a/drivers/scsi/aic7xxx_old.c b/drivers/scsi/aic7xxx_old.c
index a988d5a..765ded0 100644
--- a/drivers/scsi/aic7xxx_old.c
+++ b/drivers/scsi/aic7xxx_old.c
@@ -6581,7 +6581,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_ATOMIC);
   if(!aic_dev)
     return 1;
   /*
-- 
========================================================================
Robert P. J. Day
Linux Consulting, Training and Annoying Kernel Pedantry
Waterloo, Ontario, CANADA

http://fsdev.net/wiki/index.php?title=Main_Page
========================================================================

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-05-04 13:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-30  8:37 [PATCH] SCSI: Remove redundant GFP_KERNEL type flag in kmalloc() Robert P. J. Day
2007-05-04  8:15 ` Andrew Morton
2007-05-04  8:29   ` Robert P. J. Day
2007-05-04 13:08   ` Satyam Sharma

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.