Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
INTsight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lehrstuhl für Informatik 4 (Systemsoftware)
INTsight
Commits
ab0cfdce
Commit
ab0cfdce
authored
6 years ago
by
Luis Gerhorst
Committed by
Bernhard Heinloth
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix indentation
parent
e93a5bd3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arch/arm/measuremore/measure.c
+6
-6
6 additions, 6 deletions
arch/arm/measuremore/measure.c
with
6 additions
and
6 deletions
arch/arm/measuremore/measure.c
+
6
−
6
View file @
ab0cfdce
...
@@ -198,7 +198,7 @@ static void create_csv_file(const char *name,
...
@@ -198,7 +198,7 @@ static void create_csv_file(const char *name,
#ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_PMCCNTR
#ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_PMCCNTR
static
void
seq_write_pmccntr_csv_field
(
struct
seq_file
*
seq
,
static
void
seq_write_pmccntr_csv_field
(
struct
seq_file
*
seq
,
struct
checkpoint_record
*
cpr
)
struct
checkpoint_record
*
cpr
)
{
{
seq_printf
(
seq
,
"%u"
,
cpr
->
pmccntr_ts
.
value
);
seq_printf
(
seq
,
"%u"
,
cpr
->
pmccntr_ts
.
value
);
}
}
...
@@ -206,7 +206,7 @@ static void seq_write_pmccntr_csv_field(struct seq_file *seq,
...
@@ -206,7 +206,7 @@ static void seq_write_pmccntr_csv_field(struct seq_file *seq,
#ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_KTIME_MONO_FAST
#ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_KTIME_MONO_FAST
static
void
seq_write_ktime_mono_fast_csv_field
(
struct
seq_file
*
seq
,
static
void
seq_write_ktime_mono_fast_csv_field
(
struct
seq_file
*
seq
,
struct
checkpoint_record
*
cpr
)
struct
checkpoint_record
*
cpr
)
{
{
seq_printf
(
seq
,
"%llu"
,
cpr
->
ktime_mono_fast
);
seq_printf
(
seq
,
"%llu"
,
cpr
->
ktime_mono_fast
);
}
}
...
@@ -214,7 +214,7 @@ static void seq_write_ktime_mono_fast_csv_field(struct seq_file *seq,
...
@@ -214,7 +214,7 @@ static void seq_write_ktime_mono_fast_csv_field(struct seq_file *seq,
#ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_KTIME
#ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_KTIME
static
void
seq_write_ktime_csv_field
(
struct
seq_file
*
seq
,
static
void
seq_write_ktime_csv_field
(
struct
seq_file
*
seq
,
struct
checkpoint_record
*
cpr
)
struct
checkpoint_record
*
cpr
)
{
{
seq_printf
(
seq
,
"%llu"
,
ktime_to_ns
(
cpr
->
ktime
));
seq_printf
(
seq
,
"%llu"
,
ktime_to_ns
(
cpr
->
ktime
));
}
}
...
@@ -222,20 +222,20 @@ static void seq_write_ktime_csv_field(struct seq_file *seq,
...
@@ -222,20 +222,20 @@ static void seq_write_ktime_csv_field(struct seq_file *seq,
#ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_NSTIMEOFDAY
#ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_NSTIMEOFDAY
static
void
seq_write_nstimeofday_ns_csv_field
(
struct
seq_file
*
seq
,
static
void
seq_write_nstimeofday_ns_csv_field
(
struct
seq_file
*
seq
,
struct
checkpoint_record
*
cpr
)
struct
checkpoint_record
*
cpr
)
{
{
seq_printf
(
seq
,
"%ld"
,
cpr
->
nstimeofday
.
tv_nsec
);
seq_printf
(
seq
,
"%ld"
,
cpr
->
nstimeofday
.
tv_nsec
);
}
}
static
void
seq_write_nstimeofday_s_csv_field
(
struct
seq_file
*
seq
,
static
void
seq_write_nstimeofday_s_csv_field
(
struct
seq_file
*
seq
,
struct
checkpoint_record
*
cpr
)
struct
checkpoint_record
*
cpr
)
{
{
seq_printf
(
seq
,
"%ld"
,
cpr
->
nstimeofday
.
tv_sec
);
seq_printf
(
seq
,
"%ld"
,
cpr
->
nstimeofday
.
tv_sec
);
}
}
#endif
#endif
static
void
seq_write_name_csv_field
(
struct
seq_file
*
seq
,
static
void
seq_write_name_csv_field
(
struct
seq_file
*
seq
,
struct
checkpoint_record
*
cpr
)
struct
checkpoint_record
*
cpr
)
{
{
seq_printf
(
seq
,
"%s"
,
cpr
->
name
);
seq_printf
(
seq
,
"%s"
,
cpr
->
name
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment