X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=src%2FDiskIO%2FAIO%2FAIODiskFile.cc;h=e27fc189e8a04b1ca72b261d831d345f15aeec5c;hb=9837567dd913854a4deddcc49043bfd7631ab63f;hp=2cdc8a0938d3db239d9cdefd2b90d879827605d1;hpb=ab36c3dcc2779bae23d3c6ef1de854dc892c4fef;p=thirdparty%2Fsquid.git diff --git a/src/DiskIO/AIO/AIODiskFile.cc b/src/DiskIO/AIO/AIODiskFile.cc index 2cdc8a0938..e27fc189e8 100644 --- a/src/DiskIO/AIO/AIODiskFile.cc +++ b/src/DiskIO/AIO/AIODiskFile.cc @@ -95,7 +95,7 @@ AIODiskFile::read(ReadRequest *request) if (slot < 0) { /* No free slot? Callback error, and return */ - fatal("Aiee! out of aiocb slots! - FIXME and wrap file_read\n"); + fatal("Aiee! out of aiocb slots! - TODO fix and wrap file_read\n"); debugs(79, DBG_IMPORTANT, "WARNING: out of aiocb slots!"); /* fall back to blocking method */ // file_read(fd, request->buf, request->len, request->offset, callback, data); @@ -133,7 +133,7 @@ AIODiskFile::read(ReadRequest *request) /* Initiate aio */ if (aio_read(&qe->aq_e_aiocb) < 0) { int xerrno = errno; - fatalf("Aiee! aio_read() returned error (%d) FIXME and wrap file_read !\n", xerrno); + fatalf("Aiee! aio_read() returned error (%d) TODO fix and wrap file_read !\n", xerrno); debugs(79, DBG_IMPORTANT, "WARNING: aio_read() returned error: " << xstrerr(xerrno)); /* fall back to blocking method */ // file_read(fd, request->buf, request->len, request->offset, callback, data); @@ -154,7 +154,7 @@ AIODiskFile::write(WriteRequest *request) if (slot < 0) { /* No free slot? Callback error, and return */ - fatal("Aiee! out of aiocb slots FIXME and wrap file_write !\n"); + fatal("Aiee! out of aiocb slots TODO fix and wrap file_write !\n"); debugs(79, DBG_IMPORTANT, "WARNING: out of aiocb slots!"); /* fall back to blocking method */ // file_write(fd, offset, buf, len, callback, data, freefunc); @@ -192,7 +192,7 @@ AIODiskFile::write(WriteRequest *request) /* Initiate aio */ if (aio_write(&qe->aq_e_aiocb) < 0) { int xerrno = errno; - fatalf("Aiee! aio_write() returned error (%d) FIXME and wrap file_write !\n", xerrno); + fatalf("Aiee! aio_write() returned error (%d) TODO fix and wrap file_write !\n", xerrno); debugs(79, DBG_IMPORTANT, "WARNING: aio_write() returned error: " << xstrerr(xerrno)); /* fall back to blocking method */ // file_write(fd, offset, buf, len, callback, data, freefunc);