lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <8539EF46-5166-47EE-AB26-01ACA68D6DE3@dilger.ca>
Date: Sat, 1 Feb 2025 10:38:17 -0500
From: Andreas Dilger <adilger@...ger.ca>
To: "Artem S. Tashkinov" <aros@....com>
Cc: linux-ext4@...r.kernel.org
Subject: Re: A possible way to reduce free space fragmentation?

It should be possible to run "find $DIR -type f -size -1M | xargs e4defrag" to only defragment files below 1MB (or whatever you consider "small").

However, I don't recall if e4defrag will move a file if the new file has the same number of fragments as the original (presumably both "1") or leave it in place. That would be possible add an option to change. 

Alternately, just run the "find" above to find small files and then "cp $F $F.tmp && mv $F.tmp $F" to rewrite those files into new blocks, and hope mballoc will move them to a better location.

Cheers, Andreas

> On Jan 31, 2025, at 14:02, Artem S. Tashkinov <aros@....com> wrote:
> 
> Hello,
> 
> ext4 has no free space defragmentation and at most you can use e4defrag
> to defragment individual files. I now have a 24GB ext4 filesystem that
> has only 7GB of space occupied however it has small files scattered all
> over it and now bigger files occupy more than one extent and I cannot
> reduce fragmentation to zero. One way to approach that would be to
> shrink the volume and then defragment it but that will involve a ton of
> disk writes and unnecessary tear and wear. Is it possible to modify the
> e4degrag utility to move small defragmented files, so that they were
> placed consecutively instead of being randomly spread all over the disk?
> 
> Regards,
> Artem
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ