aboutsummaryrefslogtreecommitdiffstats
path: root/tty.current
diff options
authorGreg Kroah-Hartman <gregkh@suse.de>2009-10-15 15:59:40 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2009-10-15 15:59:40 -0700
commit27ac7645a17575a6ba4f34bca80e30aa184245b1 (patch)
tree78a26884752f1666d258537afc4f63e8982b53bc /tty.current
parent76d7714c08a8cb320ddb9e97b3db263957e44b5b (diff)
downloadpatches-27ac7645a17575a6ba4f34bca80e30aa184245b1.tar.gz
remove patches now in linus's tree
Diffstat (limited to 'tty.current')
-rw-r--r--tty.current/tty-fix-vt_compat_ioctl.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/tty.current/tty-fix-vt_compat_ioctl.patch b/tty.current/tty-fix-vt_compat_ioctl.patch
deleted file mode 100644
index 477d9842eadaaa..00000000000000
--- a/tty.current/tty-fix-vt_compat_ioctl.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From schwab@linux-m68k.org Thu Oct 8 10:29:09 2009
-From: Andreas Schwab <schwab@linux-m68k.org>
-Date: Mon, 28 Sep 2009 20:10:02 +0200
-Subject: tty: fix vt_compat_ioctl
-To: linux-kernel@vger.kernel.org
-Cc: Greg Kroah-Hartman <gregkh@suse.de>
-Message-ID: <m2y6nzgcud.fsf@igel.home>
-
-
-Call compat_unimap_ioctl, not do_unimap_ioctl.
-
-This was broken by commit e9216651.
-
-The compat_unimap_ioctl was originally called do_unimap_ioctl in
-fs/compat_ioctl.h which got moved to drivers/char/vt_ioctl.c.
-In that patch, the caller was not updated and consequently called
-the native handler.
-
-Signed-off-by: Andreas Schwab <schwab@linux-m68k.org>
-Acked-by: Arnd Bergmann <arnd@arndb.de>
-Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-
----
- drivers/char/vt_ioctl.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/drivers/char/vt_ioctl.c
-+++ b/drivers/char/vt_ioctl.c
-@@ -1532,7 +1532,7 @@ long vt_compat_ioctl(struct tty_struct *
-
- case PIO_UNIMAP:
- case GIO_UNIMAP:
-- ret = do_unimap_ioctl(cmd, up, perm, vc);
-+ ret = compat_unimap_ioctl(cmd, up, perm, vc);
- break;
-
- /*