- 论坛徽章:
- 0
|
好的
- ssize_t proc_lock_write( struct file *filp, const char *buff,
- unsigned long len, void *data )
- {
- printk("And the (int)*buff is %d and the (int)*(buff+1) is %d\n",(int)*buff,(int)*(buff+1));
- if(*buff!='1'&&*buff!='0')
- return len;
- if((int)*(buff+1)!=10)
- return len;
- i_lock=(int)*buff-(int)'0';
- printk("Here is proc_lock_write and the lock is %d\n",i_lock);//其中i_lock是一个全局变量为1是lock,为0是unlock,这之前的代码是为了过滤掉错误的输入,即只能输入0,1才可以
- struct super_block *tmp;
- tmp= list_entry(&myramfs_fs_type.fs_supers, struct super_block, s_instances);
- struct dentry * m_d=tmp->s_root;
- printk("The root name is %d\n",m_d->d_mounted);
- return len;
- }
复制代码 |
|