dorimanx / exfat-nofuse

Android ARM Linux non-fuse read/write kernel driver for exFat and VFat Android file systems
GNU General Public License v2.0
709 stars 324 forks source link

Add support for Linux 4.7 #85

Closed FireBurn closed 8 years ago

FireBurn commented 8 years ago

This should work once 4.7-rc1 has been cut

dorimanx commented 8 years ago

Thanks!

husky2017 commented 6 years ago

@FireBurn:

elif LINUX_VERSION_CODE < KERNEL_VERSION(4,7,0)

    if (EXFAT_I(inode)->mmu_private < (offset + iov_iter_count(iter)))

else

    if (EXFAT_I(inode)->mmu_private < iov_iter_count(iter))

HI, I want to know the difference between 4.7(4.9) and other, why are you do this? THANK YOU!!!!!!