From: Andy P. <at...@us...> - 2002-04-09 15:08:44
|
Update of /cvsroot/linux-vax/kernel-2.4/fs/qnx4 In directory usw-pr-cvs1:/tmp/cvs-serv29245/qnx4 Modified Files: README file.c inode.c Log Message: synch 2.4.15 commit 13 Index: README =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/fs/qnx4/README,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- README 14 Jan 2001 16:30:13 -0000 1.1.1.1 +++ README 9 Apr 2002 13:19:37 -0000 1.2 @@ -5,5 +5,5 @@ Credits : Richard "Scuba" A. Frowijn <sc...@wx...> -Frank "Jedi/Sector One" Denis <j...@4u...> +Frank "Jedi/Sector One" Denis <j...@pu...> Anders Larsen <al...@al...> (Maintainer) Index: file.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/fs/qnx4/file.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- file.c 14 Jan 2001 16:30:14 -0000 1.1.1.1 +++ file.c 9 Apr 2002 13:19:37 -0000 1.2 @@ -24,6 +24,7 @@ */ struct file_operations qnx4_file_operations = { + llseek: generic_file_llseek, read: generic_file_read, #ifdef CONFIG_QNX4FS_RW write: generic_file_write, Index: inode.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/fs/qnx4/inode.c,v retrieving revision 1.1.1.2 retrieving revision 1.2 diff -u -r1.1.1.2 -r1.2 --- inode.c 25 Feb 2001 23:14:47 -0000 1.1.1.2 +++ inode.c 9 Apr 2002 13:19:37 -0000 1.2 @@ -396,7 +396,6 @@ goto outi; brelse(bh); - s->s_dirt = 1; return s; @@ -512,3 +511,5 @@ module_init(init_qnx4_fs) module_exit(exit_qnx4_fs) +MODULE_LICENSE("GPL"); + |