resume_offset
커널 명령줄에 사용해야 하는 BTRFS에 스왑 파일이 있습니다 .
올바른 물리적 오프셋을 계산하는 방법은 무엇입니까?
filefrag
작동하지 않습니다.
btrfs_map_physical.c작동하지 않습니다.
답변1
다음은 파티션 시작 부분에서 시작 오프셋을 계산하는 C 프로그램입니다.일부Btrfs 파일 시스템의 파일. Btrfs에는 이를 수행할 수 있는 안정적인 방법이 없는 것 같습니다.
#include <unistd.h>
#include <linux/fs.h>
#include <stdlib.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include <linux/fiemap.h>
int main(int argc, char **argv)
{
char buffer[sizeof (struct fiemap) + sizeof (struct fiemap_extent)];
struct fiemap *map = (struct fiemap *)buffer;
map->fm_start = 0;
map->fm_length = 4096;
map->fm_flags = FIEMAP_FLAG_SYNC;
map->fm_extent_count = 1; /* If you change this, you'll need to enlarge `buffer´. */
map->fm_reserved = 0;
int fd;
if (argc < 2) {
fprintf(stderr, "Usage %s filename\n", argv[0]);
return 1;
}
fd = open(argv[1], O_RDONLY);
if (fd < 0) {
perror("Error opening file");
return 1;
}
int block = 0;
int ret = ioctl(fd, FS_IOC_FIEMAP, map);
if (ret < 0) {
perror("ioctl");
close(fd);
return 1;
}
close(fd);
printf("Number of extents returned: %ld\n", map->fm_mapped_extents);
printf("File %s starts at byte offset %lu\n", argv[1], map->fm_extents[0].fe_physical);
return 0;
}