- 论坛徽章:
- 0
|
你的程序编译好多警告,最严重的是test_init应该是int返回。
我在arm920t平台linux-3.2.0内核上运行结果是
# insmod kobj.ko
this is a test
# rmmod kobj
waring:test exit
我对kobj不太了解,不知结果是否是你想要的
我改后的代码如下(编译没有警),
#include <linux/device.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/string.h>
#include <linux/sysfs.h>
#include <linux/stat.h>
//set limit to the parament
#include<asm/uaccess.h>
char *on="mem";
char *off="disk";
char *p=NULL;
//set end
ssize_t test_show(struct kobject *kobj,struct attribute *attr,char *buf)
{
printk("kernel part:show\n");
printk("attribute name:%s",attr->name);
sprintf(buf,"current status is %s\n",p);
return 40;
}
ssize_t test_store(struct kobject *kobj,struct attribute *attr,const char *buf,size_t count)
{
char c[5];
int i=0;
printk("kernel part:store\n");
for(;i<strlen(buf)-1;i++)
{
c[i]=buf[i];
}
c[i]='\0';
if(strcmp(c,on)==0)
{
printk("write effctive:%s",buf);
p=on;
return count;
}
else if(strcmp(c,off)==0)
{
printk("write effctive:%s",buf);
p=off;
return count;
}
else
{
printk("valid data%s,%d\n",c,strlen(c));
// return ERROR;
}
return 0;
}
void release(struct kobject *kobj)
{
printk("relase part \n");
}
struct kobject kobj;
struct sysfs_ops op=
{
.show=test_show,
.store=test_store,
};
struct attribute attr=
{
.name="fuck_meng",
.mode=0777,
// .owner=THIS_MODULE,
};
static struct attribute *def[]=
{
&attr,NULL,
};
struct kobj_type ktype=
{
.release=release,
.sysfs_ops=&op,
.default_attrs=def,
};//this is the core structure
static int __init test_init(void)
{
p=on;
kobject_init_and_add(&kobj,&ktype,NULL,"test");
printk("this is a test\n");
return 0;
}
static void __exit test_exit(void)
{
printk("waring:test exit\n");
kobject_del(&kobj);
// printk("waring:test exit\n");
}
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("TEST");
module_init(test_init);
module_exit(test_exit);
|
|