티스토리 뷰
I met this compile error, when I tried to build the old driver of Mediatek mt7612u at this link.
http://www.mediatek.com/en/downloads1/downloads/
like this.
../../os/linux/rt_profile.c: In function ‘RTMPReadParametersHook’: ../../os/linux/rt_profile.c:198:25: error: ‘struct file’ has no member named ‘f_dentry’ fsize = (ULONG)srcf->f_dentry->d_inode->i_size;
Anyway, if you want to just resolve this compile error only, then you can edit the source to resolve this compile error.
The original could be changed
#ifndef OS_ABL_SUPPORT // TODO: need to roll back when convert into OSABL code fsize = (ULONG)srcf->f_dentry->d_inode->i_size; if (buf_size < (fsize + 1)) buf_size = fsize + 1; #endif /* OS_ABL_SUPPORT */
#ifndef OS_ABL_SUPPORT // TODO: need to roll back when convert into OSABL code #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,19,0)) fsize = (ULONG)srcf->f_path.dentry->d_inode->i_size; #else fsize = (ULONG)srcf->f_dentry->d_inode->i_size; #endif if (buf_size < (fsize + 1)) buf_size = fsize + 1; #endif /* OS_ABL_SUPPORT */
fs.h header file in kernel 3.18.0, f_dentry is in the struct file.
http://lxr.free-electrons.com/source/include/linux/fs.h?v=3.18#L792
fs.h header file in kernel 3.19.0, f_dentry was gone in the struct file.
http://lxr.free-electrons.com/source/include/linux/fs.h?v=3.19#L810
'simple hints' 카테고리의 다른 글
Macbook Pro non-Retina에서 외장 DVD 인식 (0) | 2017.02.11 |
---|---|
"TS Full SI" and "TS Optional SI" (0) | 2016.11.28 |
plugin installation on grails (0) | 2016.11.09 |
do {...} while(0) 문장의 사용과 회피 (0) | 2016.07.04 |
eth0 - dhcp에 대해 간과하기 쉬운 것 (0) | 2015.07.24 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 왜 -1을 줘 놓고 그 코드 그대로 썼냐?
- Laser
- 받아준다
- grails
- Samsung
- driver
- new plugin
- printer
- compile error
- #define
- gerrit commit
- raspberry pi
- C/C++
- RDK
- const
- installation
- Cups
- mt7612u
- enum
- f_dentry
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
글 보관함