Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
7364b292
Commit
7364b292
authored
Nov 02, 2002
by
Geert Uytterhoeven
Committed by
Linus Torvalds
Nov 02, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Fix rwsemtrace() message
Fix rwsemtrace() message
parent
87bf3163
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/rwsem-spinlock.c
lib/rwsem-spinlock.c
+2
-2
No files found.
lib/rwsem-spinlock.c
View file @
7364b292
...
...
@@ -290,7 +290,7 @@ void __up_write(struct rw_semaphore *sem)
*/
void
__downgrade_write
(
struct
rw_semaphore
*
sem
)
{
rwsemtrace
(
sem
,
"Entering __
rwsem_downgrad
e"
);
rwsemtrace
(
sem
,
"Entering __
downgrade_writ
e"
);
spin_lock
(
&
sem
->
wait_lock
);
...
...
@@ -300,7 +300,7 @@ void __downgrade_write(struct rw_semaphore *sem)
spin_unlock
(
&
sem
->
wait_lock
);
rwsemtrace
(
sem
,
"Leaving __
rwsem_downgrad
e"
);
rwsemtrace
(
sem
,
"Leaving __
downgrade_writ
e"
);
}
EXPORT_SYMBOL
(
init_rwsem
);
...
...
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