Source-Changes-HG archive

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

[src/trunk]: src/sys/uvm Drop trailing spaces.



details:   https://anonhg.NetBSD.org/src/rev/8b22f9309ba3
branches:  trunk
changeset: 559803:8b22f9309ba3
user:      junyoung <junyoung%NetBSD.org@localhost>
date:      Wed Mar 24 07:47:32 2004 +0000

description:
Drop trailing spaces.

diffstat:

 sys/uvm/uvm_km.c     |   8 ++++----
 sys/uvm/uvm_map.c    |  14 +++++++-------
 sys/uvm/uvm_mmap.c   |   6 +++---
 sys/uvm/uvm_pglist.c |   6 +++---
 4 files changed, 17 insertions(+), 17 deletions(-)

diffs (147 lines):

diff -r 354fefc4f6e1 -r 8b22f9309ba3 sys/uvm/uvm_km.c
--- a/sys/uvm/uvm_km.c  Wed Mar 24 07:45:23 2004 +0000
+++ b/sys/uvm/uvm_km.c  Wed Mar 24 07:47:32 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_km.c,v 1.68 2004/02/10 01:30:49 matt Exp $ */
+/*     $NetBSD: uvm_km.c,v 1.69 2004/03/24 07:47:32 junyoung Exp $     */
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -134,7 +134,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_km.c,v 1.68 2004/02/10 01:30:49 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_km.c,v 1.69 2004/03/24 07:47:32 junyoung Exp $");
 
 #include "opt_uvmhist.h"
 
@@ -472,9 +472,9 @@
                offset += PAGE_SIZE;
                loopsize -= PAGE_SIZE;
        }
-       
+
                pmap_update(pmap_kernel());
-        
+
        UVMHIST_LOG(maphist,"<- done (kva=0x%x)", kva,0,0,0);
        return(kva);
 }
diff -r 354fefc4f6e1 -r 8b22f9309ba3 sys/uvm/uvm_map.c
--- a/sys/uvm/uvm_map.c Wed Mar 24 07:45:23 2004 +0000
+++ b/sys/uvm/uvm_map.c Wed Mar 24 07:47:32 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_map.c,v 1.163 2004/03/17 23:58:12 mycroft Exp $    */
+/*     $NetBSD: uvm_map.c,v 1.164 2004/03/24 07:47:33 junyoung Exp $   */
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -71,7 +71,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_map.c,v 1.163 2004/03/17 23:58:12 mycroft Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_map.c,v 1.164 2004/03/24 07:47:33 junyoung Exp $");
 
 #include "opt_ddb.h"
 #include "opt_uvmhist.h"
@@ -219,7 +219,7 @@
                return (-1);
        else if (a->start > b->start)
                return (1);
-       
+
        return (0);
 }
 
@@ -1512,7 +1512,7 @@
        }
 
        if (tmp != NULL && tmp->start < hint && hint < tmp->next->start) {
-               /* 
+               /*
                 * Check if the entry that we found satifies the
                 * space requirement
                 */
@@ -1555,7 +1555,7 @@
        }
        if (prev->ownspace >= length)
                goto listsearch;
-       
+
        if (topdown)
                tmp = RB_LEFT(prev, rb_entry);
        else
@@ -1577,7 +1577,7 @@
                else
                        tmp = RB_RIGHT(tmp, rb_entry);
        }
-       
+
        if (topdown) {
                KASSERT(orig_hint >= tmp->next->start - length ||
                    tmp->next->start - length > tmp->next->start);
@@ -1595,7 +1595,7 @@
                goto wraparound;
        }
 
-       /* 
+       /*
         * The tree fails to find an entry because of offset or alignment
         * restrictions.  Search the list instead.
         */
diff -r 354fefc4f6e1 -r 8b22f9309ba3 sys/uvm/uvm_mmap.c
--- a/sys/uvm/uvm_mmap.c        Wed Mar 24 07:45:23 2004 +0000
+++ b/sys/uvm/uvm_mmap.c        Wed Mar 24 07:47:32 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_mmap.c,v 1.81 2004/02/14 16:40:22 dsl Exp $        */
+/*     $NetBSD: uvm_mmap.c,v 1.82 2004/03/24 07:47:33 junyoung Exp $   */
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -51,7 +51,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_mmap.c,v 1.81 2004/02/14 16:40:22 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_mmap.c,v 1.82 2004/03/24 07:47:33 junyoung Exp $");
 
 #include "opt_compat_netbsd.h"
 
@@ -339,7 +339,7 @@
        /*
         * if we're going to wire the mapping, restrict it to superuser.
         */
-       
+
        if ((flags & MAP_WIRED) != 0 &&
            (error = suser(p->p_ucred, &p->p_acflag)) != 0)
                return (error);
diff -r 354fefc4f6e1 -r 8b22f9309ba3 sys/uvm/uvm_pglist.c
--- a/sys/uvm/uvm_pglist.c      Wed Mar 24 07:45:23 2004 +0000
+++ b/sys/uvm/uvm_pglist.c      Wed Mar 24 07:47:32 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_pglist.c,v 1.30 2003/11/03 03:58:28 yamt Exp $     */
+/*     $NetBSD: uvm_pglist.c,v 1.31 2004/03/24 07:47:33 junyoung Exp $ */
 
 /*-
  * Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_pglist.c,v 1.30 2003/11/03 03:58:28 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_pglist.c,v 1.31 2004/03/24 07:47:33 junyoung Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -187,7 +187,7 @@
                if (vm_physseg_find(try + num - 1, &cidx) != ps - vm_physmem)
                        panic("pgalloc contig: botch3");
                if (cidx != try - ps->start + num - 1)
-                       panic("pgalloc contig: botch4");                
+                       panic("pgalloc contig: botch4");
 #endif
                tryidx = try - ps->start;
                end = tryidx + num;



Home | Main Index | Thread Index | Old Index