Now i'm modifying an block device driver module.
To test the module I made, I'm trying to read/write disk drive by sector number using system call in linux like this,
syscall_read_sector( device, sector_number, sector_count);
syscall_write_sector( device, sector_number, data, sector_count);
Are there any linux system calls like this??
environment : ubuntu 10.04 32bit, kernel version 2.6.32-38
open(),seek()andread()... – hochl Jun 9 '12 at 9:53