aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/vfs_aio.c20
-rw-r--r--sys/sys/aio.h2
2 files changed, 16 insertions, 6 deletions
diff --git a/sys/kern/vfs_aio.c b/sys/kern/vfs_aio.c
index 8666d6ea4217..bc0d7e04c9d5 100644
--- a/sys/kern/vfs_aio.c
+++ b/sys/kern/vfs_aio.c
@@ -1556,16 +1556,26 @@ aio_aqueue(struct thread *td, struct aiocb *ujob, struct aioliojob *lj,
goto err2;
}
+ /* Get the opcode. */
+ if (type == LIO_NOP) {
+ switch (job->uaiocb.aio_lio_opcode) {
+ case LIO_WRITE:
+ case LIO_NOP:
+ case LIO_READ:
+ opcode = job->uaiocb.aio_lio_opcode;
+ break;
+ default:
+ error = EINVAL;
+ goto err2;
+ }
+ } else
+ opcode = job->uaiocb.aio_lio_opcode = type;
+
ksiginfo_init(&job->ksi);
/* Save userspace address of the job info. */
job->ujob = ujob;
- /* Get the opcode. */
- if (type != LIO_NOP)
- job->uaiocb.aio_lio_opcode = type;
- opcode = job->uaiocb.aio_lio_opcode;
-
/*
* Validate the opcode and fetch the file object for the specified
* file descriptor.
diff --git a/sys/sys/aio.h b/sys/sys/aio.h
index dbfbadcd1254..ee928b8bf846 100644
--- a/sys/sys/aio.h
+++ b/sys/sys/aio.h
@@ -43,7 +43,7 @@
#define LIO_NOP 0x0
#define LIO_WRITE 0x1
#define LIO_READ 0x2
-#ifdef _KERNEL
+#if defined(_KERNEL) || defined(_WANT_ALL_LIO_OPCODES)
#define LIO_SYNC 0x3
#define LIO_MLOCK 0x4
#define LIO_WRITEV 0x5