Module Name: src
Committed By: riz
Date: Wed Jan 25 21:20:51 UTC 2012
Modified Files:
src/sys/coda [netbsd-5]: coda.h
Log Message:
Pull up following revision(s) (requested by gdt in ticket #1716):
sys/coda/coda.h: revision 1.15
Make file_id unsigned so it does not get sign extended when promoted
to a 64bit ino_t.
To generate a diff of this commit:
cvs rdiff -u -r1.14.52.1 -r1.14.52.2 src/sys/coda/coda.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/coda/coda.h
diff -u src/sys/coda/coda.h:1.14.52.1 src/sys/coda/coda.h:1.14.52.2
--- src/sys/coda/coda.h:1.14.52.1 Wed Aug 25 04:17:47 2010
+++ src/sys/coda/coda.h Wed Jan 25 21:20:51 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: coda.h,v 1.14.52.1 2010/08/25 04:17:47 snj Exp $ */
+/* $NetBSD: coda.h,v 1.14.52.2 2012/01/25 21:20:51 riz Exp $ */
/*
@@ -272,7 +272,7 @@ struct coda_vattr {
short va_nlink; /* number of references to file */
uid_t va_uid; /* owner user id */
gid_t va_gid; /* owner group id */
- long va_fileid; /* file id */
+ u_long va_fileid; /* file id */
u_quad_t va_size; /* file size in bytes */
long va_blocksize; /* blocksize preferred for i/o */
struct timespec va_atime; /* time of last access */