|
@@ -842,6 +842,8 @@ static void con2fb_init_display(struct vc_data *vc, struct fb_info *info,
|
|
|
*
|
|
|
* Maps a virtual console @unit to a frame buffer device
|
|
|
* @newidx.
|
|
|
+ *
|
|
|
+ * This should be called with the console lock held.
|
|
|
*/
|
|
|
static int set_con2fb_map(int unit, int newidx, int user)
|
|
|
{
|
|
@@ -859,7 +861,7 @@ static int set_con2fb_map(int unit, int newidx, int user)
|
|
|
|
|
|
if (!search_for_mapped_con() || !con_is_bound(&fb_con)) {
|
|
|
info_idx = newidx;
|
|
|
- return fbcon_takeover(0);
|
|
|
+ return do_fbcon_takeover(0);
|
|
|
}
|
|
|
|
|
|
if (oldidx != -1)
|
|
@@ -867,7 +869,6 @@ static int set_con2fb_map(int unit, int newidx, int user)
|
|
|
|
|
|
found = search_fb_in_map(newidx);
|
|
|
|
|
|
- console_lock();
|
|
|
con2fb_map[unit] = newidx;
|
|
|
if (!err && !found)
|
|
|
err = con2fb_acquire_newinfo(vc, info, unit, oldidx);
|
|
@@ -894,7 +895,6 @@ static int set_con2fb_map(int unit, int newidx, int user)
|
|
|
if (!search_fb_in_map(info_idx))
|
|
|
info_idx = newidx;
|
|
|
|
|
|
- console_unlock();
|
|
|
return err;
|
|
|
}
|
|
|
|
|
@@ -3019,6 +3019,7 @@ static inline int fbcon_unbind(void)
|
|
|
}
|
|
|
#endif /* CONFIG_VT_HW_CONSOLE_BINDING */
|
|
|
|
|
|
+/* called with console_lock held */
|
|
|
static int fbcon_fb_unbind(int idx)
|
|
|
{
|
|
|
int i, new_idx = -1, ret = 0;
|
|
@@ -3045,6 +3046,7 @@ static int fbcon_fb_unbind(int idx)
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
+/* called with console_lock held */
|
|
|
static int fbcon_fb_unregistered(struct fb_info *info)
|
|
|
{
|
|
|
int i, idx;
|
|
@@ -3082,6 +3084,7 @@ static int fbcon_fb_unregistered(struct fb_info *info)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+/* called with console_lock held */
|
|
|
static void fbcon_remap_all(int idx)
|
|
|
{
|
|
|
int i;
|
|
@@ -3126,6 +3129,7 @@ static inline void fbcon_select_primary(struct fb_info *info)
|
|
|
}
|
|
|
#endif /* CONFIG_FRAMEBUFFER_DETECT_PRIMARY */
|
|
|
|
|
|
+/* called with console_lock held */
|
|
|
static int fbcon_fb_registered(struct fb_info *info)
|
|
|
{
|
|
|
int ret = 0, i, idx;
|
|
@@ -3278,6 +3282,7 @@ static int fbcon_event_notify(struct notifier_block *self,
|
|
|
ret = fbcon_fb_unregistered(info);
|
|
|
break;
|
|
|
case FB_EVENT_SET_CONSOLE_MAP:
|
|
|
+ /* called with console lock held */
|
|
|
con2fb = event->data;
|
|
|
ret = set_con2fb_map(con2fb->console - 1,
|
|
|
con2fb->framebuffer, 1);
|