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]>
---
diff -ruNp linux-2.6.21.1/drivers/message/i2o/device.c
linux-2.6.21.1~patch/drivers/message/i2o/device.c
--- linux-2.6.21.1/drivers/message/i2o/device.c 2007-04-26 08:38:32.000000000
+0530
+++ linux-2.6.21.1~patch/drivers/message/i2o/device.c 2007-05-04
17:48:30.000000000 +0530
@@ -485,7 +485,7 @@ int i2o_parm_field_get(struct i2o_device
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 linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/