diff options
| author | Hirofumi Ogawa <hirofumi@mail.parknet.co.jp> | 2002-08-12 18:10:37 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-08-12 18:10:37 -0700 |
| commit | 70f7b4a31184a151a132b02f0691e7752e080d7d (patch) | |
| tree | 7ae08caaa40b2f8faa51c0093bd14e9714080fdc | |
| parent | 242fde60987561ecf8db93b1affd7789abda2783 (diff) | |
[PATCH] add sendfile() support to fatfs (3/3)
This patch adds sendfile() support to fatfs.
| -rw-r--r-- | fs/fat/file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/fat/file.c b/fs/fat/file.c index d915d6578c9a..38b06bb5566e 100644 --- a/fs/fat/file.c +++ b/fs/fat/file.c @@ -21,6 +21,7 @@ struct file_operations fat_file_operations = { write: fat_file_write, mmap: generic_file_mmap, fsync: file_fsync, + sendfile: generic_file_sendfile, }; struct inode_operations fat_file_inode_operations = { |
