Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Shane Snyder
darshan
Commits
6538893d
Commit
6538893d
authored
Jun 03, 2016
by
Glenn K. Lockwood
Browse files
made print_lustre_runtime
parent
dc1a9eb9
Changes
1
Hide whitespace changes
Inline
Side-by-side
darshan-runtime/lib/darshan-lustre.c
View file @
6538893d
...
...
@@ -458,18 +458,20 @@ void print_lustre_runtime( void )
printf
(
"File %2d
\n
"
,
i
);
for
(
j
=
0
;
j
<
LUSTRE_NUM_INDICES
;
j
++
)
{
printf
(
" Counter %2d: %10ld, addr %ld
\n
"
,
printf
(
" Counter %
-
2d: %10ld, addr %ld
\n
"
,
j
,
rec
->
counters
[
j
],
(
char
*
)(
&
(
rec
->
counters
[
j
]))
-
(
char
*
)(
lustre_runtime
->
record_buffer
)
);
}
for
(
j
=
0
;
j
<
rec
->
counters
[
LUSTRE_STRIPE_WIDTH
];
j
++
)
{
printf
(
" Stripe %2d: %10ld, addr %ld
\n
"
,
if
(
j
>
0
&&
j
%
2
==
0
)
printf
(
"
\n
"
);
printf
(
" Stripe %-2d: %10ld, addr %-9d"
,
j
,
rec
->
ost_ids
[
j
],
(
char
*
)(
&
(
rec
->
ost_ids
[
j
]))
-
(
char
*
)(
lustre_runtime
->
record_buffer
)
);
}
printf
(
"
\n
"
);
}
return
;
}
...
...
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