The USN_RECORD structure, used in NTFS file systems for tracking changes, might sometimes report larger extents of file modifications than what actually occurred. Here are simpler reasons:
Sparse Files: If your file has empty or zeroed regions, the system may mistakenly report changes there.
Fragmentation: If your file is scattered in different parts of the disk, changes from those parts might get combined into one report.
Non-contiguous Changes: Changes happening in separate places within the file may be grouped together, causing larger reported extents.
Metadata Changes: Changes to file details (like attributes or security info) can contribute to larger reported extents.
Overhead from Applications: Some programs may interact with the file system in ways that make the reported extents bigger.
To investigate, check for file fragmentation, sparse file regions, and how the file is being modified