Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
OpenBMC Firmware
talos-obmc-linux
Commits
7df446e7
Commit
7df446e7
authored
19 years ago
by
Linus Torvalds
Browse files
Options
Download
Plain Diff
Merge branch 'release' of
git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6
parents
8d3d81cf
6fb93a92
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
arch/ia64/kernel/mca_drv.c
arch/ia64/kernel/mca_drv.c
+2
-1
arch/ia64/sn/pci/pcibr/pcibr_provider.c
arch/ia64/sn/pci/pcibr/pcibr_provider.c
+2
-2
arch/ia64/sn/pci/pcibr/pcibr_reg.c
arch/ia64/sn/pci/pcibr/pcibr_reg.c
+1
-1
No files found.
arch/ia64/kernel/mca_drv.c
View file @
7df446e7
...
...
@@ -88,7 +88,7 @@ mca_page_isolate(unsigned long paddr)
if
(
!
ia64_phys_addr_valid
(
paddr
))
return
ISOLATE_NONE
;
if
(
!
pfn_valid
(
paddr
))
if
(
!
pfn_valid
(
paddr
>>
PAGE_SHIFT
))
return
ISOLATE_NONE
;
/* convert physical address to physical page number */
...
...
@@ -108,6 +108,7 @@ mca_page_isolate(unsigned long paddr)
return
ISOLATE_NG
;
/* add attribute 'Reserved' and register the page */
get_page
(
p
);
SetPageReserved
(
p
);
page_isolate
[
num_page_isolate
++
]
=
p
;
...
...
This diff is collapsed.
Click to expand it.
arch/ia64/sn/pci/pcibr/pcibr_provider.c
View file @
7df446e7
...
...
@@ -212,13 +212,13 @@ void pcibr_target_interrupt(struct sn_irq_info *sn_irq_info)
pdi_pcibus_info
;
/* Disable the device's IRQ */
pcireg_intr_enable_bit_clr
(
pcibus_info
,
bit
);
pcireg_intr_enable_bit_clr
(
pcibus_info
,
(
1
<<
bit
)
)
;
/* Change the device's IRQ */
pcireg_intr_addr_addr_set
(
pcibus_info
,
bit
,
xtalk_addr
);
/* Re-enable the device's IRQ */
pcireg_intr_enable_bit_set
(
pcibus_info
,
bit
);
pcireg_intr_enable_bit_set
(
pcibus_info
,
(
1
<<
bit
)
)
;
pcibr_force_interrupt
(
sn_irq_info
);
}
...
...
This diff is collapsed.
Click to expand it.
arch/ia64/sn/pci/pcibr/pcibr_reg.c
View file @
7df446e7
...
...
@@ -131,7 +131,7 @@ void pcireg_intr_enable_bit_clr(struct pcibus_info *pcibus_info, uint64_t bits)
__sn_clrq_relaxed
(
&
ptr
->
tio
.
cp_int_enable
,
bits
);
break
;
case
PCIBR_BRIDGETYPE_PIC
:
__sn_clrq_relaxed
(
&
ptr
->
pic
.
p_int_enable
,
~
bits
);
__sn_clrq_relaxed
(
&
ptr
->
pic
.
p_int_enable
,
bits
);
break
;
default:
panic
...
...
This diff is collapsed.
Click to expand it.
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