Subject: Re: anoncvs issues
To: Feico Dillema <feico@pasta.cs.uit.no>
From: Anders Hjalmarsson <hjalmar@hjalmar.to>
List: current-users
Date: 01/02/2005 14:17:09
> Are things better now? We had some troubles with the cvs version we were
> running and it was upgraded the past few days. The upgrade didn't
> go flawlessly, but now things should be ok again. Please let me know
> if (anon)cvs is still causing you trouble.
>
> Feico.
There still seems to be some problems with the expansion of $NetBSD$
For example sys/uvm/uvm_fault.c:
bigbox% cvs status uvm_fault.c
===================================================================
File: uvm_fault.c Status: Up-to-date
Working revision: 1.89
Repository revision: 1.89 /cvsroot/src/sys/uvm/uvm_fault.c,v
Sticky Tag: (none)
Sticky Date: (none)
Sticky Options: (none)
bigbox% head -1 uvm_fault.c
/* $NetBSD: uvm_fault.c,v 1.88 2004/05/05 11:54:32 yamt Exp $ */
Even stranger the keywords seem to be one step behind:
bigbox% cvs diff -r1.88 uvm_fault.c
Index: uvm_fault.c
===================================================================
RCS file: /cvsroot/src/sys/uvm/uvm_fault.c,v
retrieving revision 1.88
retrieving revision 1.89
diff -r1.88 -r1.89
1c1
< /* $NetBSD: uvm_fault.c,v 1.87 2004/03/24 07:55:01 junyoung Exp $ */
---
> /* $NetBSD: uvm_fault.c,v 1.88 2004/05/05 11:54:32 yamt Exp $ */
42c42
< __KERNEL_RCSID(0, "$NetBSD: uvm_fault.c,v 1.87 2004/03/24 07:55:01 junyoung Exp $");
---
> __KERNEL_RCSID(0, "$NetBSD: uvm_fault.c,v 1.88 2004/05/05 11:54:32 yamt Exp $");
566d565
< paddr_t pa;
803c802
< pmap_extract(ufi.orig_map->pmap, currva, &pa)) {
---
> pmap_extract(ufi.orig_map->pmap, currva, NULL)) {
-hjalmar