Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/fenix_data_policy_in_memory_raid.c
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,7 @@ int __imr_member_store(fenix_group_t* g, int member_id,
free(recv_buf);
free(serialized);

retval = FENIX_SUCCESS;
} else if(group->raid_mode == 5){
//TODO: Try to optimize for partial commits - currently does parity on the whole region regardless of commit area.
//TODO: I'm not sure if this is the best way to do this - could be a bottleneck if this is unoptimized since this
Expand Down Expand Up @@ -558,6 +559,7 @@ int __imr_member_store(fenix_group_t* g, int member_id,

//Finally, each node has the right stuff.

retval = FENIX_SUCCESS;
} else {
debug_print("ERROR Fenix_Data_member_store: Raid mode <%d> is not supported yet!\n",
group->raid_mode);
Expand Down
Loading