summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-14 15:01:32 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-14 15:01:32 +0000
commitbdd3f75598818a89b20185a2829c3dca6d30e2fa (patch)
tree68dd4b9d258fb9db5107552fff93949ae554ebea /io.c
parent8c757a326876062889e67e62368aa0f5bdd996d6 (diff)
* io.c (simple_sendfile): improve linux compatibility on FreeBSD,
and now it works. But without cpuset -l 0, it still gets stuck. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30210 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/io.c b/io.c
index 73579dd685..fc29721ef0 100644
--- a/io.c
+++ b/io.c
@@ -8217,7 +8217,9 @@ simple_sendfile(int out_fd, int in_fd, off_t *offset, off_t count)
}
# elif 0 /* defined(__FreeBSD__) || defined(__DragonFly__) */
-/* at least FreeBSD 8.1 + r30193, sendfiles blocks its execution... */
+/* This runs on FreeBSD8.1 r30210, but sendfiles blocks its execution
+ * without cpuset -l 0.
+ */
# define USE_SENDFILE
# ifdef HAVE_SYS_UIO_H
@@ -8228,16 +8230,21 @@ static ssize_t
simple_sendfile(int out_fd, int in_fd, off_t *offset, off_t count)
{
int r;
+ off_t pos = offset ? *offset : lseek(in_fd, 0, SEEK_CUR);
off_t sbytes;
- struct sf_hdtr hdtr = {NULL, 0, NULL, 0};
# if SIZEOF_OFF_T > SIZEOF_SIZE_T
/* we are limited by the 32-bit ssize_t return value on 32-bit */
if (count > (off_t)SSIZE_MAX)
count = SSIZE_MAX;
# endif
- r = sendfile(in_fd, out_fd, offset ? *offset : 0, (size_t)count, &hdtr, &sbytes, SF_NODISKIO);
- if (r != 0) return -1;
- if (offset) *offset = sbytes;
+ r = sendfile(in_fd, out_fd, pos, (size_t)count, NULL, &sbytes, 0);
+ if (offset) {
+ *offset += sbytes;
+ }
+ else {
+ lseek(in_fd, sbytes, SEEK_CUR);
+ }
+ if (r != 0 && sbytes == 0) return -1;
return (ssize_t)sbytes;
}