Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
bd9a48e7
Commit
bd9a48e7
authored
May 19, 2015
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
timer: better dump code.
Signed-off-by:
Rusty Russell
<
rusty@rustcorp.com.au
>
parent
897219d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
30 deletions
+64
-30
ccan/timer/timer.c
ccan/timer/timer.c
+64
-30
No files found.
ccan/timer/timer.c
View file @
bd9a48e7
...
...
@@ -389,50 +389,84 @@ past_levels:
}
#ifdef CCAN_TIMER_DEBUG
void
timers_dump
(
const
struct
timers
*
timers
,
FILE
*
fp
)
static
void
dump_bucket_stats
(
FILE
*
fp
,
const
struct
list_head
*
h
)
{
unsigned
int
l
,
i
;
uint64_t
min
,
max
,
num
;
unsigned
long
long
min
,
max
,
num
;
struct
timer
*
t
;
if
(
!
fp
)
fp
=
stderr
;
fprintf
(
fp
,
"Base: %llu
\n
"
,
timers
->
base
);
for
(
l
=
0
;
timers
->
level
[
l
]
&&
l
<
ARRAY_SIZE
(
timers
->
level
);
l
++
)
{
fprintf
(
fp
,
"Level %i (+%llu):
\n
"
,
l
,
(
uint64_t
)
1
<<
(
TIMER_LEVEL_BITS
*
l
));
for
(
i
=
0
;
i
<
(
1
<<
TIMER_LEVEL_BITS
);
i
++
)
{
if
(
list_empty
(
&
timers
->
level
[
l
]
->
list
[
i
]))
continue
;
min
=
-
1ULL
;
max
=
0
;
num
=
0
;
list_for_each
(
&
timers
->
level
[
l
]
->
list
[
i
],
t
,
list
)
{
if
(
t
->
time
<
min
)
min
=
t
->
time
;
if
(
t
->
time
>
max
)
max
=
t
->
time
;
num
++
;
}
fprintf
(
stderr
,
" %llu (+%llu-+%llu)
\n
"
,
num
,
min
-
timers
->
base
,
max
-
timers
->
base
);
}
if
(
list_empty
(
h
))
{
printf
(
"
\n
"
);
return
;
}
min
=
-
1ULL
;
max
=
0
;
num
=
0
;
list_for_each
(
&
timers
->
far
,
t
,
list
)
{
list_for_each
(
h
,
t
,
list
)
{
if
(
t
->
time
<
min
)
min
=
t
->
time
;
if
(
t
->
time
>
max
)
max
=
t
->
time
;
num
++
;
}
fprintf
(
stderr
,
"Far: %llu (%llu-%llu)
\n
"
,
num
,
min
,
max
);
fprintf
(
fp
,
" %llu (%llu-%llu)
\n
"
,
num
,
min
,
max
);
}
void
timers_dump
(
const
struct
timers
*
timers
,
FILE
*
fp
)
{
unsigned
int
l
,
i
,
off
;
unsigned
long
long
base
;
if
(
!
fp
)
fp
=
stderr
;
fprintf
(
fp
,
"Base: %llu
\n
"
,
(
unsigned
long
long
)
timers
->
base
);
if
(
!
timers
->
level
[
0
])
goto
past_levels
;
fprintf
(
fp
,
"Level 0:
\n
"
);
/* First level is simple. */
off
=
timers
->
base
%
PER_LEVEL
;
for
(
i
=
0
;
i
<
PER_LEVEL
;
i
++
)
{
const
struct
list_head
*
h
;
fprintf
(
fp
,
" Bucket %llu (%lu):"
,
(
i
+
off
)
%
PER_LEVEL
,
timers
->
base
+
i
);
h
=
&
timers
->
level
[
0
]
->
list
[(
i
+
off
)
%
PER_LEVEL
];
dump_bucket_stats
(
fp
,
h
);
}
/* For other levels, "current" bucket has been emptied, and may contain
* entries for the current + level_size bucket. */
for
(
l
=
1
;
l
<
ARRAY_SIZE
(
timers
->
level
)
&&
timers
->
level
[
l
];
l
++
)
{
uint64_t
per_bucket
=
1ULL
<<
(
TIMER_LEVEL_BITS
*
l
);
off
=
((
timers
->
base
>>
(
l
*
TIMER_LEVEL_BITS
))
%
PER_LEVEL
);
/* We start at *next* bucket. */
base
=
(
timers
->
base
&
~
(
per_bucket
-
1
))
+
per_bucket
;
fprintf
(
fp
,
"Level %u:
\n
"
,
l
);
for
(
i
=
1
;
i
<=
PER_LEVEL
;
i
++
)
{
const
struct
list_head
*
h
;
fprintf
(
fp
,
" Bucket %llu (%llu - %llu):"
,
(
i
+
off
)
%
PER_LEVEL
,
base
,
base
+
per_bucket
-
1
);
h
=
&
timers
->
level
[
l
]
->
list
[(
i
+
off
)
%
PER_LEVEL
];
dump_bucket_stats
(
fp
,
h
);
base
+=
per_bucket
;
}
}
past_levels:
if
(
!
list_empty
(
&
timers
->
far
))
{
fprintf
(
fp
,
"Far timers:"
);
dump_bucket_stats
(
fp
,
&
timers
->
far
);
}
}
#endif
...
...
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