Displaying 1 result from an estimated 1 matches for "di_uuid".
Did you mean:
  dd_uuid
  
2015 Dec 15
8
[PATCH] xfs: Add support for v3 directories
...anges */
+    uint64_t		di_lsn;		 /* flush sequence */
+    uint64_t		di_flags2;	 /* more random flags */
+    uint8_t		di_pad2[16];
+
+    /* fields only written to during inode creation */
+    xfs_timestamp_t	di_crtime;	 /* time created */
+    uint64_t		di_ino;		 /* inode number */
+    uuid_t		di_uuid;	 /* UUID of the filesystem */
+} __attribute__((__packed__)) xfs_dinode_t;
 
 /*
  * Inode size for given fs.
@@ -359,23 +373,41 @@ typedef struct xfs_dinode {
         (XFS_BTREE_LBLOCK_LEN - sizeof(xfs_bmdr_block_t))
 
 /*
+ * Size of the core inode on disk.  Version 1 and 2 inodes have
+ * the...