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
7df446e7
Commit
7df446e7
authored
Nov 09, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
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
;
...
...
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
);
}
...
...
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
...
...
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