我写了一个简单的程序,并在 ext4 和 xfs 上运行该程序。
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
int
main(int argc, char *argv[])
{
int fd;
char *file_name = argv[1];
struct stat buf;
fd = open (file_name, O_RDWR|O_CREAT);
if (fd == -1) {
printf ("Error: %s\n", strerror(errno));
return -1;
}
write (fd, "hello", sizeof ("hello"));
fstat (fd, &buf);
printf ("st_blocks: %lu\n", buf.st_blocks);
stat (file_name, &buf);
printf ("st_blocks: %lu\n", buf.st_blocks);
close (fd);
stat (file_name, &buf);
printf ("st_blocks: %lu\n", buf.st_blocks);
return 0;
}
ext4 上的输出:
st_blocks:8 st_blocks:8 st_blocks:8
xfs 上的输出:
st_blocks:128 st_blocks:128 st_blocks:8
然后我探索了 xfs 并找到了一个在运行 mkfs.xfs 时更改范围大小的选项。
示例:mkfs.xfs -r extsize=4096 /dev/sda1
但我仍然在 XFS 上得到相同的输出。谁能提供有关如何更改 st_blocks 的更多见解。提前致谢。