Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Shane Snyder
darshan
Commits
085aaaa7
Commit
085aaaa7
authored
Jun 21, 2016
by
Glenn K. Lockwood
Browse files
fixed bug that prevented parser from reading in record with striping > 1 but < 8
parent
b51c463b
Changes
1
Hide whitespace changes
Inline
Side-by-side
darshan-util/darshan-lustre-logutils.c
View file @
085aaaa7
...
...
@@ -78,7 +78,7 @@ static int darshan_log_get_lustre_record(darshan_fd fd, void* lustre_buf,
);
if
(
ret
<
0
)
return
(
-
1
);
else
if
(
ret
<
sizeof
(
struct
darshan_lustre_record
))
else
if
(
ret
<
(
rec
->
counters
[
LUSTRE_STRIPE_WIDTH
]
-
1
)
*
sizeof
(
OST_ID
))
return
(
0
);
/* swap bytes if necessary */
if
(
fd
->
swap_flag
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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