系统相关
首页 > 系统相关> > linux – 如何确定btrfs上的文件是否为copy-on-write?

linux – 如何确定btrfs上的文件是否为copy-on-write?

作者:互联网

我知道cp有一个–reflink选项来控制完整拷贝与拷贝写入“拷贝”.

在btrfs上,我可以使用ls(或其他一些命令)来查明文件是否与另一个文件共享(在写入时复制中)一些存储?

编辑:@StéphaneChazelas将我指向filefrag,但这对我来说失败了:

root@void:/tmp/mount# mount | tail -1
/tmp/back on /tmp/mount type btrfs (rw,relatime,space_cache)
root@void:/tmp/mount# df -h | tail -1
/dev/loop0       32M   13M   20M  38% /tmp/mount
root@void:/tmp/mount# ls -lh
total 8.0M
-rw-r--r-- 1 root root 8.0M Jan 19 08:43 one
root@void:/tmp/mount# cp --reflink=always one two
root@void:/tmp/mount# sync
root@void:/tmp/mount# ls -lh
total 16M
-rw-r--r-- 1 root root 8.0M Jan 19 08:43 one
-rw-r--r-- 1 root root 8.0M Jan 19 08:45 two
root@void:/tmp/mount# df -h | tail -1
/dev/loop0       32M   13M   20M  38% /tmp/mount
root@void:/tmp/mount# filefrag -kvx one 
Filesystem type is: 9123683e
File size of one is 8388608 (8192 blocks of 1024 bytes)
FIEMAP failed with unknown flags 2
one: FIBMAP unsupported
root@void:/tmp/mount# uname -a
Linux void 4.1.7+ #817 PREEMPT Sat Sep 19 15:25:36 BST 2015 armv6l GNU/Linux

解决方法:

我不知道如何通过ls命令找到它.但如果你真的想要它,你可以使用btrfs-progs / btrfs-debug-tree.

使用reflink = always,文件将共享一个公共数据块.这个公共数据块(也称范围)的refs大于1.

>首先,您需要找到文件一和二的objectid

#./btrfs-debug-tree  /dev/xvdc
(Check under FS_TREE)
  <snip>
    item 8 key (256 DIR_INDEX 4) itemoff 15842 itemsize 33
        location key (259 INODE_ITEM 0) type FILE
        namelen 3 datalen 0 name: one
    item 9 key (256 DIR_INDEX 5) itemoff 15809 itemsize 33
        location key (260 INODE_ITEM 0) type FILE
        namelen 3 datalen 0 name: two
  </snip>

从上面我们可以看到它的259(一)和260(两).

>现在找到它的参考.从范围树.下面的命令将找到两个文件之间共享的数据块.

# ./btrfs-debug-tree  /dev/xvdc | grep -A2 "refs 2"
        extent refs 2 gen 9 flags DATA
        extent data backref root 5 objectid 260 offset 0 count 1
        extent data backref root 5 objectid 259 offset 0 count 1

额外奖励:创建另一个参考:

# cp --reflink=always one three

验证refcount增加1.

# ./btrfs-debug-tree   /dev/xvdc | grep -A3 "refs 3"
        extent refs 3 gen 9 flags DATA
        extent data backref root 5 objectid 260 offset 0 count 1
        extent data backref root 5 objectid 261 offset 0 count 1
        extent data backref root 5 objectid 259 offset 0 count 1

这里数据块在三个文件之间共享,这些文件由objectid 259,260,261指向.

标签:linux,coreutils,btrfs
来源: https://codeday.me/bug/20190810/1637578.html