diff options
| author | Dan Engelbrecht <[email protected]> | 2024-03-14 16:50:18 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-03-14 16:50:18 +0100 |
| commit | 0a935231009cb21680d364ef125f0296a5a5bed6 (patch) | |
| tree | 7e55a67ae60883b0eab71a0d636aeec23f307d14 /src/zenstore/chunking.cpp | |
| parent | clean up test linking (#4) (diff) | |
| download | zen-0a935231009cb21680d364ef125f0296a5a5bed6.tar.xz zen-0a935231009cb21680d364ef125f0296a5a5bed6.zip | |
special treatment large oplog attachments v2 (#5)
- Bugfix: Install Ctrl+C handler earlier when doing `zen oplog-export` and `zen oplog-export` to properly cancel jobs
- Improvement: Add ability to block a set of CAS entries from GC in project store
- Improvement: Large attachments and loose files are now split into smaller chunks and stored in blocks during oplog export
Diffstat (limited to 'src/zenstore/chunking.cpp')
| -rw-r--r-- | src/zenstore/chunking.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenstore/chunking.cpp b/src/zenstore/chunking.cpp index 80674de0a..30edd322a 100644 --- a/src/zenstore/chunking.cpp +++ b/src/zenstore/chunking.cpp @@ -36,7 +36,7 @@ static const uint32_t BuzhashTable[] = { }; // ROL operation (compiler turns this into a ROL when optimizing) -static inline uint32_t +ZEN_FORCEINLINE static uint32_t Rotate32(uint32_t Value, size_t RotateCount) { RotateCount &= 31; |