Module Name:    src
Committed By:   martin
Date:           Wed May 14 13:46:19 UTC 2014

Modified Files:
        src/sys/ufs/ufs: inode.h

Log Message:
Make filehandles on UFS based filesystems use proper 64bit inodes.
32bit restriction noticed by Taylor R Campbell.


To generate a diff of this commit:
cvs rdiff -u -r1.66 -r1.67 src/sys/ufs/ufs/inode.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/ufs/ufs/inode.h
diff -u src/sys/ufs/ufs/inode.h:1.66 src/sys/ufs/ufs/inode.h:1.67
--- src/sys/ufs/ufs/inode.h:1.66	Thu May  8 08:21:53 2014
+++ src/sys/ufs/ufs/inode.h	Wed May 14 13:46:19 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: inode.h,v 1.66 2014/05/08 08:21:53 hannken Exp $	*/
+/*	$NetBSD: inode.h,v 1.67 2014/05/14 13:46:19 martin Exp $	*/
 
 /*
  * Copyright (c) 1982, 1989, 1993
@@ -295,7 +295,7 @@ struct indir {
 struct ufid {
 	u_int16_t ufid_len;	/* Length of structure. */
 	u_int16_t ufid_pad;	/* Force 32-bit alignment. */
-	u_int32_t ufid_ino;	/* File number (ino). */
+	ino_t     ufid_ino;	/* File number (ino). */
 	int32_t	  ufid_gen;	/* Generation number. */
 };
 #endif /* _KERNEL */

Reply via email to