You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm unable to compile the source on the system, with it's kernel being 3.10.0. The error appears to be due to exfat_super.c's calling of truncate_pagecache with 3 arguments, while the kernel source file mm.h only has the function with 2 arguments.
/<Path_to_source>/exfat-nofuse/exfat_super.c: In function ‘exfat_write_failed’:
/<Path_to_source>/exfat-nofuse/exfat_super.c:1653:3: error: too many arguments to function ‘truncate_pagecache’
truncate_pagecache(inode, to, i_size_read(inode));
^
In file included from include/linux/pagemap.h:7:0,
from /<Path_to_source>/exfat-nofuse/exfat_super.c:57:
include/linux/mm.h:1236:13: note: declared here
extern void truncate_pagecache(struct inode *inode, loff_t new);
^
make[2]: *** [/<Path_to_source>/exfat-nofuse/exfat_super.o] Error 1
make[1]: *** [module/<Path_to_source>/exfat-nofuse] Error 2
The text was updated successfully, but these errors were encountered:
I'm unable to compile the source on the system, with it's kernel being 3.10.0. The error appears to be due to exfat_super.c's calling of truncate_pagecache with 3 arguments, while the kernel source file mm.h only has the function with 2 arguments.
/<Path_to_source>/exfat-nofuse/exfat_super.c: In function ‘exfat_write_failed’:
/<Path_to_source>/exfat-nofuse/exfat_super.c:1653:3: error: too many arguments to function ‘truncate_pagecache’
truncate_pagecache(inode, to, i_size_read(inode));
^
In file included from include/linux/pagemap.h:7:0,
from /<Path_to_source>/exfat-nofuse/exfat_super.c:57:
include/linux/mm.h:1236:13: note: declared here
extern void truncate_pagecache(struct inode *inode, loff_t new);
^
make[2]: *** [/<Path_to_source>/exfat-nofuse/exfat_super.o] Error 1
make[1]: *** [module/<Path_to_source>/exfat-nofuse] Error 2
The text was updated successfully, but these errors were encountered: