通常我们只会在linux native/app 层 读写文件,但可能有一些非常特别的情况下,我们需要直接
在Kernel 中读写文件信息。
下面给出典型的Code:
static struct file *open_file(char *path,int flag,int mode)
{
struct file *fp;
fp=filp_open(path, flag, mode);
if (!IS_ERR_OR_NULL(fp)) return fp;
else return NULL;
}
static int read_file(struct file *fp,char *buf,int readlen)
{
if (fp->f_op && fp->f_op->read)
return fp->f_op->read(fp,buf,readlen, &fp->f_pos);
else
return -1;
}
static int write_file(struct file *fp,char *buf,int len)
{
if (fp->f_op && fp->f_op->