Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sds-tests
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
sds-tests
Commits
7fbbc0ad
Commit
7fbbc0ad
authored
Jan 28, 2019
by
Philip Carns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix arg parsing
parent
49b91864
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
perf-regression/pmdk-bw.c
perf-regression/pmdk-bw.c
+2
-3
No files found.
perf-regression/pmdk-bw.c
View file @
7fbbc0ad
...
...
@@ -26,7 +26,6 @@ struct options
unsigned
long
xfer_size
;
unsigned
long
total_mem_size
;
int
concurrency
;
char
*
diag_file_name
;
char
*
pmdk_pool
;
int
xstreams
;
};
...
...
@@ -82,7 +81,7 @@ int main(int argc, char **argv)
ret
=
ABT_xstream_set_main_sched
(
self_xstream
,
self_sched
);
assert
(
ret
==
0
);
pmem_pool
=
pmemobj_open
(
argv
[
1
]
,
NULL
);
pmem_pool
=
pmemobj_open
(
g_opts
.
pmdk_pool
,
NULL
);
if
(
!
pmem_pool
)
{
fprintf
(
stderr
,
"pmemobj_open: %s
\n
"
,
pmemobj_errormsg
());
...
...
@@ -98,7 +97,7 @@ int main(int argc, char **argv)
}
/* set up abt pool */
if
(
g_opts
.
xstreams
=
=
0
)
if
(
g_opts
.
xstreams
<
=
0
)
{
ABT_pool
pool
;
ABT_xstream
xstream
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment