Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/uebayasi-xip]: src/sys/uvm Cosmetic.



details:   https://anonhg.NetBSD.org/src/rev/7bf93841f738
branches:  uebayasi-xip
changeset: 751748:7bf93841f738
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Thu Jul 22 07:55:22 2010 +0000

description:
Cosmetic.

diffstat:

 sys/uvm/uvm_page.c |  30 ++++++++++++------------------
 1 files changed, 12 insertions(+), 18 deletions(-)

diffs (58 lines):

diff -r 142a025ed5c2 -r 7bf93841f738 sys/uvm/uvm_page.c
--- a/sys/uvm/uvm_page.c        Thu Jul 22 07:49:45 2010 +0000
+++ b/sys/uvm/uvm_page.c        Thu Jul 22 07:55:22 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_page.c,v 1.153.2.46 2010/07/22 07:49:45 uebayasi Exp $     */
+/*     $NetBSD: uvm_page.c,v 1.153.2.47 2010/07/22 07:55:22 uebayasi Exp $     */
 
 /*
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -97,7 +97,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.153.2.46 2010/07/22 07:49:45 uebayasi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.153.2.47 2010/07/22 07:55:22 uebayasi Exp $");
 
 #include "opt_ddb.h"
 #include "opt_uvmhist.h"
@@ -194,6 +194,16 @@
 
 static void uvm_pageinsert(struct uvm_object *, struct vm_page *);
 static void uvm_pageremove(struct uvm_object *, struct vm_page *);
+static struct vm_physseg *uvm_page_physload_common(
+    struct vm_physseg_freelist * const, struct vm_physseg **, int,
+    const paddr_t, const paddr_t);
+static void uvm_page_physunload_common(struct vm_physseg_freelist *,
+    struct vm_physseg **, struct vm_physseg *);
+static void uvm_page_physseg_init(void);
+static struct vm_physseg * uvm_physseg_insert(struct vm_physseg_freelist *,
+    struct vm_physseg **, int, const paddr_t, const paddr_t);
+static void uvm_physseg_remove(struct vm_physseg_freelist *,
+    struct vm_physseg **, struct vm_physseg *);
 
 /*
  * per-object tree of pages
@@ -772,22 +782,6 @@
  * => we are limited to VM_PHYSSEG_MAX physical memory segments
  */
 
-static struct vm_physseg *
-uvm_page_physload_common(struct vm_physseg_freelist * const,
-    struct vm_physseg **, int,
-    const paddr_t, const paddr_t);
-static void
-uvm_page_physunload_common(struct vm_physseg_freelist *,
-    struct vm_physseg **, struct vm_physseg *);
-static void
-uvm_page_physseg_init(void);
-static struct vm_physseg *
-uvm_physseg_insert(struct vm_physseg_freelist *, struct vm_physseg **, int,
-    const paddr_t, const paddr_t);
-static void
-uvm_physseg_remove(struct vm_physseg_freelist *, struct vm_physseg **,
-    struct vm_physseg *);
-
 void *
 uvm_page_physload(paddr_t start, paddr_t end, paddr_t avail_start,
     paddr_t avail_end, int free_list)



Home | Main Index | Thread Index | Old Index