When we are not switching VTs, just mark all buffer to be updated.

This commit is contained in:
Jung-uk Kim 2010-07-15 23:11:51 +00:00
parent 5eb0164407
commit 6b0dfd288f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=210149

View File

@ -141,10 +141,16 @@ scresume(device_t dev)
sc = &main_softc;
if (sc->cur_scp == NULL)
return (0);
sc->suspend_in_progress--;
if (sc->suspend_in_progress == 0)
if (sc->suspend_in_progress == 0) {
if (!sc_no_suspend_vtswitch && sc_cur_scr != 0)
sc_switch_scr(sc, sc_cur_scr);
else
mark_all(sc->cur_scp);
}
return (0);
}