Linux 2.6.37-rc3-git3
This commit is contained in:
parent
e31d248b5c
commit
ea17f5cd11
2
.gitignore
vendored
2
.gitignore
vendored
@ -4,4 +4,4 @@ clog
|
|||||||
*.rpm
|
*.rpm
|
||||||
kernel-2.6.*/
|
kernel-2.6.*/
|
||||||
/patch-2.6.37-rc3.bz2
|
/patch-2.6.37-rc3.bz2
|
||||||
/patch-2.6.37-rc3-git2.bz2
|
/patch-2.6.37-rc3-git3.bz2
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c
|
diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c
|
||||||
index 613c852..09c86d2 100644
|
index 878f6d6..8d6867d 100644
|
||||||
--- a/drivers/tty/tty_io.c
|
--- a/drivers/tty/tty_io.c
|
||||||
+++ b/drivers/tty/tty_io.c
|
+++ b/drivers/tty/tty_io.c
|
||||||
@@ -1322,7 +1322,11 @@ static int tty_reopen(struct tty_struct *tty)
|
@@ -1329,7 +1330,11 @@ static int tty_reopen(struct tty_struct *tty)
|
||||||
tty->driver = driver; /* N.B. why do this every time?? */
|
tty->driver = driver; /* N.B. why do this every time?? */
|
||||||
|
|
||||||
mutex_lock(&tty->ldisc_mutex);
|
mutex_lock(&tty->ldisc_mutex);
|
||||||
- WARN_ON(!test_bit(TTY_LDISC, &tty->flags));
|
- WARN_ON(!test_bit(TTY_LDISC, &tty->flags));
|
||||||
+ if (!test_bit(TTY_LDISC, &tty->flags)) {
|
+ if (!test_bit(TTY_LDISC, &tty->flags)) {
|
||||||
+ printk("%s: !test_bit(TTY_LDISC, &tty->flags) dev=%s ldisc=%s\n",
|
+ printk("%s: !test_bit(TTY_LDISC, &tty->flags) dev=%s ldisc=%s flags=%x\n",
|
||||||
+ __func__, tty->name, tty->ldisc ? tty->ldisc->ops ? tty->ldisc->ops->name : NULL : NULL);
|
+ __func__, tty->name, tty->ldisc ? tty->ldisc->ops ? tty->ldisc->ops->name : NULL : NULL, tty->flags);
|
||||||
+ WARN_ON(1);
|
+ WARN_ON(1);
|
||||||
+ }
|
+ }
|
||||||
mutex_unlock(&tty->ldisc_mutex);
|
mutex_unlock(&tty->ldisc_mutex);
|
||||||
|
@ -84,7 +84,7 @@ Summary: The Linux kernel
|
|||||||
# The rc snapshot level
|
# The rc snapshot level
|
||||||
%define rcrev 3
|
%define rcrev 3
|
||||||
# The git snapshot level
|
# The git snapshot level
|
||||||
%define gitrev 2
|
%define gitrev 3
|
||||||
# Set rpm version accordingly
|
# Set rpm version accordingly
|
||||||
%define rpmversion 2.6.%{upstream_sublevel}
|
%define rpmversion 2.6.%{upstream_sublevel}
|
||||||
%endif
|
%endif
|
||||||
@ -1906,6 +1906,10 @@ fi
|
|||||||
# || ||
|
# || ||
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Nov 26 2010 Kyle McMartin <kyle@redhat.com> 2.6.37-0.rc3.git3.1
|
||||||
|
- Linux 2.6.37-rc3-git3
|
||||||
|
- Print tty->flags as well in debugging patch...
|
||||||
|
|
||||||
* Fri Nov 26 2010 Kyle McMartin <kyle@redhat.com>
|
* Fri Nov 26 2010 Kyle McMartin <kyle@redhat.com>
|
||||||
- Copy tty_open WARN_ON debugging patch from rawhide.
|
- Copy tty_open WARN_ON debugging patch from rawhide.
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1,3 +1,3 @@
|
|||||||
61f3739a73afb6914cb007f37fb09b62 linux-2.6.36.tar.bz2
|
61f3739a73afb6914cb007f37fb09b62 linux-2.6.36.tar.bz2
|
||||||
9a487f01d20f9ee6917395a4c3de8ea7 patch-2.6.37-rc3.bz2
|
9a487f01d20f9ee6917395a4c3de8ea7 patch-2.6.37-rc3.bz2
|
||||||
29a4c06a0d766633f5be66cf98c6f378 patch-2.6.37-rc3-git2.bz2
|
cff62cc3166b7ce55b272abc1f62deb9 patch-2.6.37-rc3-git3.bz2
|
||||||
|
Loading…
Reference in New Issue
Block a user