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
6408db29
Commit
6408db29
authored
Jul 24, 2009
by
Thomas Gleixner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mips: Prepare decoupling page-fault logic from preempt-count
Signed-off-by:
Thomas Gleixner
<
tglx@linutronix.de
>
parent
9cc0ea6b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
arch/mips/mm/fault.c
arch/mips/mm/fault.c
+1
-1
arch/mips/mm/highmem.c
arch/mips/mm/highmem.c
+4
-1
No files found.
arch/mips/mm/fault.c
View file @
6408db29
...
...
@@ -69,7 +69,7 @@ asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long write,
* If we're in an interrupt or have no user
* context, we must not take the fault..
*/
if
(
in_atomic
()
||
!
mm
)
if
(
in_atomic
()
||
!
mm
||
current
->
pagefault_disabled
)
goto
bad_area_nosemaphore
;
down_read
(
&
mm
->
mmap_sem
);
...
...
arch/mips/mm/highmem.c
View file @
6408db29
...
...
@@ -45,7 +45,7 @@ void *__kmap_atomic(struct page *page, enum km_type type)
enum
fixed_addresses
idx
;
unsigned
long
vaddr
;
/* even !CONFIG_PREEMPT needs this, for in_atomic in do_page_fault */
preempt_disable
();
pagefault_disable
();
if
(
!
PageHighMem
(
page
))
return
page_address
(
page
);
...
...
@@ -71,6 +71,7 @@ void __kunmap_atomic(void *kvaddr, enum km_type type)
if
(
vaddr
<
FIXADDR_START
)
{
// FIXME
pagefault_enable
();
preempt_enable
();
return
;
}
...
...
@@ -85,6 +86,7 @@ void __kunmap_atomic(void *kvaddr, enum km_type type)
#endif
pagefault_enable
();
preempt_enable
();
}
EXPORT_SYMBOL
(
__kunmap_atomic
);
...
...
@@ -97,6 +99,7 @@ void *kmap_atomic_pfn(unsigned long pfn, enum km_type type)
enum
fixed_addresses
idx
;
unsigned
long
vaddr
;
preempt_disable
();
pagefault_disable
();
debug_kmap_atomic
(
type
);
...
...
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