From eaeaebb421ca63750ad00a4fddc93560f7477410 Mon Sep 17 00:00:00 2001 From: Mike Fleetwood Date: Fri, 14 Sep 2012 15:54:39 +0100 Subject: [PATCH] Remove old FIXME comment from reiserfs::read_label() Traced debugreiserfs on a 10GiB reiserfs file system which was 100% full full with nearly 900,000 files. It read exactly three 4KiB blocks from different offsets and the program never took more than 0.1 seconds. --- src/reiserfs.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/reiserfs.cc b/src/reiserfs.cc index a6d5c5b2..5e54f50d 100644 --- a/src/reiserfs.cc +++ b/src/reiserfs.cc @@ -107,7 +107,6 @@ void reiserfs::set_used_sectors( Partition & partition ) void reiserfs::read_label( Partition & partition ) { - //FIXME: i think running debugreiserfs takes a long time on filled file systems, test for this... if ( ! Utils::execute_command( "debugreiserfs " + partition .get_path(), output, error, true ) ) { partition .label = Utils::regexp_label( output, "^label:[\t ]*(.*)$" ) ;