From: Kenn H. <ke...@us...> - 2001-02-11 23:55:54
|
Update of /cvsroot/linux-vax/kernel-2.4/drivers/char In directory usw-pr-cvs1:/tmp/cvs-serv5451 Modified Files: tty_io.c Log Message: Temporarily remove the check that panics if the page size is smaller than a tty_struct Index: tty_io.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/drivers/char/tty_io.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- tty_io.c 2001/01/14 17:50:46 1.1.1.1 +++ tty_io.c 2001/02/11 23:56:25 1.2 @@ -2219,8 +2219,10 @@ */ void __init tty_init(void) { +#if 0 /* temporary for VAX */ if (sizeof(struct tty_struct) > PAGE_SIZE) panic("size of tty structure > PAGE_SIZE!"); +#endif /* * dev_tty_driver and dev_console_driver are actually magic |