Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
5fc485f6
Commit
5fc485f6
authored
Aug 12, 2009
by
Thomas Gleixner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hwlat: Move wakequeue wake up out of irq disable region
Signed-off-by:
Thomas Gleixner
<
tglx@linutronix.de
>
parent
e5c3361d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
drivers/misc/hwlat_detector.c
drivers/misc/hwlat_detector.c
+2
-2
No files found.
drivers/misc/hwlat_detector.c
View file @
5fc485f6
...
...
@@ -262,8 +262,6 @@ static int get_sample(void *unused)
/* Keep a running maximum ever recorded hardware latency */
if
(
sample
>
data
.
max_sample
)
data
.
max_sample
=
sample
;
wake_up
(
&
data
.
wq
);
/* wake up reader(s) */
}
ret
=
0
;
...
...
@@ -301,6 +299,8 @@ static int kthread_fn(void *unused)
goto
err_out
;
}
wake_up
(
&
data
.
wq
);
/* wake up reader(s) */
interval
=
data
.
sample_window
-
data
.
sample_width
;
do_div
(
interval
,
USEC_PER_MSEC
);
/* modifies interval value */
...
...
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