K 10 svn:author V 3 jhb K 8 svn:date V 27 2018-01-30T00:38:24.586696Z K 7 svn:log V 376 MFC 327753: Simplify some logic by merging an if test with a subsequent switch. Specifically, in aio_queue_file() the code was doing this: if (opcode == LIO_SYNC) { ... } switch (opcode) { ... case LIO_SYNC: ... } This moves the body of the if statement into the LIO_SYNC case of the switch statement. Sponsored by: Chelsio Communications END