Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2021-03-19 13:58:31 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2021-03-19 13:58:31 +0300
commit47614988e0f38085b903b55369ec359711494d27 (patch)
tree0fcc1df8e9c88d5cffdd35004984245e8d51a514 /include
parent3354ed31eea1534321d2ea0c05e82e572297609c (diff)
Reenable the llfio::dynamic_thread_pool_group::io_aware_work_item unit test.
Diffstat (limited to 'include')
-rw-r--r--include/llfio/revision.hpp6
-rw-r--r--include/llfio/v2.0/detail/impl/posix/statfs.ipp3
2 files changed, 4 insertions, 5 deletions
diff --git a/include/llfio/revision.hpp b/include/llfio/revision.hpp
index 2cd9f8b5..634724d9 100644
--- a/include/llfio/revision.hpp
+++ b/include/llfio/revision.hpp
@@ -1,4 +1,4 @@
// Note the second line of this file must ALWAYS be the git SHA, third line ALWAYS the git SHA update time
-#define LLFIO_PREVIOUS_COMMIT_REF 67226948b9f00aebbf33c232d10c417ba1abb289
-#define LLFIO_PREVIOUS_COMMIT_DATE "2021-03-16 12:31:40 +00:00"
-#define LLFIO_PREVIOUS_COMMIT_UNIQUE 67226948
+#define LLFIO_PREVIOUS_COMMIT_REF 3354ed31eea1534321d2ea0c05e82e572297609c
+#define LLFIO_PREVIOUS_COMMIT_DATE "2021-03-17 16:05:09 +00:00"
+#define LLFIO_PREVIOUS_COMMIT_UNIQUE 3354ed31
diff --git a/include/llfio/v2.0/detail/impl/posix/statfs.ipp b/include/llfio/v2.0/detail/impl/posix/statfs.ipp
index 2e3b0859..d8a00c8e 100644
--- a/include/llfio/v2.0/detail/impl/posix/statfs.ipp
+++ b/include/llfio/v2.0/detail/impl/posix/statfs.ipp
@@ -438,8 +438,7 @@ LLFIO_HEADERS_ONLY_MEMFUNC_SPEC result<std::pair<uint32_t, float>> statfs_t::_fi
int major = 0, minor = 0;
char devicename[64];
size_t fields[12];
- sscanf(sv.data(), "%d %d %s %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu", &major, &minor, devicename, fields + 0, fields + 1, fields + 2, fields + 3,
- fields + 4, fields + 5, fields + 6, fields + 7, fields + 8, fields + 9);
+ sscanf(sv.data(), "%d %d %s %*u %*u %*u %*u %*u %*u %*u %*u %zu %zu", &major, &minor, devicename, fields + 8, fields + 9);
std::lock_guard<std::mutex> g(last_reading.lock);
auto it = last_reading.items.begin();
for(; it != last_reading.items.end(); ++it)