gpt4 book ai didi

c - 如何重置驱动程序读取函数:myread(struct file *file, char __user *buf,size_t len, loff_t *fops)中的缓冲区(初始化为零)?

转载 作者:行者123 更新时间:2023-11-30 14:21:38 27 4
gpt4 key购买 nike

在将字符串 c 复制到 buf 之前,我需要将此用户空间缓冲区设置为零。如何将缓冲区初始化为零。

static ssize_t myread(struct file *file,char __user *buf,size_t len, loff_t  *fops)
{
printk(KERN_INFO"My read with length %d \n",len);
len = strlen(c);

if(copy_to_user(buf,c,len) != 0)
return -EFAULT;
else if (*fops > 0)
return 0;
else
*fops += len;
return len;
}

最佳答案

使用内存集

请参阅手册页了解用法,它将设置一个常量字节到一系列连续的 buf 地址

关于c - 如何重置驱动程序读取函数:myread(struct file *file, char __user *buf,size_t len, loff_t *fops)中的缓冲区(初始化为零)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14590182/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com