So do exactly that in libc.
  sendfile () {
    if (sys_sendfile() == -1)
      return (errno == EINVAL) ? do_slow_sendfile() : -1;
    return 0;
  }
Peter
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/