Make posix_fallocate() and posix_fadvise() work.
We can map these system calls directly to the FreeBSD counterparts. The other filesystem related system calls will be sent out for review separately, as they are a bit more complex to get right.
This commit is contained in:
parent
8239de9b1b
commit
4fa92fb538
@ -26,15 +26,43 @@
|
|||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__FBSDID("$FreeBSD$");
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
|
#include <sys/param.h>
|
||||||
|
#include <sys/fcntl.h>
|
||||||
|
#include <sys/syscallsubr.h>
|
||||||
|
|
||||||
#include <compat/cloudabi/cloudabi_proto.h>
|
#include <compat/cloudabi/cloudabi_proto.h>
|
||||||
|
#include <compat/cloudabi/cloudabi_syscalldefs.h>
|
||||||
|
|
||||||
int
|
int
|
||||||
cloudabi_sys_file_advise(struct thread *td,
|
cloudabi_sys_file_advise(struct thread *td,
|
||||||
struct cloudabi_sys_file_advise_args *uap)
|
struct cloudabi_sys_file_advise_args *uap)
|
||||||
{
|
{
|
||||||
|
int advice;
|
||||||
|
|
||||||
/* Not implemented. */
|
switch (uap->advice) {
|
||||||
return (ENOSYS);
|
case CLOUDABI_ADVICE_DONTNEED:
|
||||||
|
advice = POSIX_FADV_DONTNEED;
|
||||||
|
break;
|
||||||
|
case CLOUDABI_ADVICE_NOREUSE:
|
||||||
|
advice = POSIX_FADV_NOREUSE;
|
||||||
|
break;
|
||||||
|
case CLOUDABI_ADVICE_NORMAL:
|
||||||
|
advice = POSIX_FADV_NORMAL;
|
||||||
|
break;
|
||||||
|
case CLOUDABI_ADVICE_RANDOM:
|
||||||
|
advice = POSIX_FADV_RANDOM;
|
||||||
|
break;
|
||||||
|
case CLOUDABI_ADVICE_SEQUENTIAL:
|
||||||
|
advice = POSIX_FADV_SEQUENTIAL;
|
||||||
|
break;
|
||||||
|
case CLOUDABI_ADVICE_WILLNEED:
|
||||||
|
advice = POSIX_FADV_WILLNEED;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return (EINVAL);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (kern_posix_fadvise(td, uap->fd, uap->offset, uap->len, advice));
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
@ -42,8 +70,7 @@ cloudabi_sys_file_allocate(struct thread *td,
|
|||||||
struct cloudabi_sys_file_allocate_args *uap)
|
struct cloudabi_sys_file_allocate_args *uap)
|
||||||
{
|
{
|
||||||
|
|
||||||
/* Not implemented. */
|
return (kern_posix_fallocate(td, uap->fd, uap->offset, uap->len));
|
||||||
return (ENOSYS);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
Loading…
Reference in New Issue
Block a user