diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-10-05 19:18:15 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-10-05 19:18:15 +0200 |
commit | 0d10ae06e69dae574795941e60d2408706ed15a9 (patch) | |
tree | ba82a45c9a79bc9c25de513a40aef0cba80180ac | |
parent | e1b0831854b58eea3381e29cee39f3f076ee5d7c (diff) | |
download | sdn-0d10ae06e69dae574795941e60d2408706ed15a9.tar.gz sdn-0d10ae06e69dae574795941e60d2408706ed15a9.tar.xz sdn-0d10ae06e69dae574795941e60d2408706ed15a9.zip |
Measured stat performance, io_uring not worth it
Large directories are slow for different reasons.
-rw-r--r-- | sdn.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -638,9 +638,8 @@ fun make_entry (const struct dirent *f) -> entry { e.info.st_mode = DTTOIF (f->d_type); auto &info = e.info; - // TODO: benchmark just readdir() vs. lstat(), also on dead mounts; - // it might make sense to stat asynchronously in threads - // http://lkml.iu.edu/hypermail//linux/kernel/0804.3/1616.html + // io_uring is only at most about 50% faster, though it might help with + // slowly statting devices, at a major complexity cost. if (lstat (f->d_name, &info)) { e.cols[entry::MODES] = apply_attrs ({ decode_type (info.st_mode), L'?', L'?', L'?', L'?', L'?', L'?', L'?', L'?', L'?' }, 0); |