免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1758 | 回复: 1
打印 上一主题 下一主题

请教一个内核写文件的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-10-21 09:52 |只看该作者 |倒序浏览
最近在写一段内核里写文件的代码,遇到一些问题。
就是网上找到的最简单的一段内核写文件的代码,修改了一下。
本意是,传入8KB的Buffer,写到文件后文件大小为80KB,内容依次为0x0,0x1。。。0x9。
执行这段代码后,生成的文件只有8KB,内容是0x9,也就是10次都写在文件开始的8KB上了。
在write前后将filp->f_pos和文件大小都打印出来了,确实是按照8KB大小在递增。
网上查了很多资料,也不得要领,llseek什么的也都试过,效果都一样,请有经验的朋友给些意见。先谢谢了。

static void filewrite(char* filename, char* data, u32 data_len)
{
  struct file *filp;
  mm_segment_t fs;
  u32 index = 0;

  filp = filp_open(filename, O_RDWR| O_APPEND| O_CREAT, 0644);
  if(IS_ERR(filp))
  {
      printk("open error...\n");
      return;
  }
  fs=get_fs();
  set_fs(KERNEL_DS);
  
  for(index = 0; index < 10; index++)
  {
    memset(data, index, data_len);
    filp->f_op->write(filp, data, strlen(data),&filp->f_pos);
  }
  set_fs(fs);
  filp_close(filp,NULL);
}

每次write前后打印的f_pos和文件大小:
Oct 21 17:31:20 localhost kernel: filp->f_pos1 0 len 0
Oct 21 17:31:20 localhost kernel: filp->f_pos2 8192 len 8192
Oct 21 17:31:20 localhost kernel: filp->f_pos1 8192 len 8192
Oct 21 17:31:20 localhost kernel: filp->f_pos2 16384 len 16384
Oct 21 17:31:20 localhost kernel: filp->f_pos1 16384 len 16384
Oct 21 17:31:20 localhost kernel: filp->f_pos2 24576 len 24576
Oct 21 17:31:20 localhost kernel: filp->f_pos1 24576 len 24576
Oct 21 17:31:20 localhost kernel: filp->f_pos2 32768 len 32768
Oct 21 17:31:20 localhost kernel: filp->f_pos1 32768 len 32768
Oct 21 17:31:20 localhost kernel: filp->f_pos2 40960 len 40960
Oct 21 17:31:20 localhost kernel: filp->f_pos1 40960 len 40960
Oct 21 17:31:20 localhost kernel: filp->f_pos2 49152 len 49152
Oct 21 17:31:20 localhost kernel: filp->f_pos1 49152 len 49152
Oct 21 17:31:20 localhost kernel: filp->f_pos2 57344 len 57344
Oct 21 17:31:20 localhost kernel: filp->f_pos1 57344 len 57344
Oct 21 17:31:20 localhost kernel: filp->f_pos2 65536 len 65536
Oct 21 17:31:20 localhost kernel: filp->f_pos1 65536 len 65536
Oct 21 17:31:20 localhost kernel: filp->f_pos2 73728 len 73728
Oct 21 17:31:20 localhost kernel: filp->f_pos1 73728 len 73728
Oct 21 17:31:20 localhost kernel: filp->f_pos2 81920 len 81920

论坛徽章:
0
2 [报告]
发表于 2013-10-21 14:24 |只看该作者
我把
    memset(data, index, data_len);
    filp->f_op->write(filp, data, strlen(data),&filp->f_pos);
改成
    memset(data, index, 10);
    filp->f_op->write(filp, data, sizeof(data),&filp->f_pos);

结果:
root@localhost test]# hexdump /home/file1
0000000 0000 0000 0000 0000 0000 0101 0101 0101
0000010 0101 0101 0202 0202 0202 0202 0202 0303
0000020 0303 0303 0303 0303 0404 0404 0404 0404
0000030 0404 0505 0505 0505 0505 0505 0606 0606
0000040 0606 0606 0606 0707 0707 0707 0707 0707
0000050 0808 0808 0808 0808 0808 0909 0909 0909
0000060 0909 0909                              
0000064
[root@localhost test]# du -sh /home/file1
4.0K    /home/file1
大小为4.0K应该是因为分页机制,一页为4.0K

不知道,你要什么效果
linux 驱动群:
163617970
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP