diff -Naur lufs-0.9.7/ChangeLog lufs.my/ChangeLog
--- lufs-0.9.7/ChangeLog	Sun Jun  8 22:12:23 2003
+++ lufs.my/ChangeLog	Sat Feb 18 13:29:52 2006
@@ -1,3 +1,6 @@
+[18.02.2006] - Victor Porton <porton@ex-code.com>
+    * added sendfile() for Linux 2.6
+
 [05.28.2003] - Florin Malita <mali@go.ro>
     * fixed the "hanging on access" bug (glibc, pthreads linking order issue)
     * merged null fsync patch from James Marsh
diff -Naur lufs-0.9.7/Contributors lufs.my/Contributors
--- lufs-0.9.7/Contributors	Sun Jun  8 10:04:55 2003
+++ lufs.my/Contributors	Sat Feb 18 13:30:49 2006
@@ -10,3 +10,4 @@
 Eric Green <eric@badtux.org>           - large file support, various fixes.
 James Marsh <marshj@cs.man.ac.uk>      - fsync support
 Pierre-Frederic Caillaud <pfcaillaud@wanadoo.fr> - wavfs
+Victor Porton <porton@ex-code.com>     - sendfile support
diff -Naur lufs-0.9.7/configure lufs.my/configure
--- lufs-0.9.7/configure	Thu Oct 30 03:48:32 2003
+++ lufs.my/configure	Sat Feb 18 13:33:34 2006
@@ -1832,7 +1832,7 @@
 
 # Define the identity of the package.
  PACKAGE=lufs
- VERSION=0.9.7
+ VERSION=0.9.7-sendfile
 
 
 cat >>confdefs.h <<_ACEOF
diff -Naur lufs-0.9.7/configure.in lufs.my/configure.in
--- lufs-0.9.7/configure.in	Thu Oct 30 03:40:28 2003
+++ lufs.my/configure.in	Sat Feb 18 13:33:12 2006
@@ -4,7 +4,7 @@
 AC_CONFIG_AUX_DIR(config)
 AM_CONFIG_HEADER(config.h)
 AC_CANONICAL_SYSTEM
-AM_INIT_AUTOMAKE(lufs,0.9.7)
+AM_INIT_AUTOMAKE(lufs,0.9.7-sendfile)
 
 dnl "static" FSs
 opt_fs="localfs locasefs ftpfs gnetfs"
diff -Naur lufs-0.9.7/debian/changelog lufs.my/debian/changelog
--- lufs-0.9.7/debian/changelog	Sat Feb 18 12:21:09 2006
+++ lufs.my/debian/changelog	Sat Feb 18 13:35:27 2006
@@ -1,3 +1,9 @@
+lufs (0.9.7-sendfile-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Victor Porton <porton@ex-code.com>  Sat, 18 Feb 2006 13:34:49 +0500
+
 lufs (0.9.7-7) unstable; urgency=low
 
   * CXX 4.0 transition
diff -Naur lufs-0.9.7/kernel/Linux/2.6/file.c lufs.my/kernel/Linux/2.6/file.c
--- lufs-0.9.7/kernel/Linux/2.6/file.c	Wed Oct 29 22:59:16 2003
+++ lufs.my/kernel/Linux/2.6/file.c	Sat Feb 18 13:28:37 2006
@@ -298,6 +298,7 @@
 
 struct file_operations lu_file_operations = {
     .llseek	= generic_file_llseek,
+    .sendfile	= generic_file_sendfile,
     .read	= lu_file_read,
     .write	= lu_file_write,
     .mmap	= lu_file_mmap,
