Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Just use open(), seek() and read() ... – hochl Jun 9 '12 at 9:53

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.