Home
last modified time | relevance | path

Searched refs:currcons (Results 1 – 2 of 2) sorted by relevance

/kernel/linux/linux-5.10/drivers/tty/vt/
Dvc_screen.c91 int currcons = poll->cons_num; in vcs_notifier() local
105 if (currcons == 0) in vcs_notifier()
106 currcons = fg_console; in vcs_notifier()
108 currcons--; in vcs_notifier()
109 if (currcons != vc->vc_num) in vcs_notifier()
185 unsigned int currcons = console(inode); in vcs_vc() local
189 if (currcons == 0) { in vcs_vc()
190 currcons = fg_console; in vcs_vc()
194 currcons--; in vcs_vc()
198 return vc_cons[currcons].d; in vcs_vc()
[all …]
Dvt.c1109 int vc_allocate(unsigned int currcons) /* return 0 on success */ in vc_allocate() argument
1117 if (currcons >= MAX_NR_CONSOLES) in vc_allocate()
1120 if (vc_cons[currcons].d) in vc_allocate()
1133 vc_cons[currcons].d = vc; in vc_allocate()
1136 INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK); in vc_allocate()
1138 visual_init(vc, currcons, 1); in vc_allocate()
1158 vcs_make_sysfs(currcons); in vc_allocate()
1165 vc_cons[currcons].d = NULL; in vc_allocate()
1389 struct vc_data *vc_deallocate(unsigned int currcons) in vc_deallocate() argument
1395 if (vc_cons_allocated(currcons)) { in vc_deallocate()
[all …]