時(shí)間:2015-06-28 00:00:00 來(lái)源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評(píng)論(1)
1、使用新的入口
必須包含
module_init(your_init_func);
module_exit(your_exit_func);
老版本:int init_module(void);
void cleanup_module(voi);
2.4中兩種都可以用,對(duì)如后面的入口函數(shù)不必要顯示包含任何頭文件。
2、GPL
MODULE_LICENSE("Dual BSD/GPL");
老版本:MODULE_LICENSE("GPL");
3、模塊參數(shù)
必須顯式包含
module_param(name, type, perm);
module_param_named(name, value, type, perm);
參數(shù)定義
module_param_string(name, string, len, perm);
module_param_array(name, type, num, perm);
老版本:MODULE_Parm(variable,type);
MODULE_Parm_DESC(variable,type);
4、模塊別名
MODULE_ALIAS("alias-name");
這是新增的,在老版本中需在/etc/modules.conf配置,現(xiàn)在在代碼中就可以實(shí)現(xiàn)。
5、模塊計(jì)數(shù)
int try_module_get(&module);
module_put();
老版本:MOD_INC_USE_COUNT 和 MOD_DEC_USE_COUNT
6、符號(hào)導(dǎo)出
只有顯示的導(dǎo)出符號(hào)才能被其他模塊使用,默認(rèn)不導(dǎo)出所有的符號(hào),不必使用EXPORT_NO_SYMBOLS
老板本:默認(rèn)導(dǎo)出所有的符號(hào),除非使用EXPORT_NO_SYMBOLS
7、內(nèi)核版本檢查
需要在多個(gè)文件中包含時(shí),不必定義__NO_VERSION__
老版本:在多個(gè)文件中包含時(shí),除在主文件外的其他文件中必須定義__NO_VERSION__,防止版本重復(fù)定義。
8、設(shè)備號(hào)
kdev_t被廢除不可用,新的dev_t拓展到了32位,12位主設(shè)備號(hào),20位次設(shè)備號(hào)。
unsigned int iminor(struct inode *inode);
unsigned int imajor(struct inode *inode);
老版本:8位主設(shè)備號(hào),8位次設(shè)備號(hào)
int MAJOR(kdev_t dev);
int MINOR(kdev_t dev);
9、內(nèi)存分配頭文件變更
所有的內(nèi)存分配函數(shù)包含在頭文件,而原來(lái)的不存在
老版本:內(nèi)存分配函數(shù)包含在頭文件
10、結(jié)構(gòu)體的初試化
gcc開(kāi)始采用ANSI C的struct結(jié)構(gòu)體的初始化形式:
static struct some_structure = {
.field1 = value,
.field2 = value,
...
};
老版本:非標(biāo)準(zhǔn)的初試化形式
static struct some_structure = {
field1: value,
field2: value,
...
};
11、用戶(hù)模式幫助器
int call_usermodehelper(char *path, char **argv, char **envp,
int wait);
新增wait參數(shù)
12、request_module()
request_module("foo-device-%d", number);
老版本:
char module_name[32];
printf(module_name, "foo-device-%d", number);
request_module(module_name);
13、dev_t引發(fā)的字符設(shè)備的變化
1、取主次設(shè)備號(hào)為
unsigned iminor(struct inode *inode);
unsigned imajor(struct inode *inode);
2、老的register_chrdev()用法沒(méi)變,保持向后兼容,但不能訪問(wèn)設(shè)備號(hào)大于256的設(shè)備。
3、新的接口為
a)注冊(cè)字符設(shè)備范圍
int register_chrdev_region(dev_t from, unsigned count, char *name);
b)動(dòng)態(tài)申請(qǐng)主設(shè)備號(hào)
int alloc_chrdev_region(dev_t *dev, unsigned baseminor, unsigned count, char *name);
看了這兩個(gè)函數(shù)郁悶吧^_^!怎么和file_operations結(jié)構(gòu)聯(lián)系起來(lái)啊?別急!
c)包含 ,利用struct cdev和file_operations連接
struct cdev *cdev_alloc(void);
void cdev_init(struct cdev *cdev, struct file_operations *fops);
int cdev_add(struct cdev *cdev, dev_t dev, unsigned count);
?。ǚ謩e為,申請(qǐng)cdev結(jié)構(gòu),和fops連接,將設(shè)備加入到系統(tǒng)中!好復(fù)雜?。。?/p>
d)void cdev_del(struct cdev *cdev);
只有在cdev_add執(zhí)行成功才可運(yùn)行。
e)輔助函數(shù)
kobject_put(&cdev->kobj);
struct kobject *cdev_get(struct cdev *cdev);
void cdev_put(struct cdev *cdev);
這一部分變化和新增的/sys/dev有一定的關(guān)聯(lián)。
14、新增對(duì)/proc的訪問(wèn)操作
以前的/proc中只能得到string, seq_file操作能得到如long等多種數(shù)據(jù)。
相關(guān)函數(shù):
static struct seq_operations 必須實(shí)現(xiàn)這個(gè)類(lèi)似file_operations得數(shù)據(jù)中得各個(gè)成員函數(shù)。
seq_printf();
int seq_putc(struct seq_file *m, char c);
int seq_puts(struct seq_file *m, const char *s);
int seq_escape(struct seq_file *m, const char *s, const char *esc);
int seq_path(struct seq_file *m, struct vfsmount *mnt,
struct dentry *dentry, char *esc);
seq_open(file, &ct_seq_ops);
等等
15、底層內(nèi)存分配
1、頭文件改為
2、分配標(biāo)志GFP_BUFFER被取消,取而代之的是GFP_NOIO 和 GFP_NOFS
3、新增__GFP_REPEAT,__GFP_NOFAIL,__GFP_NORETRY分配標(biāo)志
4、頁(yè)面分配函數(shù)alloc_pages(),get_free_page()被包含在中
5、對(duì)NUMA系統(tǒng)新增了幾個(gè)函數(shù):
a) struct page *alloc_pages_node(int node_id,
unsigned int gfp_mask,
unsigned int order);
b) void free_hot_page(struct page *page);
c) void free_cold_page(struct page *page);
6、新增Memory pools
mempool_t *mempool_create(int min_nr,
mempool_alloc_t *alloc_fn,
mempool_free_t *free_fn,
void *pool_data);
void *mempool_alloc(mempool_t *pool, int gfp_mask);
void mempool_free(void *element, mempool_t *pool);
int mempool_resize(mempool_t *pool, int new_min_nr, int gfp_mask);
16、per-CPU變量
get_cpu_var();
put_cpu_var();
void *alloc_percpu(type);
void free_percpu(const void *);
per_cpu_ptr(void *ptr, int cpu)
get_cpu_ptr(ptr)
put_cpu_ptr(ptr)
老版本使用
DEFINE_PER_CPU(type, name);
EXPORT_PER_CPU_SYMBOL(name);
EXPORT_PER_CPU_SYMBOL_GPL(name);
DECLARE_PER_CPU(type, name);
DEFINE_PER_CPU(int, mypcint);
2.6內(nèi)核采用了可剝奪得調(diào)度方式這些宏都不安全。
17、內(nèi)核時(shí)間變化
1、現(xiàn)在的各個(gè)平臺(tái)的HZ為
Alpha: 1024/1200; arm: 100/128/200/1000; CRIS: 100; i386: 1000; IA-64: 1024; M68K: 100; M68K-nommu: 50-1000; MIPS: 100/128/1000; MIPS64: 100; PA-RISC: 100/1000; PowerPC32: 100; PowerPC64: 1000; S/390: 100; SPARC32: 100; SPARC64: 100; SuperH: 100/1000; UML: 100; v850: 24-100; x86-64: 1000.
2、由于HZ的變化,原來(lái)的jiffies計(jì)數(shù)器很快就溢出了,引入了新的計(jì)數(shù)器jiffies_64
3、#i nclude
u64 my_time = get_jiffies_64();
4、新的時(shí)間結(jié)構(gòu)增加了納秒成員變量
struct timespec current_kernel_time(void);
5、他的timer函數(shù)沒(méi)變,新增
void add_timer_on(struct timer_list *timer, int cpu);
6、新增納秒級(jí)延時(shí)函數(shù)
ndelay();
7、POSIX clocks 參考kernel/posix-timers.c
18、工作隊(duì)列(workqueue)
1、任務(wù)隊(duì)列(task queue )接口函數(shù)都被取消,新增了workqueue接口函數(shù)
struct workqueue_struct *create_workqueue(const char *name);
DECLARE_WORK(name, void (*function)(void *), void *data);
INIT_WORK(struct work_struct *work,
void (*function)(void *), void *data);
PREPARE_WORK(struct work_struct *work,
void (*function)(void *), void *data);
2、申明struct work_struct結(jié)構(gòu)
int queue_work(struct workqueue_struct *queue,
struct work_struct *work);
int queue_delayed_work(struct workqueue_struct *queue,
struct work_struct *work,
unsigned long delay);
int cancel_delayed_work(struct work_struct *work);
void flush_workqueue(struct workqueue_struct *queue);
void destroy_workqueue(struct workqueue_struct *queue);
int schedule_work(struct work_struct *work);
int sched
關(guān)鍵詞標(biāo)簽:僵尸進(jìn)程
相關(guān)閱讀
熱門(mén)文章 火絨安全軟件開(kāi)啟懸浮窗的方法-怎么限制和設(shè)置軟件網(wǎng)速 火絨安全軟件怎么攔截廣告-火絨設(shè)置廣告攔截的方法 網(wǎng)絡(luò)安全管理軟件-PCHunter使用教程 騰訊QQ密碼防盜十大建議
人氣排行 火絨安全軟件開(kāi)啟懸浮窗的方法-怎么限制和設(shè)置軟件網(wǎng)速 火絨安全軟件怎么攔截廣告-火絨設(shè)置廣告攔截的方法 網(wǎng)絡(luò)安全管理軟件-PCHunter使用教程 xp系統(tǒng)關(guān)閉445端口方法_ 教你如何關(guān)閉xp系統(tǒng)445端口 什么是IPS(入侵防御系統(tǒng)) 企業(yè)網(wǎng)絡(luò)安全事件應(yīng)急響應(yīng)方案 ARP協(xié)議的反向和代理 Windows Server 2008利用組策略的安全設(shè)置