Module Name: src
Committed By: uebayasi
Date: Thu Apr 29 02:37:09 UTC 2010
Modified Files:
src/sys/uvm [uebayasi-xip]: uvm_page.c
Log Message:
Fold long lines.
To generate a diff of this commit:
cvs rdiff -u -r1.153.2.30 -r1.153.2.31 src/sys/uvm/uvm_page.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/uvm/uvm_page.c
diff -u src/sys/uvm/uvm_page.c:1.153.2.30 src/sys/uvm/uvm_page.c:1.153.2.31
--- src/sys/uvm/uvm_page.c:1.153.2.30 Thu Apr 29 02:35:14 2010
+++ src/sys/uvm/uvm_page.c Thu Apr 29 02:37:09 2010
@@ -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
}