On Thu, Apr 18, 2024 at 10:36:11AM -0400, Theodore Ts'o wrote: > > I had recently taken this patch, but I've since found that it was > causing a number of problems. These have been fixed on the next > branch, but if you have your own build of e2fsprogs, you might want to > make sure you have these two fixups. The second is especially > important if you plan to use debugfs's set_super_value command on > customer file systems.... One more commit that's needed to fix post-2038 timestamps: commit 8b37e89f850610d51b7550ac34b8912b3000ced5 Author: Theodore Ts'o <tytso@xxxxxxx> Date: Thu Apr 18 14:16:55 2024 -0400 debugfs: fix printing post-2038 inode timestamps Debugfs's stat command called ext2fs_inode_xtime_get() with a struct inode * instead of a struct large_inode *. As a result, printing inode timestamps will be incorrect if the time value is larger than 2**32. Fixes: ca8bc9240a00 ("Add post-2038 timestamp support to e2fsprogs") Signed-off-by: Theodore Ts'o <tytso@xxxxxxx> - Ted