aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntonino A. Daplas <adaplas@pol.net>2006-03-22 03:07:36 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-22 10:53:55 -0500
commit8a2cda007068e838ac6494cde74c37534f04f8dc (patch)
treedade19c25f04a0be81dad6c0cfd1342635aa930a
parent4078006568c142a909e7889cbdc28804cec25461 (diff)
[PATCH] i810fb_cursor(): use GFP_ATOMIC
The console cursor can be called in atomic context. Change memory allocation to use the GFP_ATOMIC flag in i810fb_cursor(). Signed-off-by: Antonino Daplas <adaplas@pol.net> Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--drivers/video/i810/i810_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/i810/i810_main.c b/drivers/video/i810/i810_main.c
index d8467c03b49f..788297e9d59e 100644
--- a/drivers/video/i810/i810_main.c
+++ b/drivers/video/i810/i810_main.c
@@ -1508,7 +1508,7 @@ static int i810fb_cursor(struct fb_info *info, struct fb_cursor *cursor)
1508 int size = ((cursor->image.width + 7) >> 3) * 1508 int size = ((cursor->image.width + 7) >> 3) *
1509 cursor->image.height; 1509 cursor->image.height;
1510 int i; 1510 int i;
1511 u8 *data = kmalloc(64 * 8, GFP_KERNEL); 1511 u8 *data = kmalloc(64 * 8, GFP_ATOMIC);
1512 1512
1513 if (data == NULL) 1513 if (data == NULL)
1514 return -ENOMEM; 1514 return -ENOMEM;