This is a note to let you know that I've just added the patch titled
drivers/tty/vt/vt_ioctl.c: fix KDFONTOP 32bit compatibility layer
to the 3.2-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
drivers-tty-vt-vt_ioctl.c-fix-kdfontop-32bit-compatibility-layer.patch
and it can be found in the queue-3.2 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From cbcb8346054073d000ecac324763372d6abd44ac Mon Sep 17 00:00:00 2001
From: Samuel Thibault <[email protected]>
Date: Fri, 3 Feb 2012 15:37:15 -0800
Subject: drivers/tty/vt/vt_ioctl.c: fix KDFONTOP 32bit compatibility layer
From: Samuel Thibault <[email protected]>
commit cbcb8346054073d000ecac324763372d6abd44ac upstream.
KDFONTOP(GET) currently fails with EIO when being run in a 32bit userland
with a 64bit kernel if the font width is not 8.
This is because of the setting of the KD_FONT_FLAG_OLD flag, which makes
con_font_get return EIO in such case.
This flag should *not* be set for KDFONTOP, since it's actually the whole
point of this flag (see comment in con_font_set for instance).
Signed-off-by: Samuel Thibault <[email protected]>
Reviewed-by: Arnd Bergmann <[email protected]>
Cc: Arthur Taylor <[email protected]>
Cc: Jiri Slaby <[email protected]>
Cc: Jiri Olsa <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/tty/vt/vt_ioctl.c | 1 -
1 file changed, 1 deletion(-)
--- a/drivers/tty/vt/vt_ioctl.c
+++ b/drivers/tty/vt/vt_ioctl.c
@@ -1463,7 +1463,6 @@ compat_kdfontop_ioctl(struct compat_cons
if (!perm && op->op != KD_FONT_OP_GET)
return -EPERM;
op->data = compat_ptr(((struct compat_console_font_op *)op)->data);
- op->flags |= KD_FONT_FLAG_OLD;
i = con_font_op(vc, op);
if (i)
return i;
Patches currently in stable-queue which might be from
[email protected] are
queue-3.2/drivers-tty-vt-vt_ioctl.c-fix-kdfontop-32bit-compatibility-layer.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html