Hi all, for reasons unknown to me xfsdump has been using O_DIRECT for files on the RT subvolume since day 1. But on 4k file system this causes writes to fail due to alignment problem, which shows up in xfstests xfs/060. This removes the O_DIRET flag and treats RT files like files on the data device and thus fixes the test failure. Changes since v1: - also remove the dio alignment code and fix xfs/059 in addition to xfs/060