--- IO-AIO/Changes 2009/06/07 22:37:54 1.188 +++ IO-AIO/Changes 2009/06/14 20:36:59 1.194 @@ -6,8 +6,31 @@ TODO: splice/tee/vmsplice? (http://kerneltrap.org/node/6505 http://lwn.net/Articles/178199/) TODO: aio_fcntl, at least for file-locking + - avoid some degenerate sorting cases on systems without d_ino, + or when the dentries are mostly sorted by inode already (common + with freshly unpacked tarfiles for example). + - correctly sort dirs by inodes only if we have perfect type + knowledge and DIRS_FIRST is used. + - speed up directory entry sorting further by some 20%. + +3.23 Sat Jun 13 16:57:58 CEST 2009 + - fix off-by-one bug in aio_readdir that was introduced in the + rushed 3.22 release. + +3.22 Sat Jun 13 15:32:40 CEST 2009 + - speed up readdirx sort algorithm slightly. + - bin/treescan was missing from distro tarball. + +3.21 Fri Jun 12 18:45:53 CEST 2009 - new options --dirs and --files for treescan. - install bin/treescan by default. + - (libeio) aio_readdir can now be cancelled while executing. + - fix a printf format string for 64 bit systems (could lead + to problems on big endian 64 bit systems). + - do not use qsort() but our own algorithm: glibc initialises + the whole locale and I/O subsystem inside qsort, causing + a stack overflow on 32 bit machines. The new sort uses much less + stack and is more than twice as fast in typical situations. 3.2 Sun Jun 7 20:30:05 CEST 2009 - (libeio) pwrite emulation was even more flawed than intended and did