使用ctl_table向内核传递数据

本文介绍如何利用ctl_table结构体在Linux内核中创建/proc/sys下的文件,以此实现对系统参数的读写操作,进行动态配置。
摘要由CSDN通过智能技术生成

在/proc/sys/目录下创建文件

实现参数变更


#include <linux/module.h>

static struct ctl_table_header *ctl_table_test_header;

unsigned int sysctl_test_int;
char sysctl_test_string[256];
static struct ctl_table ctl_table_test[] = {
	{
	 .procname = "test_int",
	 .data = &sysctl_test_int,
	 .maxlen = sizeof(unsigned int),
	 .mode = 0777,
	 .proc_handler = proc_dointvec,
	 },
	{
	 .procname = "test_string",
	 .data = sysctl_test_string,
	 .maxlen = 255,
	 .mode = 0777,
	 .proc_handler = proc_dostring,
	 },
	{}
};

static struct ctl_table ctl_table_test_root[] = {
	{
	 .procname = "test_root",
	 .mode = 0555,
	 .child = ctl_table_test,
	 },
	{}
};

static int __init test_init(void)
{
	ctl_table_test_header = register_sysctl_table(ctl_table_test_root);
	if (!ctl_table_test_header) {
		printk("ctl_table_test_header error\n");
	}
	re
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值