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
darshan
darshan
Commits
5a3d1bdc
Commit
5a3d1bdc
authored
Sep 20, 2016
by
Shane Snyder
Browse files
slightly improved lustre OST diffing
parent
c38ee987
Changes
1
Show whitespace changes
Inline
Side-by-side
darshan-util/darshan-lustre-logutils.c
View file @
5a3d1bdc
...
@@ -212,14 +212,14 @@ static void darshan_log_print_lustre_record_diff(void *rec1, char *file_name1,
...
@@ -212,14 +212,14 @@ static void darshan_log_print_lustre_record_diff(void *rec1, char *file_name1,
}
}
}
}
/* would it be more or less useful to sort the OST IDs before comparing? */
/* TODO: would it be more or less useful to sort the OST IDs before comparing? */
if
(
lustre_rec1
->
counters
[
LUSTRE_STRIPE_WIDTH
]
==
lustre_rec2
->
counters
[
LUSTRE_STRIPE_WIDTH
]
)
{
i
=
0
;
for
(
i
=
0
;
i
<
lustre_rec1
->
counters
[
LUSTRE_STRIPE_WIDTH
];
i
++
)
while
(
1
)
{
if
(
lustre_rec1
->
ost_ids
[
i
]
!=
lustre_rec2
->
ost_ids
[
i
])
{
{
char
strbuf
[
25
];
char
strbuf
[
25
];
snprintf
(
strbuf
,
25
,
"LUSTRE_OST_ID_%d"
,
i
);
snprintf
(
strbuf
,
25
,
"LUSTRE_OST_ID_%d"
,
i
);
if
(
!
lustre_rec2
||
(
i
>=
lustre_rec2
->
counters
[
LUSTRE_STRIPE_WIDTH
]))
{
printf
(
"- "
);
printf
(
"- "
);
DARSHAN_COUNTER_PRINT
(
darshan_module_names
[
DARSHAN_LUSTRE_MOD
],
DARSHAN_COUNTER_PRINT
(
darshan_module_names
[
DARSHAN_LUSTRE_MOD
],
lustre_rec1
->
base_rec
.
rank
,
lustre_rec1
->
base_rec
.
rank
,
...
@@ -229,6 +229,9 @@ static void darshan_log_print_lustre_record_diff(void *rec1, char *file_name1,
...
@@ -229,6 +229,9 @@ static void darshan_log_print_lustre_record_diff(void *rec1, char *file_name1,
file_name1
,
file_name1
,
""
,
""
,
""
);
""
);
}
else
if
(
!
lustre_rec1
||
(
i
>=
lustre_rec1
->
counters
[
LUSTRE_STRIPE_WIDTH
]))
{
printf
(
"+ "
);
printf
(
"+ "
);
DARSHAN_COUNTER_PRINT
(
darshan_module_names
[
DARSHAN_LUSTRE_MOD
],
DARSHAN_COUNTER_PRINT
(
darshan_module_names
[
DARSHAN_LUSTRE_MOD
],
lustre_rec2
->
base_rec
.
rank
,
lustre_rec2
->
base_rec
.
rank
,
...
@@ -239,7 +242,32 @@ static void darshan_log_print_lustre_record_diff(void *rec1, char *file_name1,
...
@@ -239,7 +242,32 @@ static void darshan_log_print_lustre_record_diff(void *rec1, char *file_name1,
""
,
""
,
""
);
""
);
}
}
else
if
(
lustre_rec1
->
ost_ids
[
i
]
!=
lustre_rec2
->
ost_ids
[
i
])
{
printf
(
"- "
);
DARSHAN_COUNTER_PRINT
(
darshan_module_names
[
DARSHAN_LUSTRE_MOD
],
lustre_rec1
->
base_rec
.
rank
,
lustre_rec1
->
base_rec
.
id
,
strbuf
,
lustre_rec1
->
ost_ids
[
i
],
file_name1
,
""
,
""
);
printf
(
"+ "
);
DARSHAN_COUNTER_PRINT
(
darshan_module_names
[
DARSHAN_LUSTRE_MOD
],
lustre_rec2
->
base_rec
.
rank
,
lustre_rec2
->
base_rec
.
id
,
strbuf
,
lustre_rec2
->
ost_ids
[
i
],
file_name2
,
""
,
""
);
}
}
i
++
;
if
((
!
lustre_rec1
||
(
i
>=
lustre_rec1
->
counters
[
LUSTRE_STRIPE_WIDTH
]))
&&
(
!
lustre_rec2
||
(
i
>=
lustre_rec2
->
counters
[
LUSTRE_STRIPE_WIDTH
])))
break
;
}
}
return
;
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