1. 커널 소스를 써야 한다. (최소한 드라이버 모듈)
2. 아래와 같이 File operation만 치환하려고 했는데,
    i_fop가 const로 정의되어 있어서 (linux/fs.h ln642) 에러만 난다.
    code) filp->f_dentry->d_inode->i_fop->llseek = my_llseek;
3. 결국 Block device driver 형태로 만드는 수 밖에 없는데,
    시간을 더 쓸 수가 없어서 이쯤에서 pending. 다음 기회에.
Posted by 배트
,