Where I can get sendfile function sources? I can't find it in kernel sources...

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

In the Linux Cross Reference

link|improve this answer
Thank you very very much! – Anton Dec 19 '10 at 14:23
feedback

Since linux-2.6.23 sendfile() is implemented using the more generic splice() framework. You will find the splice() implementation in fs/splice.c under your kernel source tree.

The sendfile() implementation itself is in fs/read_write.c.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.