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
Kirill Smelkov
linux
Commits
f61bc5fb
Commit
f61bc5fb
authored
Sep 14, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://are.twiddle.net/axp-2.6/
into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents
7d31ee9b
620f7a5a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
3 deletions
+26
-3
arch/alpha/kernel/sys_titan.c
arch/alpha/kernel/sys_titan.c
+3
-3
include/asm-alpha/spinlock.h
include/asm-alpha/spinlock.h
+23
-0
No files found.
arch/alpha/kernel/sys_titan.c
View file @
f61bc5fb
...
...
@@ -145,12 +145,12 @@ titan_end_irq(unsigned int irq)
}
static
void
titan_cpu_set_irq_affinity
(
unsigned
int
irq
,
unsigned
long
affinity
)
titan_cpu_set_irq_affinity
(
unsigned
int
irq
,
cpumask_t
affinity
)
{
int
cpu
;
for
(
cpu
=
0
;
cpu
<
4
;
cpu
++
)
{
if
(
affinity
&
(
1UL
<<
cpu
))
if
(
cpu_isset
(
cpu
,
affinity
))
titan_cpu_irq_affinity
[
cpu
]
|=
1UL
<<
irq
;
else
titan_cpu_irq_affinity
[
cpu
]
&=
~
(
1UL
<<
irq
);
...
...
@@ -159,7 +159,7 @@ titan_cpu_set_irq_affinity(unsigned int irq, unsigned long affinity)
}
static
void
titan_set_irq_affinity
(
unsigned
int
irq
,
unsigned
long
affinity
)
titan_set_irq_affinity
(
unsigned
int
irq
,
cpumask_t
affinity
)
{
spin_lock
(
&
titan_irq_lock
);
titan_cpu_set_irq_affinity
(
irq
-
16
,
affinity
);
...
...
include/asm-alpha/spinlock.h
View file @
f61bc5fb
...
...
@@ -148,6 +148,29 @@ static inline void _raw_read_lock(rwlock_t * lock)
}
#endif
/* CONFIG_DEBUG_RWLOCK */
static
inline
int
_raw_write_trylock
(
rwlock_t
*
lock
)
{
long
regx
;
int
success
;
__asm__
__volatile__
(
"1: ldl_l %1,%0
\n
"
" lda %2,0
\n
"
" bne %1,2f
\n
"
" or $31,1,%1
\n
"
" stl_c %1,%0
\n
"
" beq %1,6f
\n
"
" lda %2,1
\n
"
"2: mb
\n
"
".subsection 2
\n
"
"6: br 1b
\n
"
".previous"
:
"=m"
(
*
lock
),
"=&r"
(
regx
),
"=&r"
(
success
)
:
"m"
(
*
lock
)
:
"memory"
);
return
success
;
}
static
inline
void
_raw_write_unlock
(
rwlock_t
*
lock
)
{
mb
();
...
...
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