On Fri, Feb 17, 2012 at 1:46 AM, Kang Kai<Kai.Kang@xxxxxxxxxxxxx> wrote:
Hi All,
If pass a invalid aio_lio_opcode to lio_listio() with mode LIO_NOWAIT, it
return 0 which means success. Is this the proper action for invalid
aio_lio_opcode?
I check the source code ./sysdeps/pthread/lio_listio.c Line 81:
if (list[cnt] != NULL&& list[cnt]->aio_lio_opcode != LIO_NOP)
it just checks aio_lio_opcode is not LIO_NOP then enqueue the request? I
wonder this is buggy.
for aio_lio_opcode posix says "The supported operations are LIO_READ,
LIO_WRITE, and LIO_NOP"
but it does not say what should happen if the value it not one of the above
so IMO its not a bug but falls into undefined behavior.