Module Name:    src
Committed By:   reinoud
Date:           Mon Jun 17 20:22:20 UTC 2024

Modified Files:
        src/usr.sbin/makefs: makefs.h

Log Message:
Bump inode number on target FS from 32 bits to 64 bits


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/usr.sbin/makefs/makefs.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.sbin/makefs/makefs.h
diff -u src/usr.sbin/makefs/makefs.h:1.41 src/usr.sbin/makefs/makefs.h:1.42
--- src/usr.sbin/makefs/makefs.h:1.41	Sun Feb 18 16:59:16 2024
+++ src/usr.sbin/makefs/makefs.h	Mon Jun 17 20:22:20 2024
@@ -89,7 +89,7 @@ enum fi_flags {
 };
 
 typedef struct {
-	uint32_t	 ino;		/* inode number used on target fs */
+	uint64_t	 ino;		/* inode number used on target fs */
 	uint32_t	 nlink;		/* number of links to this entry */
 	enum fi_flags	 flags;		/* flags used by fs specific code */
 	struct stat	 st;		/* stat entry */

Reply via email to