chore: remove tracking inode change time (#10579)

Signed-off-by: Jakob Borg <jakob@kastelo.net>
This commit is contained in:
Jakob Borg
2026-03-22 20:24:03 -07:00
committed by GitHub
parent 3b05ba2a8f
commit b39c56f82d
15 changed files with 266 additions and 414 deletions
+2 -4
View File
@@ -131,10 +131,6 @@ message FileInfo {
// format. It is used in the old database format.
bytes version_hash = 1001;
// The time when the inode was last changed (i.e., permissions, xattrs
// etc changed). This is host-local, not sent over the wire.
int64 inode_change_ns = 1002;
// The size of the data appended to the encrypted file on disk. This is
// host-local, not sent over the wire.
int32 encryption_trailer_size = 1003;
@@ -142,6 +138,8 @@ message FileInfo {
bool deleted = 6;
bool invalid = 7;
bool no_permissions = 8;
reserved 1002; // previously inode change time
}
enum FileInfoType {
+2 -4
View File
@@ -35,10 +35,6 @@ message FileInfoTruncated {
// format.
bytes version_hash = 1001;
// The time when the inode was last changed (i.e., permissions, xattrs
// etc changed). This is host-local, not sent over the wire.
int64 inode_change_ns = 1002;
// The size of the data appended to the encrypted file on disk. This is
// host-local, not sent over the wire.
int32 encryption_trailer_size = 1003;
@@ -46,6 +42,8 @@ message FileInfoTruncated {
bool deleted = 6;
bool invalid = 7;
bool no_permissions = 8;
reserved 1002; // previously inode change time
}