sysdep.h
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:21k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * sysdep.h -- centralizing compatibility issues between 2.0, 2.2, 2.4
  3.  * $Id: sysdep.h,v 1.60 2001/07/11 07:24:20 rubini Exp $
  4.  */
  5. #ifndef _SYSDEP_H_
  6. #define _SYSDEP_H_
  7. #ifndef LINUX_VERSION_CODE
  8. #  include <linux/version.h>
  9. #endif
  10. #ifndef KERNEL_VERSION /* pre-2.1.90 didn't have it */
  11. #  define KERNEL_VERSION(vers,rel,seq) ( ((vers)<<16) | ((rel)<<8) | (seq) )
  12. #endif
  13. /* only allow 2.0.x  2.2.y and 2.4.z */
  14. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,0,0) /* not < 2.0 */
  15. #  error "This kernel is too old: not supported by this file"
  16. #endif
  17. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0) /* not > 2.4, by now */
  18. #  error "This kernel is too recent: not supported by this file"
  19. #endif
  20. #if (LINUX_VERSION_CODE & 0xff00) == 1 /* not 2.1 */
  21. #  error "Please don't use linux-2.1, use 2.2 or 2.4 instead"
  22. #endif
  23. #if (LINUX_VERSION_CODE & 0xff00) == 3 /* not 2.3 */
  24. #  error "Please don't use linux-2.3, use 2.4 instead"
  25. #endif
  26. /* remember about the current version */
  27. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,1,0)
  28. #  define LINUX_20
  29. #elif LINUX_VERSION_CODE < KERNEL_VERSION(2,3,0)
  30. #  define LINUX_22
  31. #else
  32. #  define LINUX_24
  33. #endif
  34. /* we can't support versioning in pre-2.4 because we #define some functions */
  35. #if !defined(LINUX_24) && defined(CONFIG_MODVERSIONS)
  36. #  error "This sysdep.h can't support CONFIG_MODVERSIONS"
  37. #  error "and old kernels at the same time."
  38. #  error "Either use 2.4 or avoid using versioning"
  39. #endif
  40. #ifndef LINUX_20 /* include vmalloc.h if this is 2.2/2.4 */
  41. #  ifdef VM_READ /* a typical flag defined by mm.h */
  42. #    include <linux/vmalloc.h>
  43. #  endif
  44. #endif
  45. #include <linux/sched.h>
  46. /* Modularization issues */
  47. #ifdef LINUX_20
  48. #  define __USE_OLD_SYMTAB__
  49. #  define EXPORT_NO_SYMBOLS register_symtab(NULL);
  50. #  define REGISTER_SYMTAB(tab) register_symtab(tab)
  51. #else
  52. #  define REGISTER_SYMTAB(tab) /* nothing */
  53. #endif
  54. #ifdef __USE_OLD_SYMTAB__
  55. #  define __MODULE_STRING(s)         /* nothing */
  56. #  define MODULE_PARM(v,t)           /* nothing */
  57. #  define MODULE_PARM_DESC(v,t)      /* nothing */
  58. #  define MODULE_AUTHOR(n)           /* nothing */
  59. #  define MODULE_DESCRIPTION(d)      /* nothing */
  60. #  define MODULE_SUPPORTED_DEVICE(n) /* nothing */
  61. #endif
  62. /*
  63.  * In version 2.2 (up to 2.2.19, at least), the macro for request_module()
  64.  * when no kmod is there is wrong. It's a "do {} while 0" but it shouldbe int
  65.  */
  66. #ifdef LINUX_22
  67. #  ifndef CONFIG_KMOD
  68. #    undef request_module
  69. #    define request_module(name) -ENOSYS
  70. #  endif
  71. #endif
  72. #ifndef LINUX_20
  73. #  include <linux/init.h>     /* module_init/module_exit */
  74. #endif
  75. #ifndef module_init
  76. #  define module_init(x)        int init_module(void) { return x(); }
  77. #  define module_exit(x)        void cleanup_module(void) { x(); }
  78. #endif
  79. #ifndef SET_MODULE_OWNER
  80. #  define SET_MODULE_OWNER(structure) /* nothing */
  81. #endif
  82. /*
  83.  * "select" changed in 2.1.23. The implementation is twin, but this
  84.  * header is new
  85.  *
  86.  */
  87. #ifdef LINUX_20
  88. #  define __USE_OLD_SELECT__
  89. #else
  90. #  include <linux/poll.h>
  91. #endif
  92. #ifdef LINUX_20
  93. #  define INODE_FROM_F(filp) ((filp)->f_inode)
  94. #else
  95. #  define INODE_FROM_F(filp) ((filp)->f_dentry->d_inode)
  96. #endif
  97. /* Other changes in the fops are solved using wrappers */
  98. /*
  99.  * Wait queues changed with 2.3
  100.  */
  101. #ifndef DECLARE_WAIT_QUEUE_HEAD
  102. #  define DECLARE_WAIT_QUEUE_HEAD(head) struct wait_queue *head = NULL
  103.    typedef  struct wait_queue *wait_queue_head_t;
  104. #  define init_waitqueue_head(head) (*(head)) = NULL
  105. /* offer wake_up_sync as an alias for wake_up */
  106. #  define wake_up_sync(head) wake_up(head)
  107. #  define wake_up_interruptible_sync(head) wake_up_interruptible(head)
  108. /* Pretend we have add_wait_queue_exclusive */
  109. #  define add_wait_queue_exclusive(q,entry) add_wait_queue ((q), (entry))
  110. #endif /* no DECLARE_WAIT_QUEUE_HEAD */
  111. /*
  112.  * Define wait_event for 2.0 kernels.  (This ripped off directly from
  113.  * the 2.2.18 sched.h)
  114.  */
  115. #ifdef LINUX_20
  116. #define __wait_event(wq, condition) 
  117. do {
  118. struct wait_queue __wait;
  119. __wait.task = current;
  120. add_wait_queue(&wq, &__wait);
  121. for (;;) {
  122. current->state = TASK_UNINTERRUPTIBLE;
  123. mb();
  124. if (condition)
  125. break;
  126. schedule();
  127. }
  128. current->state = TASK_RUNNING;
  129. remove_wait_queue(&wq, &__wait);
  130. } while (0)
  131. #define wait_event(wq, condition) 
  132. do {
  133. if (condition)  
  134. break;
  135. __wait_event(wq, condition);
  136. } while (0)
  137. #define __wait_event_interruptible(wq, condition, ret)
  138. do {
  139. struct wait_queue __wait;
  140. __wait.task = current;
  141. add_wait_queue(&wq, &__wait);
  142. for (;;) {
  143. current->state = TASK_INTERRUPTIBLE;
  144. mb();
  145. if (condition)
  146. break;
  147. if (!signal_pending(current)) {
  148. schedule();
  149. continue;
  150. }
  151. ret = -ERESTARTSYS;
  152. break;
  153. }
  154. current->state = TASK_RUNNING;
  155. remove_wait_queue(&wq, &__wait);
  156. } while (0)
  157. #define wait_event_interruptible(wq, condition)
  158. ({
  159. int __ret = 0;
  160. if (!(condition))
  161. __wait_event_interruptible(wq, condition, __ret);
  162. __ret;
  163. })
  164. #endif
  165. /*
  166.  * 2.3 added tasklets
  167.  */
  168. #ifdef LINUX_24
  169. #  define HAVE_TASKLETS
  170. #endif
  171. /* FIXME: implement the other versions of wake_up etc */
  172. /*
  173.  * access to user space: use the 2.2 functions,
  174.  * and implement them as macros for 2.0
  175.  */
  176. #ifdef LINUX_20
  177. #  include <asm/segment.h>
  178. #  define access_ok(t,a,sz)           (verify_area((t),(void *) (a),(sz)) ? 0 : 1)
  179. #  define verify_area_20              verify_area
  180. #  define   copy_to_user(t,f,n)         (memcpy_tofs((t), (f), (n)), 0)
  181. #  define copy_from_user(t,f,n)       (memcpy_fromfs((t), (f), (n)), 0)
  182. #  define   __copy_to_user(t,f,n)       copy_to_user((t), (f), (n))
  183. #  define __copy_from_user(t,f,n)     copy_from_user((t), (f), (n))
  184. #  define PUT_USER(val,add)           (put_user((val),(add)), 0)
  185. #  define __PUT_USER(val,add)         PUT_USER((val),(add))
  186. #  define GET_USER(dest,add)          ((dest)=get_user((add)), 0)
  187. #  define __GET_USER(dest,add)        GET_USER((dest),(add))
  188. #else
  189. #  include <asm/uaccess.h>
  190. #  include <asm/io.h>
  191. #  define verify_area_20(t,a,sz) (0) /* == success */
  192. #  define   PUT_USER   put_user
  193. #  define __PUT_USER __put_user
  194. #  define   GET_USER   get_user
  195. #  define __GET_USER __get_user
  196. #endif
  197. /*
  198.  * Allocation issues
  199.  */
  200. #ifdef GFP_USER /* only if mm.h has been included */
  201. #  ifdef LINUX_20
  202. #    define __GFP_DMA GFP_DMA /* 2.0 didn't have the leading __ */
  203. #  endif
  204. #  ifndef LINUX_24
  205. #    define __GFP_HIGHMEM  0  /* was not there */
  206. #    define GFP_HIGHUSER   0   /* idem */
  207. #  endif
  208. #  ifdef LINUX_20
  209. #    define __get_free_pages(a,b) __get_free_pages((a),(b),0)
  210. #  endif
  211. #  ifndef LINUX_24
  212. #    define get_zeroed_page get_free_page
  213. #  endif
  214. #endif
  215. /* ioremap */
  216. #if defined(LINUX_20) && defined(_LINUX_MM_H)
  217. #  define ioremap_nocache ioremap
  218. #  ifndef __i386__
  219.    /* This simple approach works for non-PC platforms. */
  220. #    define ioremap vremap
  221. #    define iounmap vfree
  222. #  else /* the PC has <expletive> ISA; 2.2 and 2.4 remap it, 2.0 needs not */
  223. extern inline void *ioremap(unsigned long phys_addr, unsigned long size)
  224. {
  225.     if (phys_addr >= 0xA0000 && phys_addr + size <= 0x100000)
  226.         return (void *)phys_addr;
  227.     return vremap(phys_addr, size);
  228. }
  229. extern inline void iounmap(void *addr)
  230. {
  231.     if ((unsigned long)addr >= 0xA0000
  232.             && (unsigned long)addr < 0x100000)
  233.         return;
  234.     vfree(addr);
  235. }
  236. #  endif
  237. #endif
  238. /* Also, define check_mem_region etc */
  239. #ifndef LINUX_24
  240. #  define check_mem_region(a,b)     0 /* success */
  241. #  define request_mem_region(a,b,c) /* nothing */
  242. #  define release_mem_region(a,b)   /* nothing */
  243. #endif
  244. /* implement capable() for 2.0 */
  245. #ifdef LINUX_20
  246. #  define capable(anything)  suser()
  247. #endif
  248. /* The use_count of exec_domain and binfmt changed in 2.1.23 */
  249. #ifdef LINUX_20
  250. #  define INCRCOUNT(p)  ((p)->module ? __MOD_INC_USE_COUNT((p)->module) : 0)
  251. #  define DECRCOUNT(p)  ((p)->module ? __MOD_DEC_USE_COUNT((p)->module) : 0)
  252. #  define CURRCOUNT(p)  ((p)->module && (p)->module->usecount)
  253. #else
  254. #  define INCRCOUNT(p)  ((p)->use_count++)
  255. #  define DECRCOUNT(p)  ((p)->use_count--)
  256. #  define CURRCOUNT(p)  ((p)->use_count)
  257. #endif
  258. /*
  259.  * /proc has changed a lot across the versions...
  260.  */
  261. #ifdef LINUX_20
  262. #  define USE_PROC_REGISTER
  263. #endif
  264. /*
  265.  * 2.2 didn't have create_proc_{read|info}_entry yet.
  266.  * And it looks like there are no other "interesting" entry point, as
  267.  * the rest is somehow esotique (mknod, symlink, ...)
  268.  */
  269. #ifdef LINUX_22
  270. #  ifdef PROC_SUPER_MAGIC  /* Only if procfs is being used */
  271. extern inline struct proc_dir_entry *create_proc_read_entry(const char *name,
  272.                           mode_t mode, struct proc_dir_entry *base, 
  273.                           read_proc_t *read_proc, void * data)
  274. {
  275.     struct proc_dir_entry *res=create_proc_entry(name,mode,base);
  276.     if (res) {
  277.         res->read_proc=read_proc;
  278.         res->data=data;
  279.     }
  280.     return res;
  281. }
  282. #    ifndef create_proc_info_entry /* added in 2.2.18 */
  283. typedef int (get_info_t)(char *, char **, off_t, int, int);
  284. extern inline struct proc_dir_entry *create_proc_info_entry(const char *name,
  285.         mode_t mode, struct proc_dir_entry *base, get_info_t *get_info)
  286. {
  287.         struct proc_dir_entry *res=create_proc_entry(name,mode,base);
  288.         if (res) res->get_info=get_info;
  289.         return res;
  290. }
  291. #    endif  /* no create_proc_info_entry */
  292. #  endif
  293. #endif
  294. #ifdef LINUX_20
  295. #  define test_and_set_bit(nr,addr)  test_bit((nr),(addr))
  296. #  define test_and_clear_bit(nr,addr) clear_bit((nr),(addr))
  297. #  define test_and_change_bit(nr,addr) change_bit((nr),(addr))
  298. #endif
  299. /* 2.0 had no read and write memory barriers, and 2.2 lacks the
  300.    set_ functions */
  301. #ifndef LINUX_24
  302. #  ifdef LINUX_20
  303. #    define wmb() mb() /* this is a big penalty on non-reordering platfs */
  304. #    define rmb() mb() /* this is a big penalty on non-reordering platfs */
  305. #  endif /* LINUX_20 */
  306. #define set_mb() do { var = value; mb(); } while (0)
  307. #define set_wmb() do { var = value; wmb(); } while (0)
  308. #endif /* ! LINUX_24 */
  309. /* 2.1.30 removed these functions. Let's define them, just in case */
  310. #ifndef LINUX_20
  311. #  define queue_task_irq      queue_task
  312. #  define queue_task_irq_off  queue_task
  313. #endif
  314. /* 2.1.10 and 2.1.43 introduced new functions. They are worth using */
  315. #ifdef LINUX_20
  316. #  include <asm/byteorder.h>
  317. #  ifdef __LITTLE_ENDIAN
  318. #    define cpu_to_le16(x) (x)
  319. #    define cpu_to_le32(x) (x)
  320. #    define cpu_to_be16(x) htons((x))
  321. #    define cpu_to_be32(x) htonl((x))
  322. #  else
  323. #    define cpu_to_be16(x) (x)
  324. #    define cpu_to_be32(x) (x)
  325.      extern inline __u16 cpu_to_le16(__u16 x) { return (x<<8) | (x>>8);}
  326.      extern inline __u32 cpu_to_le32(__u32 x) { return (x>>24) |
  327.              ((x>>8)&0xff00) | ((x<<8)&0xff0000) | (x<<24);}
  328. #  endif
  329. #  define le16_to_cpu(x)  cpu_to_le16(x)
  330. #  define le32_to_cpu(x)  cpu_to_le32(x)
  331. #  define be16_to_cpu(x)  cpu_to_be16(x)
  332. #  define be32_to_cpu(x)  cpu_to_be32(x)
  333. #  define cpu_to_le16p(addr) (cpu_to_le16(*(addr)))
  334. #  define cpu_to_le32p(addr) (cpu_to_le32(*(addr)))
  335. #  define cpu_to_be16p(addr) (cpu_to_be16(*(addr)))
  336. #  define cpu_to_be32p(addr) (cpu_to_be32(*(addr)))
  337.    extern inline void cpu_to_le16s(__u16 *a) {*a = cpu_to_le16(*a);}
  338.    extern inline void cpu_to_le32s(__u16 *a) {*a = cpu_to_le32(*a);}
  339.    extern inline void cpu_to_be16s(__u16 *a) {*a = cpu_to_be16(*a);}
  340.    extern inline void cpu_to_be32s(__u16 *a) {*a = cpu_to_be32(*a);}
  341. #  define le16_to_cpup(x) cpu_to_le16p(x)
  342. #  define le32_to_cpup(x) cpu_to_le32p(x)
  343. #  define be16_to_cpup(x) cpu_to_be16p(x)
  344. #  define be32_to_cpup(x) cpu_to_be32p(x)
  345. #  define le16_to_cpus(x) cpu_to_le16s(x)
  346. #  define le32_to_cpus(x) cpu_to_le32s(x)
  347. #  define be16_to_cpus(x) cpu_to_be16s(x)
  348. #  define be32_to_cpus(x) cpu_to_be32s(x)
  349. #endif
  350. #ifdef LINUX_20
  351. #  define __USE_OLD_REBUILD_HEADER__
  352. #endif
  353. /*
  354.  * 2.0 didn't include sema_init, so we make our own - but only if it
  355.  * looks like semaphore.h got included.
  356.  */
  357. #ifdef LINUX_20
  358. #  ifdef MUTEX_LOCKED   /* Only if semaphore.h included */
  359.      extern inline void sema_init (struct semaphore *sem, int val)
  360.      {
  361.          sem->count = val;
  362.          sem->waking = sem->lock = 0;
  363.          sem->wait = NULL;
  364.      }
  365. #  endif
  366. #endif /* LINUX_20 */
  367. /*
  368.  * In 2.0, there is no real need for spinlocks, and they weren't really
  369.  * implemented anyway.
  370.  *
  371.  * XXX the _irqsave variant should be defined eventually to do the
  372.  * right thing.
  373.  */
  374. #ifdef LINUX_20
  375. typedef int spinlock_t;
  376. #  define spin_lock(lock)
  377. #  define spin_unlock(lock)
  378. #  define spin_lock_init(lock)
  379. #  define spin_lock_irqsave(lock,flags) do { 
  380.         save_flags(flags); cli(); } while (0);
  381. #  define spin_unlock_irqrestore(lock,flags) restore_flags(flags);
  382. #endif
  383. /*
  384.  * 2.1 stuffed the "flush" method into the middle of the file_operations
  385.  * structure.  The FOP_NO_FLUSH symbol is for drivers that do not implement
  386.  * flush (most of them), it can be inserted in initializers for all 2.x
  387.  * kernel versions.
  388.  */
  389. #ifdef LINUX_20
  390. #  define FOP_NO_FLUSH   /* nothing */
  391. #  define TAG_LLSEEK    lseek
  392. #  define TAG_POLL      select
  393. #else
  394. #  define FOP_NO_FLUSH  NULL,
  395. #  define TAG_LLSEEK    llseek
  396. #  define TAG_POLL      poll
  397. #endif
  398. /*
  399.  * fasync changed in 2.2.
  400.  */
  401. #ifdef LINUX_20
  402. /*  typedef struct inode *fasync_file; */
  403. #  define fasync_file struct inode *
  404. #else
  405.   typedef int fasync_file;
  406. #endif
  407. /* kill_fasync had less arguments, and a different indirection in the first */
  408. #ifndef LINUX_24
  409. #  define kill_fasync(ptrptr,sig,band)  kill_fasync(*(ptrptr),(sig))
  410. #endif
  411. /* other things that are virtualized: define the new functions for the old k */
  412. #ifdef LINUX_20
  413. #  define in_interrupt() (intr_count!=0)
  414. #  define mdelay(x) udelay((x)*1000)
  415. #  define signal_pending(current)  ((current)->signal & ~(current)->blocked)
  416. #endif
  417. #ifdef LINUX_PCI_H /* only if PCI stuff is being used */
  418. #  ifdef LINUX_20
  419. #    include "pci-compat.h" /* a whole set of replacement functions */
  420. #  else
  421. #    define  pci_release_device(d) /* placeholder, used in 2.0 to free stuff */
  422. #  endif
  423. #endif
  424. /*
  425.  * Some task state stuff
  426.  */
  427. #ifndef set_current_state
  428. #  define set_current_state(s) current->state = (s);
  429. #endif
  430. #ifdef LINUX_20
  431. extern inline void schedule_timeout(int timeout)
  432. {
  433.     current->timeout = jiffies + timeout;
  434.     current->state = TASK_INTERRUPTIBLE;
  435.     schedule();
  436.     current->timeout = 0;
  437. }
  438. extern inline long sleep_on_timeout(wait_queue_head_t *q, signed long timeout)
  439. {
  440.     signed long early = 0;
  441.         
  442.     current->timeout = jiffies + timeout;
  443.     sleep_on (q);
  444.     if (current->timeout > 0) {
  445.         early = current->timeout - jiffies;
  446.         current->timeout = 0;
  447.     }
  448.     return early;
  449. }
  450. extern inline long interruptible_sleep_on_timeout(wait_queue_head_t *q,
  451.                 signed long timeout)
  452. {
  453.     signed long early = 0;
  454.         
  455.     current->timeout = jiffies + timeout;
  456.     interruptible_sleep_on (q);
  457.     if (current->timeout > 0) {
  458.         early = current->timeout - jiffies;
  459.         current->timeout = 0;
  460.     }
  461.     return early;
  462. }
  463. #endif /* LINUX_20 */
  464. /*
  465.  * Schedule_task was a late 2.4 addition.
  466.  */
  467. #ifndef LINUX_24
  468. extern inline int schedule_task(struct tq_struct *task)
  469. {
  470.         queue_task(task, &tq_scheduler);
  471.         return 1;
  472. }
  473. #endif
  474. /*
  475.  * Timing issues
  476.  */
  477. #ifdef LINUX_20
  478. #  define get_fast_time do_gettimeofday
  479. #endif
  480. #ifdef _LINUX_DELAY_H /* only if linux/delay.h is included */
  481. #  ifndef mdelay /* linux-2.0 */
  482. #    ifndef MAX_UDELAY_MS
  483. #      define MAX_UDELAY_MS   5
  484. #    endif
  485. #    define mdelay(n) (
  486.         (__builtin_constant_p(n) && (n)<=MAX_UDELAY_MS) ? udelay((n)*1000) : 
  487.         ({unsigned long msec=(n); while (msec--) udelay(1000);}))
  488. #  endif /* mdelay */
  489. #endif /* _LINUX_DELAY_H */
  490. /*
  491.  * No del_timer_sync before 2.4
  492.  */
  493. #ifndef LINUX_24
  494. #  define del_timer_sync(timer) del_timer(timer)  /* and hope */
  495. #endif
  496. /*
  497.  * mod_timer wasn't present in 2.0
  498.  */
  499. #ifdef LINUX_20
  500. static inline int mod_timer(struct timer_list *timer, unsigned long expires)
  501. {
  502.     int pending = del_timer(timer);
  503.     if (pending) {
  504.         timer->expires = expires;
  505.         add_timer(timer);
  506.     }
  507.     return pending;
  508. }
  509. #endif
  510. /*
  511.  * Various changes in mmap and friends.
  512.  */
  513. #ifndef NOPAGE_SIGBUS
  514. #  define NOPAGE_SIGBUS  NULL  /* return value of the nopage memory method */
  515. #  define NOPAGE_OOM     NULL  /* No real equivalent in older kernels */
  516. #endif
  517. #ifndef VM_RESERVED            /* Added 2.4.0-test10 */
  518. #  define VM_RESERVED 0
  519. #endif
  520. #ifdef LINUX_24 /* use "vm_pgoff" to get an offset */
  521. #define VMA_OFFSET(vma)  ((vma)->vm_pgoff << PAGE_SHIFT)
  522. #else /* use "vm_offset" */
  523. #define VMA_OFFSET(vma)  ((vma)->vm_offset)
  524. #endif
  525. #ifdef MAP_NR
  526. #define virt_to_page(page) (mem_map + MAP_NR(page))
  527. #endif
  528. #ifndef get_page
  529. #  define get_page(p) atomic_inc(&(p)->count)
  530. #endif
  531. /*
  532.  * No DMA lock in 2.0.
  533.  */
  534. #ifdef LINUX_20
  535. static inline unsigned long claim_dma_lock(void)
  536. {
  537.     unsigned long flags;
  538.     save_flags(flags);
  539.     cli();
  540.     return flags;
  541. }
  542. static inline void release_dma_lock(unsigned long flags)
  543. {
  544.     restore_flags(flags);
  545. }
  546. #endif
  547. /*
  548.  * I/O memory was not managed by ealier kernels, define them as success
  549.  */
  550. #if 0 /* FIXME: what is the right way to do request_mem_region? */
  551. #ifndef LINUX_24
  552. #  define check_mem_region(start, len)          0
  553. #  define request_mem_region(start, len, name)  0
  554. #  define release_mem_region(start, len)        0
  555.    /*
  556.     * Also, request_ and release_ region used to return void. Return 0 instead
  557.     */
  558. #  define request_region(s, l, n)  ({request_region((s),(l),(n));0;})
  559. #  define release_region(s, l)     ({release_region((s),(l));0;})
  560. #endif /* not LINUX_24 */
  561. #endif
  562. /*
  563.  * Block layer stuff.
  564.  */
  565. #ifndef LINUX_24
  566. /* BLK_DEFAULT_QUEUE for use with these macros only!!!! */
  567. #define BLK_DEFAULT_QUEUE(major) blk_dev[(major)].request_fn
  568. #define blk_init_queue(where,request_fn) where = request_fn;
  569. #define blk_cleanup_queue(where) where = NULL;
  570. /* No QUEUE_EMPTY in older kernels */
  571. #ifndef QUEUE_EMPTY  /* Driver can redefine it too */
  572. #  define QUEUE_EMPTY (CURRENT != NULL)
  573. #endif
  574. #ifdef RO_IOCTLS
  575. static inline int blk_ioctl(kdev_t dev, unsigned int cmd, unsigned long arg)
  576. {
  577.     int err;
  578.     switch (cmd) {
  579.       case BLKRAGET: /* return the readahead value */
  580.         if (!arg)  return -EINVAL;
  581.         err = ! access_ok(VERIFY_WRITE, arg, sizeof(long));
  582.         if (err) return -EFAULT;
  583.         PUT_USER(read_ahead[MAJOR(dev)],(long *) arg);
  584.         return 0;
  585.       case BLKRASET: /* set the readahead value */
  586.         if (!capable(CAP_SYS_ADMIN)) return -EACCES;
  587.         if (arg > 0xff) return -EINVAL; /* limit it */
  588.         read_ahead[MAJOR(dev)] = arg;
  589.         return 0;
  590.       case BLKFLSBUF: /* flush */
  591.         if (! capable(CAP_SYS_ADMIN)) return -EACCES; /* only root */
  592.         fsync_dev(dev);
  593.         invalidate_buffers(dev);
  594.         return 0;
  595.         RO_IOCTLS(dev, arg);
  596.     }
  597.     return -ENOTTY;
  598. }
  599. #endif  /* RO_IOCTLS */
  600. #ifdef LINUX_EXTENDED_PARTITION /* defined in genhd.h */
  601. static inline void register_disk(struct gendisk *gdev, kdev_t dev,
  602.                 unsigned minors, struct file_operations *ops, long size)
  603. {
  604.     if (! gdev)
  605.         return;
  606.     resetup_one_dev(gdev, MINOR(dev) >> gdev->minor_shift);
  607. }
  608. #endif /* LINUX_EXTENDED_PARTITION */
  609. #else  /* it is Linux 2.4 */
  610. #define HAVE_BLKPG_H
  611. #endif /* LINUX_24 */
  612. #ifdef LINUX_20 /* physical and virtual addresses had the same value */
  613. #  define __pa(a) (a)
  614. #  define __va(a) (a)
  615. #endif
  616. /*
  617.  * Network driver compatibility
  618.  */
  619. /*
  620.  * 2.0 dev_kfree_skb had an extra arg.  The following is a little dangerous
  621.  * in that it assumes that FREE_WRITE is always wanted.  Very few 2.0 drivers
  622.  * use FREE_READ, but the number is *not* zero...
  623.  *
  624.  * Also: implement the non-checking versions of a couple skb functions -
  625.  * but they still check in 2.0.
  626.  */
  627. #ifdef LINUX_20
  628. #  define dev_kfree_skb(skb) dev_kfree_skb((skb), FREE_WRITE);
  629. #  define __skb_push(skb, len) skb_push((skb), (len))
  630. #  define __skb_put(skb, len)  skb_put((skb), (len))
  631. #endif
  632. /*
  633.  * Softnet changes in 2.4
  634.  */
  635. #ifndef LINUX_24
  636. #  ifdef _LINUX_NETDEVICE_H /* only if netdevice.h was included */
  637. #  define netif_start_queue(dev) clear_bit(0, (void *) &(dev)->tbusy);
  638. #  define netif_stop_queue(dev)  set_bit(0, (void *) &(dev)->tbusy);
  639. static inline void netif_wake_queue(struct device *dev)
  640. {
  641.     clear_bit(0, (void *) &(dev)->tbusy);
  642.     mark_bh(NET_BH);
  643. }
  644. /* struct device became struct net_device */
  645. #  define net_device device
  646. #  endif /* netdevice.h */
  647. #endif /* ! LINUX_24 */
  648. /*
  649.  * Memory barrier stuff, define what's missing from older kernel versions
  650.  */
  651. #ifdef switch_to /* this is always a macro, defined in <asm/sysstem.h> */
  652. #  ifndef set_mb
  653. #    define set_mb(var, value) do {(var) = (value); mb();}  while 0
  654. #  endif
  655. #  ifndef set_rmb
  656. #    define set_rmb(var, value) do {(var) = (value); rmb();}  while 0
  657. #  endif
  658. #  ifndef set_wmb
  659. #    define set_wmb(var, value) do {(var) = (value); wmb();}  while 0
  660. #  endif
  661. /* The hw barriers are defined as sw barriers. A correct thing if this
  662.    specific kernel/platform is supported but has no specific instruction */
  663. #  ifndef mb
  664. #    define mb barrier
  665. #  endif
  666. #  ifndef rmb
  667. #    define rmb barrier
  668. #  endif
  669. #  ifndef wmb
  670. #    define wmb barrier
  671. #  endif
  672. #endif /* switch to (i.e. <asm/system.h>) */
  673. #endif /* _SYSDEP_H_ */