diff options
author | Dave Jones <davej@redhat.com> | 2006-10-03 04:14:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-03 11:04:10 -0400 |
commit | e299dd4d7c5f38a24045e0578049d872b62f21eb (patch) | |
tree | d8ab3a71e434a9137feb4aeddf5c59f58c8ae591 /drivers/video/console/fbcon.h | |
parent | 7a45093b7caa9d3d5421274b4ba80fba5da17e19 (diff) |
[PATCH] fbcon: Use persistent allocation for cursor blinking
Every time the console cursor blinks, we do a kmalloc/kfree pair. This
patch turns that into a single allocation.
This allocation was the most frequent kmalloc I saw on my test box.
[adaplas]
Per Alan's suggestion, move global variables to fbcon's private structure.
This would also avoid resource leaks when fbcon is unloaded.
Signed-off-by: Dave Jones <davej@redhat.com>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/console/fbcon.h')
-rw-r--r-- | drivers/video/console/fbcon.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/console/fbcon.h b/drivers/video/console/fbcon.h index f244ad066d68..b9386d168c04 100644 --- a/drivers/video/console/fbcon.h +++ b/drivers/video/console/fbcon.h | |||
@@ -80,6 +80,8 @@ struct fbcon_ops { | |||
80 | char *cursor_data; | 80 | char *cursor_data; |
81 | u8 *fontbuffer; | 81 | u8 *fontbuffer; |
82 | u8 *fontdata; | 82 | u8 *fontdata; |
83 | u8 *cursor_src; | ||
84 | u32 cursor_size; | ||
83 | u32 fd_size; | 85 | u32 fd_size; |
84 | }; | 86 | }; |
85 | /* | 87 | /* |