relan / exfat

Free exFAT file system implementation
GNU General Public License v2.0
779 stars 176 forks source link

exfat/io: move exfat_generic_pwrite/pread to node.c from io.c #175

Open Donny9 opened 2 years ago

Donny9 commented 2 years ago

Because all apis(exfat_open/close/write/read) are related to "struct exfat_dev" in io.c, and exfat_generic_pwrite/pread are related to struct exfat_node, so move them to node.c more appropriate.

It makes the fs easier to port to other systems.

Change-Id: I5069c3e8f6439073cb7dc43ab2d7b6c80fa47494 Signed-off-by: Jiuzhu Dong dongjiuzhu1@xiaomi.com