Source-Changes-HG archive

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

[src/uebayasi-xip]: src/sys/uvm Fold long lines.



details:   https://anonhg.NetBSD.org/src/rev/d9918aebb44e
branches:  uebayasi-xip
changeset: 751701:d9918aebb44e
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Thu Apr 29 02:37:09 2010 +0000

description:
Fold long lines.

diffstat:

 sys/uvm/uvm_page.c |  13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diffs (44 lines):

diff -r 08ed0c36b698 -r d9918aebb44e sys/uvm/uvm_page.c
--- a/sys/uvm/uvm_page.c        Thu Apr 29 02:35:14 2010 +0000
+++ b/sys/uvm/uvm_page.c        Thu Apr 29 02:37:09 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_page.c,v 1.153.2.30 2010/04/29 02:35:14 uebayasi Exp $     */
+/*     $NetBSD: uvm_page.c,v 1.153.2.31 2010/04/29 02:37:09 uebayasi Exp $     */
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -71,7 +71,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.153.2.30 2010/04/29 02:35:14 uebayasi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.153.2.31 2010/04/29 02:37:09 uebayasi Exp $");
 
 #include "opt_ddb.h"
 #include "opt_uvmhist.h"
@@ -797,7 +797,8 @@
                seg->endpg = NULL;
                seg->free_list = free_list;     /* XXX */
        } else {
-               panic("uvm_page_physload: tried to add RAM after uvm_page_init");
+               panic("uvm_page_physload: "
+                   "tried to add RAM after uvm_page_init");
        }
        vm_nphysmem++;
        return seg;
@@ -895,11 +896,13 @@
        int lcv;
 
        for (lcv = 0; lcv < VM_PHYSSEG_MAX; lcv++) {
-               SIMPLEQ_INSERT_TAIL(&vm_physmem_freelist, &vm_physmem_store[lcv], list);
+               SIMPLEQ_INSERT_TAIL(&vm_physmem_freelist,
+                   &vm_physmem_store[lcv], list);
        }
 #ifdef DEVICE_PAGE
        for (lcv = 0; lcv < VM_PHYSSEG_MAX; lcv++) {
-               SIMPLEQ_INSERT_TAIL(&vm_physdev_freelist, &vm_physdev_store[lcv], list);
+               SIMPLEQ_INSERT_TAIL(&vm_physdev_freelist,
+                   &vm_physdev_store[lcv], list);
        }
 #endif
 }



Home | Main Index | Thread Index | Old Index