- 论坛徽章:
- 0
|
小弟偶在写一个framebuffer驱动,用kmalloc在内核中分配了60k的内存,200*100,24bpp,这是自己设定的模式。然后不论是用我自己的mmap函数还是用framebuffer自带的fb_mmap函数映射到用户空间时,发现映射之后的用户空间地址正确,但是往用户空间的地址里写内容时,却没有结果,也就是我在用户空间写入和打印结果一致,但是却没有结果,用cat /proc/fb0 > xxxfb把结果打印出来却发现kernel内部的值没有发生任何变化,附上偶得mmap的代码。
367 static int xxxfb_mmap(struct fb_info *info, struct file *file,
368 struct vm_area_struct *vma)
369 {
370 unsigned long phys = virt_to_phys((void *)info->fix.smem_start);
371
372 // debug
373 printk("in mmap, physical address is %ld\n", phys);
374 // debug
375 if (io_remap_page_range((struct vm_area_struct *) vma,
376 vma->vm_start, phys,
377 vma->vm_end-vma->vm_start,
378 vma->vm_page_prot))
379 return -EAGAIN;
380 return 0;
381 }
小弟的机子是as4 ,kernel 2.6.9.5。
请各位多多指教!
[ 本帖最后由 riccy 于 2007-5-22 10:24 编辑 ] |
|