Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 163841
b: refs/heads/master
c: d3b5cff
h: refs/heads/master
i:
  163839: 820908f
v: v3
  • Loading branch information
Alan Cox authored and Live-CD User committed Sep 19, 2009
1 parent 4dbe097 commit 0a600ee
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a5eb56242d1e2d82938a066219ac1cdf0d68adc8
refs/heads/master: d3b5cffcf84a8bdc7073dce4745d67c72629af85
38 changes: 37 additions & 1 deletion trunk/drivers/char/vt_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -972,6 +972,41 @@ int vt_ioctl(struct tty_struct *tty, struct file * file,
}
break;

case VT_SETACTIVATE:
{
struct vt_setactivate vsa;

if (!perm)
goto eperm;

if (copy_from_user(&vsa, (struct vt_setactivate __user *)arg,
sizeof(struct vt_setactivate)))
return -EFAULT;
if (vsa.console == 0 || vsa.console > MAX_NR_CONSOLES)
ret = -ENXIO;
else {
vsa.console--;
acquire_console_sem();
ret = vc_allocate(vsa.console);
if (ret == 0) {
struct vc_data *nvc;
/* This is safe providing we don't drop the
console sem between vc_allocate and
finishing referencing nvc */
nvc = vc_cons[vsa.console].d;
nvc->vt_mode = vsa.mode;
nvc->vt_mode.frsig = 0;
put_pid(nvc->vt_pid);
nvc->vt_pid = get_pid(task_pid(current));
}
release_console_sem();
if (ret)
break;
/* Commence switch and lock */
set_console(arg);
}
}

/*
* wait until the specified VT has been activated
*/
Expand Down Expand Up @@ -1342,7 +1377,8 @@ void vc_SAK(struct work_struct *work)
}

/*
* Performs the back end of a vt switch
* Performs the back end of a vt switch. Called under the console
* semaphore.
*/
static void complete_change_console(struct vc_data *vc)
{
Expand Down
7 changes: 7 additions & 0 deletions trunk/include/linux/vt.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,11 @@ struct vt_event {

#define VT_WAITEVENT 0x560E /* Wait for an event */

struct vt_setactivate {
unsigned int console;
struct vt_mode mode;
};

#define VT_SETACTIVATE 0x560F /* Activate and set the mode of a console */

#endif /* _LINUX_VT_H */

0 comments on commit 0a600ee

Please sign in to comment.