Details
-
Technical task
-
Resolution: Fixed
-
Blocker
-
Lustre 2.5.0
-
10028
Description
HSM release in not preserving block count as reported by stat()
# cd /mnt/lustre # dd if=/dev/zero of=Antoshka bs=1M count=10 10+0 records in 10+0 records out 10485760 bytes (10 MB) copied, 0.0740321 s, 142 MB/s # stat Antoshka File: `Antoshka' Size: 10485760 Blocks: 20480 IO Block: 4194304 regular file Device: 2c54f966h/743766374d Inode: 144115205255725060 Links: 1 Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2013-08-30 10:13:48.000000000 -0500 Modify: 2013-08-30 10:13:48.000000000 -0500 Change: 2013-08-30 10:13:48.000000000 -0500 # lfs hsm_archive Antoshka # lfs hsm_release Antoshka # stat Antoshka File: `Antoshka' Size: 10485760 Blocks: 0 IO Block: 4194304 regular file Device: 2c54f966h/743766374d Inode: 144115205255725060 Links: 1 Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2013-08-30 10:13:48.000000000 -0500 Modify: 2013-08-30 10:13:48.000000000 -0500 Change: 2013-08-30 10:13:48.000000000 -0500
I had intended to fix this with LU-3811 but it will require some work in the MD* attr_set patch.
If you're thinking (philosophically) hmm, well maybe it should report a block count of 0 here then you're just wrong.
Hello Aurelien,
Seems everybody "agree" with st_blocks to be Null for released files. This is the reason ticket resolution has been set as "won't fix".
Concerning change in FIEMAP, this can be tracked as a new ticket (or still this one), but with lower priority.
BTW, do we know what answer to FIEMAP do provide DMF and/or GHI ??
Seems to me that it is not a frozen interface, because when googling I found that a FIEMAP_EXTENT_SECONDARY flag exists (to indicate that extent data are on HSM) in some implementations that may fit our needs here, but then is it used/tested by the coreutils and other tools ?
But anyway, I wrote a 1st patch attempt that returns a single extent with (FIEMAP_EXTENT_DELALLOC | FIEMAP_EXTENT_UNKNOWN | FIEMAP_EXTENT_LAST). It is http://review.whamcloud.com/7584.