ESOS-Lab / MOST

Reference: LEE Kisung and WON Youjip "Smart layers and dumb result: Io characterization of an android-based smartphone" In EMSOFT 2012: In Proc. of International Conference on Embedded Software (Oct.7-12 2012). Tampere, Finland
http://www.esos.hanyang.ac.kr/files/publication/conferences/international/Smart_Layers_and_Dumb_Result.pdf
24 stars 16 forks source link

F2FS #3

Open wuqiulin1995 opened 6 years ago

wuqiulin1995 commented 6 years ago

Hi Can the MOST be used in the F2FS file system?

joontaekoh commented 6 years ago

Yes, it is possible because it is work on block i/o layer. However, you should take care about Node or Metadata. All nodes in F2FS filesystem are managed as a file, and Metadata is also. Node have its host inode in its footer. So, you can distinguish the host file of node. In the case of Metadata, you can distinguish what is the kind of metadata whether it is super block, NAT, SIT, or SSA using block address. Thank you.

wuqiulin1995 commented 6 years ago

Thanks for your reply~