- 论坛徽章:
- 0
|
各位大神,我用2.6.32的内核仿照LDD的块设备驱动程序例程写了一个自己的块设备驱动,在/dev/下能看到相应的块设备文件,我写了一个简单的测试程序,结果是打开块设备文件成功,写块设备文件成功,可是读块设备文件就失败了,strace显示:read(3, ;就这样一直停住,由于整个文件系统层次太多,又没有太多经验,对问题产生的原因琢磨不透,望各位大神指点迷津!queue队列的函数如下
static void myblock_queue( struct request_queue *q )
{
struct request *req;
struct bio_vec *vctt;
struct bio *bios;
unsigned short i;
while( (req = blk_fetch_request(q )) != NULL )
{
if( !blk_fs_request( req ) )
{
printk( KERN_EMERG "this is the file information request, return\n" );
__blk_end_request_cur( req, -1 );
continue;
}
//each bio
__rq_for_each_bio(bios, req )
{
// get the direction
int dir ;
dir = bio_data_dir(bios);
//position
unsigned long sectors = bios->bi_sector;
//each segment
bio_for_each_segment( vctt , bios, i )
{
char *buf;
//get the size, bytes
unsigned long size = bio_cur_bytes( bios );
buf = __bio_kmap_atomic( bios, i, KM_USER0 );
if( dir == 1 ) //write
{
printk( KERN_EMERG "buf = %s\n", buf );
memcpy((myblock.ptr + sectors*512), buf, size );
}
else
{
//read
memcpy( buf, (myblock.ptr + sectors*512), size );
printk( KERN_EMERG "into to the read request\n" );
}
__bio_kunmap_atomic( buf, KM_USER0 );
}
}
__blk_end_request_cur( req, 0 );
}
*((int * )0) = 5; //测试用的,用来产生oop
printk( KERN_EMERG "request has end\n" );
}
|
|