Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F150020838
D52224.id161144.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D52224.id161144.diff
View Options
diff --git a/sys/vm/vm_extern.h b/sys/vm/vm_extern.h
--- a/sys/vm/vm_extern.h
+++ b/sys/vm/vm_extern.h
@@ -93,7 +93,7 @@
void vm_fault_enable_pagefaults(int save);
int vm_fault_quick_hold_pages(vm_map_t map, vm_offset_t addr, vm_size_t len,
vm_prot_t prot, vm_page_t *ma, int max_count);
-int vm_fault_quick_hold_pages_e(vm_map_t map, vm_offset_t addr, vm_size_t len,
+int vm_fault_hold_pages_e(vm_map_t map, vm_offset_t addr, vm_size_t len,
vm_prot_t prot, vm_page_t *ma, int max_count, int *ppages_count);
int vm_fault_trap(vm_map_t map, vm_offset_t vaddr, vm_prot_t fault_type,
int fault_flags, int *signo, int *ucode);
diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c
--- a/sys/vm/vm_fault.c
+++ b/sys/vm/vm_fault.c
@@ -2012,7 +2012,7 @@
* (more detailed result from vm_fault() is lost)
*/
int
-vm_fault_quick_hold_pages_e(vm_map_t map, vm_offset_t addr, vm_size_t len,
+vm_fault_hold_pages_e(vm_map_t map, vm_offset_t addr, vm_size_t len,
vm_prot_t prot, vm_page_t *ma, int max_count, int *ppages_count)
{
vm_offset_t end, va;
@@ -2108,7 +2108,7 @@
{
int error, pages_count;
- error = vm_fault_quick_hold_pages_e(map, addr, len, prot, ma,
+ error = vm_fault_hold_pages_e(map, addr, len, prot, ma,
max_count, &pages_count);
if (error != 0) {
if (error == EINVAL)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 29, 7:34 PM (11 h, 27 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
30505885
Default Alt Text
D52224.id161144.diff (1 KB)
Attached To
Mode
D52224: vm_fault.c: rename vm_fault_quick_hold_pages_e() to vm_fault_hold_pages_e()
Attached
Detach File
Event Timeline
Log In to Comment