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
830cb0bc
Commit
830cb0bc
authored
Apr 26, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
http://lia64.bkbits.net/to-linus-2.5
into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents
85283764
67cd8c87
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
7 deletions
+10
-7
arch/ia64/kernel/iosapic.c
arch/ia64/kernel/iosapic.c
+10
-0
arch/ia64/sn/kernel/setup.c
arch/ia64/sn/kernel/setup.c
+0
-7
No files found.
arch/ia64/kernel/iosapic.c
View file @
830cb0bc
...
@@ -648,6 +648,16 @@ void
...
@@ -648,6 +648,16 @@ void
iosapic_enable_intr
(
unsigned
int
vector
)
iosapic_enable_intr
(
unsigned
int
vector
)
{
{
unsigned
int
dest
;
unsigned
int
dest
;
irq_desc_t
*
desc
;
/*
* In the case of a shared interrupt, do not re-route the vector, and
* especially do not mask a running interrupt (startup will not get
* called for a shared interrupt).
*/
desc
=
irq_descp
(
vector
);
if
(
desc
->
action
)
return
;
#ifdef CONFIG_SMP
#ifdef CONFIG_SMP
/*
/*
...
...
arch/ia64/sn/kernel/setup.c
View file @
830cb0bc
...
@@ -361,13 +361,6 @@ sn_init_pdas(char **cmdline_p)
...
@@ -361,13 +361,6 @@ sn_init_pdas(char **cmdline_p)
{
{
cnodeid_t
cnode
;
cnodeid_t
cnode
;
/*
* Make sure that the PDA fits entirely in the same page as the
* cpu_data area.
*/
if
((((
unsigned
long
)
pda
&
(
~
PAGE_MASK
))
+
sizeof
(
pda_t
))
>
PAGE_SIZE
)
panic
(
"overflow of cpu_data page"
);
memset
(
pda
->
cnodeid_to_nasid_table
,
-
1
,
sizeof
(
pda
->
cnodeid_to_nasid_table
));
memset
(
pda
->
cnodeid_to_nasid_table
,
-
1
,
sizeof
(
pda
->
cnodeid_to_nasid_table
));
for
(
cnode
=
0
;
cnode
<
numnodes
;
cnode
++
)
for
(
cnode
=
0
;
cnode
<
numnodes
;
cnode
++
)
pda
->
cnodeid_to_nasid_table
[
cnode
]
=
pxm_to_nasid
(
nid_to_pxm_map
[
cnode
]);
pda
->
cnodeid_to_nasid_table
[
cnode
]
=
pxm_to_nasid
(
nid_to_pxm_map
[
cnode
]);
...
...
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