📄 kern_compat.h
字号:
/* kern_compat.h Kernel compatibility header file Copyright (C) 1997-8 David A. Schleef <ds@schleef.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.*//* Portions taken from Don Becker's network device drivers, and modified.*//* The purpose of this file is to make it easy to write modules that will compile correctly for multiple kernel versions. This file can only provide backward compatibility, i.e., write your driver for 2.3.x, include this header file, and theoretically, it will compile and run on 2.0.37. However, some interface changes require superset definitions to allow compilation for all supported kernel versions, so you have to use the interface provided in this file to compile for all kernels. If your driver is written for the 2.2.x interface, define COMPAT_V22 before including this file.*/#ifndef _KERN_COMPAT_H#define _KERN_COMPAT_H#include <linux/version.h>#include <linux/config.h>#include <linux/kdev_t.h>#include <linux/malloc.h>#include <linux/errno.h>#ifndef KERNEL_VERSION#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))#endif#if LINUX_VERSION_CODE < KERNEL_VERSION(2,0,0)#error kernel versions prior to 2.0 not supported#else#if LINUX_VERSION_CODE < KERNEL_VERSION(2,1,0)#define LINUX_V20#else#define LINUX_V22#endif#endif#if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0) /* XXX */#define RDEV_OF_FILE(x) ((x)->f_inode->i_rdev)#else#define RDEV_OF_FILE(x) ((x)->f_dentry->d_inode->i_rdev)#endif#if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0) /* XXX */#define signal_pending(x) (((x)->signal) & (~(x)->blocked))#endif#if LINUX_VERSION_CODE < KERNEL_VERSION(2,1,0)static inline void __process_timeout(unsigned long __data){ struct task_struct * p = (struct task_struct *) __data; p->timeout=0; wake_up_process(p);}static inline long interruptible_sleep_on_timeout(struct wait_queue ** p, long timeout){ struct timer_list timer; unsigned long expires=jiffies+timeout; init_timer(&timer); timer.expires=expires; timer.data=(unsigned long)current; timer.function=__process_timeout; add_timer(&timer); interruptible_sleep_on(p); del_timer(&timer); return jiffies-expires;}#else#define HAVE_INTERRUPTIBLE_SLEEP_ON_TIMEOUT#endif#if LINUX_VERSION_CODE < KERNEL_VERSION(2,1,0)#ifndef __SMP__/* XXX */#define claim_dma_lock() 0#define release_dma_lock(a) #endif#endif#if LINUX_VERSION_CODE < KERNEL_VERSION(2,1,0)#ifndef __alpha__#define ioremap(a,b) \ (((a)<0x100000) ? (void *)((u_long)(a)) : vremap(a,b))#define iounmap(v) \ do { if ((u_long)(v) > 0x100000) vfree(v); } while (0)#endif#endif#if LINUX_VERSION_CODE < 0x20138#define test_and_set_bit(val, addr) set_bit(val, addr)#define le32_to_cpu(val) (val)#define cpu_to_le32(val) (val)#endif#if LINUX_VERSION_CODE <= 0x20139#define net_device_stats enet_statistics#define NETSTATS_VER2#endif#if LINUX_VERSION_CODE < 0x20159#define DEV_FREE_SKB(skb) dev_kfree_skb (skb, FREE_WRITE);#else /* Grrr, unneeded incompatible change. */#define DEV_FREE_SKB(skb) dev_kfree_skb(skb);#endif#ifndef COMPAT_V22#if LINUX_VERSION_CODE < KERNEL_VERSION(2,3,10) /* ? */#define file_atomic_inc(x) ((*(x))++)#else#define file_atomic_inc(x) atomic_inc(x)#endif#endif#endif /* _KERN_COMPAT_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -