diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1998-09-19 19:15:08 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1998-09-19 19:15:08 +0000 |
commit | 03ba4131783cc9e872f8bb26a03f15bc11f27564 (patch) | |
tree | 88db8dba75ae06ba3bad08e42c5e52efc162535c /fs/romfs | |
parent | 257730f99381dd26e10b832fce4c94cae7ac1176 (diff) |
- Merge with Linux 2.1.121.
- Bugfixes.
Diffstat (limited to 'fs/romfs')
-rw-r--r-- | fs/romfs/inode.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/fs/romfs/inode.c b/fs/romfs/inode.c index 86c9208ad..aa361336a 100644 --- a/fs/romfs/inode.c +++ b/fs/romfs/inode.c @@ -30,17 +30,18 @@ * correct namelen for statfs * spotted by Bill Hawes: * readlink shouldn't iput() + * Jun 1998 2.1.106 from Avery Pennarun: glibc scandir() + * exposed a problem in readdir + * 2.1.107 code-freeze spellchecker run + * Aug 1998 2.1.118+ VFS changes */ /* todo: * - see Documentation/filesystems/romfs.txt - * - use malloced memory for file names? - * - quicklist routines from fs/namei.c, get_page is possibly not - * intended to be used now + * - use allocated, not stack memory for file names? * - considering write access... * - network (tftp) files? - * - in the ancient times something leaked to made umounts - * impossible, but I've not seen it in the last months + * - merge back some _op tables */ /* @@ -492,6 +493,7 @@ static struct file_operations romfs_file_operations = { NULL, /* ioctl */ generic_file_mmap, /* mmap */ NULL, /* open */ + NULL, /* flush */ NULL, /* release */ NULL, /* fsync */ NULL, /* fasync */ @@ -529,6 +531,7 @@ static struct file_operations romfs_dir_operations = { NULL, /* ioctl */ NULL, /* mmap */ NULL, /* open */ + NULL, /* flush */ NULL, /* release */ NULL, /* fsync */ NULL, /* fasync */ |