git: 0a301f33306c - main - makefs cd9660: Populate creation time stamps in RockRidge extensions

From: John Baldwin <jhb_at_FreeBSD.org>
Date: Tue, 23 Jun 2026 15:51:54 UTC
The branch main has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=0a301f33306c07e629a2423827238aaef85f5d68

commit 0a301f33306c07e629a2423827238aaef85f5d68
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2026-06-23 15:51:43 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2026-06-23 15:51:43 +0000

    makefs cd9660: Populate creation time stamps in RockRidge extensions
    
    Differential Revision:  https://reviews.freebsd.org/D57527
---
 usr.sbin/makefs/cd9660/iso9660_rrip.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/usr.sbin/makefs/cd9660/iso9660_rrip.c b/usr.sbin/makefs/cd9660/iso9660_rrip.c
index 31c6e38a96fe..ee84407e1344 100644
--- a/usr.sbin/makefs/cd9660/iso9660_rrip.c
+++ b/usr.sbin/makefs/cd9660/iso9660_rrip.c
@@ -740,24 +740,29 @@ cd9660node_rrip_nm(struct ISO_SUSP_ATTRIBUTES *p, cd9660node *file_node)
 int
 cd9660node_rrip_tf(struct ISO_SUSP_ATTRIBUTES *p, fsnode *_node)
 {
-	p->attr.rr_entry.TF.flags[0] = TF_MODIFY | TF_ACCESS | TF_ATTRIBUTES;
+	p->attr.rr_entry.TF.flags[0] = TF_CREATION | TF_MODIFY | TF_ACCESS |
+	    TF_ATTRIBUTES;
 	p->attr.rr_entry.TF.h.length[0] = 5;
 	p->attr.rr_entry.TF.h.version[0] = 1;
 
 	/*
-	 * Need to add creation time, backup time,
+	 * Need to add backup time,
 	 * expiration time, and effective time.
 	 */
 
 	cd9660_time_915(p->attr.rr_entry.TF.timestamp,
-		_node->inode->st.st_mtime);
+		_node->inode->st.st_birthtime);
 	p->attr.rr_entry.TF.h.length[0] += 7;
 
 	cd9660_time_915(p->attr.rr_entry.TF.timestamp + 7,
-		_node->inode->st.st_atime);
+		_node->inode->st.st_mtime);
 	p->attr.rr_entry.TF.h.length[0] += 7;
 
 	cd9660_time_915(p->attr.rr_entry.TF.timestamp + 14,
+		_node->inode->st.st_atime);
+	p->attr.rr_entry.TF.h.length[0] += 7;
+
+	cd9660_time_915(p->attr.rr_entry.TF.timestamp + 21,
 		_node->inode->st.st_ctime);
 	p->attr.rr_entry.TF.h.length[0] += 7;
 	return 1;