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
5 changes: 3 additions & 2 deletions src/vos/vos_obj_cache.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* (C) Copyright 2016-2024 Intel Corporation.
* (C) Copyright 2025 Hewlett Packard Enterprise Development LP
* (C) Copyright 2025-2026 Hewlett Packard Enterprise Development LP
*
* SPDX-License-Identifier: BSD-2-Clause-Patent
*/
Expand Down Expand Up @@ -849,7 +849,8 @@ vos_bkt_array_subset(struct vos_bkt_array *super, struct vos_bkt_array *sub)
return false;

for (i = 0; i < sub->vba_cnt; i++) {
idx = daos_array_find(super, super->vba_cnt, sub->vba_bkts[i], &bkt_sort_ops);
idx = daos_array_find(super->vba_bkts, super->vba_cnt, sub->vba_bkts[i],
&bkt_sort_ops);
if (idx < 0)
return false;
}
Expand Down
Loading