Skip to content

Commit

Permalink
Merge pull request #5452 from lplewa/stable-1.12
Browse files Browse the repository at this point in the history
pmem: add missing initialization to the info structure
  • Loading branch information
wlemkows authored May 23, 2022
2 parents 52197b1 + e11cd16 commit 98d28b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/libpmem/pmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -842,6 +842,8 @@ pmem_init(void)
struct pmem2_arch_info info;
info.memmove_nodrain = NULL;
info.memset_nodrain = NULL;
info.memmove_nodrain_eadr = NULL;
info.memset_nodrain_eadr = NULL;
info.flush = NULL;
info.fence = NULL;
info.flush_has_builtin_fence = 0;
Expand Down
1 change: 1 addition & 0 deletions src/test/pmem_eADR_functions/TESTS.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import re


@t.require_architectures('x86_64')
@g.require_granularity(g.ANY)
class PMEM_EADR(t.Test):
test_type = t.Short
Expand Down

0 comments on commit 98d28b3

Please sign in to comment.