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/sysv | |
parent | 257730f99381dd26e10b832fce4c94cae7ac1176 (diff) |
- Merge with Linux 2.1.121.
- Bugfixes.
Diffstat (limited to 'fs/sysv')
-rw-r--r-- | fs/sysv/dir.c | 1 | ||||
-rw-r--r-- | fs/sysv/file.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/fs/sysv/dir.c b/fs/sysv/dir.c index e93f8bb11..ee99164fb 100644 --- a/fs/sysv/dir.c +++ b/fs/sysv/dir.c @@ -38,6 +38,7 @@ static struct file_operations sysv_dir_operations = { NULL, /* ioctl - default */ NULL, /* mmap */ NULL, /* no special open code */ + NULL, /* flush */ NULL, /* no special release code */ file_fsync /* default fsync */ }; diff --git a/fs/sysv/file.c b/fs/sysv/file.c index f4cf216c5..d60be8fa5 100644 --- a/fs/sysv/file.c +++ b/fs/sysv/file.c @@ -48,6 +48,7 @@ static struct file_operations sysv_file_operations = { NULL, /* ioctl - default */ generic_file_mmap, /* mmap */ NULL, /* no special open is needed */ + NULL, /* flush */ NULL, /* release */ sysv_sync_file /* fsync */ }; |