summaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorAntonino A. Daplas2006-03-22 09:07:36 +0100
committerLinus Torvalds2006-03-22 16:53:55 +0100
commit8a2cda007068e838ac6494cde74c37534f04f8dc (patch)
treedade19c25f04a0be81dad6c0cfd1342635aa930a /drivers/video
parent[PATCH] efi_call_phys_epilog() warning fix (diff)
downloadkernel-qcow2-linux-8a2cda007068e838ac6494cde74c37534f04f8dc.tar.gz
kernel-qcow2-linux-8a2cda007068e838ac6494cde74c37534f04f8dc.tar.xz
kernel-qcow2-linux-8a2cda007068e838ac6494cde74c37534f04f8dc.zip
[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>
Diffstat (limited to 'drivers/video')
-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)
int size = ((cursor->image.width + 7) >> 3) *
cursor->image.height;
int i;
- u8 *data = kmalloc(64 * 8, GFP_KERNEL);
+ u8 *data = kmalloc(64 * 8, GFP_ATOMIC);
if (data == NULL)
return -ENOMEM;