Skip to content

Commit

Permalink
Enable zero detecting for requests
Browse files Browse the repository at this point in the history
Added a manual io job test
  • Loading branch information
shosseinimotlagh committed Mar 8, 2024
1 parent d864cb1 commit 41fe819
Show file tree
Hide file tree
Showing 6 changed files with 322 additions and 180 deletions.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class HomestoreConan(ConanFile):
name = "homestore"
version = "3.7.1"
version = "3.7.2"

homepage = "https://github.corp.ebay.com/SDS/homestore"
description = "HomeStore"
Expand Down
2 changes: 1 addition & 1 deletion src/engine/blkalloc/blk.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ struct BlkId {
bool operator==(const BlkId& other) noexcept { return (compare(*this, other) == 0); }

void invalidate() { set(blk_num_t{0}, blk_count_t{0}, s_chunk_num_mask); }
// return invalid_blk_id() { return blk_count_t{0}; }

[[nodiscard]] bool is_valid() const { return (m_chunk_num != s_chunk_num_mask); }

[[nodiscard]] BlkId get_blkid_at(const uint32_t offset, const uint32_t pagesz) const {
Expand Down
3 changes: 0 additions & 3 deletions src/homeblks/homeblks_config.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ table GeneralConfig {
// These fields should only be changed by agent through workflow
boot_restricted_mode: bool = false;
boot_safe_mode: bool = false;

// This field is for enabling thin provisioing on booting
boot_thin_provisioning: bool = true;
}

table HomeBlksSettings {
Expand Down
Loading

0 comments on commit 41fe819

Please sign in to comment.