2007-06-12 13:07:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 Oracle. All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public
|
|
|
|
* License v2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 021110-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2007-01-26 21:38:42 +00:00
|
|
|
#ifndef __KERNCOMPAT
|
|
|
|
#define __KERNCOMPAT
|
2007-06-08 02:12:21 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2007-12-05 15:41:38 +00:00
|
|
|
#include <errno.h>
|
2007-06-08 02:12:21 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <endian.h>
|
|
|
|
#include <byteswap.h>
|
2009-01-07 19:57:12 +00:00
|
|
|
#include <assert.h>
|
2007-06-08 02:12:21 +00:00
|
|
|
|
2008-04-03 20:35:48 +00:00
|
|
|
#ifndef READ
|
|
|
|
#define READ 0
|
|
|
|
#define WRITE 1
|
|
|
|
#define READA 2
|
|
|
|
#endif
|
|
|
|
|
2007-01-26 21:38:42 +00:00
|
|
|
#define gfp_t int
|
|
|
|
#define get_cpu_var(p) (p)
|
|
|
|
#define __get_cpu_var(p) (p)
|
2007-06-08 02:12:21 +00:00
|
|
|
#define BITS_PER_LONG (sizeof(long) * 8)
|
2007-01-26 21:38:42 +00:00
|
|
|
#define __GFP_BITS_SHIFT 20
|
|
|
|
#define __GFP_BITS_MASK ((int)((1 << __GFP_BITS_SHIFT) - 1))
|
2007-02-02 14:18:22 +00:00
|
|
|
#define GFP_KERNEL 0
|
2007-04-02 18:18:17 +00:00
|
|
|
#define GFP_NOFS 0
|
2007-01-26 21:38:42 +00:00
|
|
|
#define __read_mostly
|
|
|
|
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
2010-09-09 02:57:02 +00:00
|
|
|
|
|
|
|
#ifndef ULONG_MAX
|
2007-01-26 21:38:42 +00:00
|
|
|
#define ULONG_MAX (~0UL)
|
2010-09-09 02:57:02 +00:00
|
|
|
#endif
|
|
|
|
|
2007-01-26 21:38:42 +00:00
|
|
|
#define BUG() abort()
|
2007-03-12 16:29:44 +00:00
|
|
|
#ifdef __CHECKER__
|
|
|
|
#define __force __attribute__((force))
|
|
|
|
#define __bitwise__ __attribute__((bitwise))
|
|
|
|
#else
|
|
|
|
#define __force
|
|
|
|
#define __bitwise__
|
|
|
|
#endif
|
2007-01-26 21:38:42 +00:00
|
|
|
|
2007-06-08 02:12:21 +00:00
|
|
|
#ifndef __CHECKER__
|
|
|
|
#include <asm/types.h>
|
|
|
|
typedef __u32 u32;
|
|
|
|
typedef __u64 u64;
|
|
|
|
typedef __u16 u16;
|
|
|
|
typedef __u8 u8;
|
|
|
|
#else
|
2007-01-26 21:38:42 +00:00
|
|
|
typedef unsigned int u32;
|
2007-06-08 02:12:21 +00:00
|
|
|
typedef unsigned int __u32;
|
2007-02-26 15:55:01 +00:00
|
|
|
typedef unsigned long long u64;
|
2007-01-26 21:38:42 +00:00
|
|
|
typedef unsigned char u8;
|
|
|
|
typedef unsigned short u16;
|
2007-06-08 02:12:21 +00:00
|
|
|
#endif
|
2007-01-26 21:38:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
struct vma_shared { int prio_tree_node; };
|
|
|
|
struct vm_area_struct {
|
|
|
|
unsigned long vm_pgoff;
|
|
|
|
unsigned long vm_start;
|
|
|
|
unsigned long vm_end;
|
|
|
|
struct vma_shared shared;
|
|
|
|
};
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-01-26 21:38:42 +00:00
|
|
|
struct page {
|
|
|
|
unsigned long index;
|
|
|
|
};
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
struct mutex {
|
|
|
|
unsigned long lock;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define mutex_init(m) \
|
|
|
|
do { \
|
|
|
|
(m)->lock = 1; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
static inline void mutex_lock(struct mutex *m)
|
|
|
|
{
|
|
|
|
m->lock--;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void mutex_unlock(struct mutex *m)
|
|
|
|
{
|
|
|
|
m->lock++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int mutex_is_locked(struct mutex *m)
|
|
|
|
{
|
|
|
|
return (m->lock != 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define cond_resched() do { } while (0)
|
2007-06-12 15:39:09 +00:00
|
|
|
#define preempt_enable() do { } while (0)
|
|
|
|
#define preempt_disable() do { } while (0)
|
2007-01-26 21:38:42 +00:00
|
|
|
|
2007-04-21 00:23:29 +00:00
|
|
|
#define BITOP_MASK(nr) (1UL << ((nr) % BITS_PER_LONG))
|
|
|
|
#define BITOP_WORD(nr) ((nr) / BITS_PER_LONG)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* __set_bit - Set a bit in memory
|
|
|
|
* @nr: the bit to set
|
|
|
|
* @addr: the address to start counting from
|
|
|
|
*
|
|
|
|
* Unlike set_bit(), this function is non-atomic and may be reordered.
|
|
|
|
* If it's called on the same region of memory simultaneously, the effect
|
|
|
|
* may be that only one operation succeeds.
|
|
|
|
*/
|
|
|
|
static inline void __set_bit(int nr, volatile unsigned long *addr)
|
|
|
|
{
|
|
|
|
unsigned long mask = BITOP_MASK(nr);
|
|
|
|
unsigned long *p = ((unsigned long *)addr) + BITOP_WORD(nr);
|
|
|
|
|
|
|
|
*p |= mask;
|
2007-01-26 21:38:42 +00:00
|
|
|
}
|
|
|
|
|
2007-04-21 00:23:29 +00:00
|
|
|
static inline void __clear_bit(int nr, volatile unsigned long *addr)
|
|
|
|
{
|
|
|
|
unsigned long mask = BITOP_MASK(nr);
|
|
|
|
unsigned long *p = ((unsigned long *)addr) + BITOP_WORD(nr);
|
|
|
|
|
|
|
|
*p &= ~mask;
|
2007-01-26 21:38:42 +00:00
|
|
|
}
|
|
|
|
|
2007-04-21 00:23:29 +00:00
|
|
|
/**
|
|
|
|
* test_bit - Determine whether a bit is set
|
|
|
|
* @nr: bit number to test
|
|
|
|
* @addr: Address to start counting from
|
|
|
|
*/
|
|
|
|
static inline int test_bit(int nr, const volatile unsigned long *addr)
|
|
|
|
{
|
|
|
|
return 1UL & (addr[BITOP_WORD(nr)] >> (nr & (BITS_PER_LONG-1)));
|
2007-01-26 21:38:42 +00:00
|
|
|
}
|
2007-04-21 00:23:29 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
/*
|
|
|
|
* error pointer
|
|
|
|
*/
|
|
|
|
#define MAX_ERRNO 4095
|
|
|
|
#define IS_ERR_VALUE(x) ((x) >= (unsigned long)-MAX_ERRNO)
|
|
|
|
|
|
|
|
static inline void *ERR_PTR(long error)
|
|
|
|
{
|
|
|
|
return (void *) error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long PTR_ERR(const void *ptr)
|
|
|
|
{
|
|
|
|
return (long) ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long IS_ERR(const void *ptr)
|
|
|
|
{
|
|
|
|
return IS_ERR_VALUE((unsigned long)ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* max/min macro
|
|
|
|
*/
|
|
|
|
#define min(x,y) ({ \
|
|
|
|
typeof(x) _x = (x); \
|
|
|
|
typeof(y) _y = (y); \
|
|
|
|
(void) (&_x == &_y); \
|
|
|
|
_x < _y ? _x : _y; })
|
|
|
|
|
|
|
|
#define max(x,y) ({ \
|
|
|
|
typeof(x) _x = (x); \
|
|
|
|
typeof(y) _y = (y); \
|
|
|
|
(void) (&_x == &_y); \
|
|
|
|
_x > _y ? _x : _y; })
|
|
|
|
|
|
|
|
#define min_t(type,x,y) \
|
|
|
|
({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
|
|
|
|
#define max_t(type,x,y) \
|
|
|
|
({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
|
|
|
|
|
|
|
|
/*
|
|
|
|
* printk
|
|
|
|
*/
|
|
|
|
#define printk(fmt, args...) fprintf(stderr, fmt, ##args)
|
|
|
|
#define KERN_CRIT ""
|
2009-05-29 20:35:30 +00:00
|
|
|
#define KERN_ERR ""
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* kmalloc/kfree
|
|
|
|
*/
|
|
|
|
#define kmalloc(x, y) malloc(x)
|
2008-03-24 19:05:44 +00:00
|
|
|
#define kzalloc(x, y) calloc(1, x)
|
|
|
|
#define kstrdup(x, y) strdup(x)
|
2008-01-04 15:38:22 +00:00
|
|
|
#define kfree(x) free(x)
|
|
|
|
|
2009-01-07 19:57:12 +00:00
|
|
|
#define BUG_ON(c) assert(!(c))
|
|
|
|
#define WARN_ON(c) assert(!(c))
|
2007-01-26 21:38:42 +00:00
|
|
|
|
2007-06-12 15:39:09 +00:00
|
|
|
#undef offsetof
|
|
|
|
#ifdef __compiler_offsetof
|
|
|
|
#define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
|
|
|
|
#else
|
|
|
|
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
|
|
|
#endif
|
|
|
|
|
2007-01-26 21:38:42 +00:00
|
|
|
#define container_of(ptr, type, member) ({ \
|
|
|
|
const typeof( ((type *)0)->member ) *__mptr = (ptr); \
|
2007-06-12 15:39:09 +00:00
|
|
|
(type *)( (char *)__mptr - offsetof(type,member) );})
|
2007-06-08 02:12:21 +00:00
|
|
|
#ifdef __CHECKER__
|
2007-03-12 16:29:44 +00:00
|
|
|
#define __CHECK_ENDIAN__
|
|
|
|
#define __bitwise __bitwise__
|
|
|
|
#else
|
|
|
|
#define __bitwise
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef u16 __bitwise __le16;
|
|
|
|
typedef u16 __bitwise __be16;
|
|
|
|
typedef u32 __bitwise __le32;
|
|
|
|
typedef u32 __bitwise __be32;
|
|
|
|
typedef u64 __bitwise __le64;
|
|
|
|
typedef u64 __bitwise __be64;
|
|
|
|
|
2007-12-12 19:39:46 +00:00
|
|
|
/* Macros to generate set/get funcs for the struct fields
|
|
|
|
* assume there is a lefoo_to_cpu for every type, so lets make a simple
|
|
|
|
* one for u8:
|
|
|
|
*/
|
|
|
|
#define le8_to_cpu(v) (v)
|
|
|
|
#define cpu_to_le8(v) (v)
|
|
|
|
#define __le8 u8
|
|
|
|
|
2007-06-08 02:12:21 +00:00
|
|
|
#if __BYTE_ORDER == __BIG_ENDIAN
|
|
|
|
#define cpu_to_le64(x) ((__force __le64)(u64)(bswap_64(x)))
|
|
|
|
#define le64_to_cpu(x) ((__force u64)(__le64)(bswap_64(x)))
|
|
|
|
#define cpu_to_le32(x) ((__force __le32)(u32)(bswap_32(x)))
|
|
|
|
#define le32_to_cpu(x) ((__force u32)(__le32)(bswap_32(x)))
|
|
|
|
#define cpu_to_le16(x) ((__force __le16)(u16)(bswap_16(x)))
|
|
|
|
#define le16_to_cpu(x) ((__force u16)(__le16)(bswap_16(x)))
|
|
|
|
#else
|
2007-03-12 16:29:44 +00:00
|
|
|
#define cpu_to_le64(x) ((__force __le64)(u64)(x))
|
|
|
|
#define le64_to_cpu(x) ((__force u64)(__le64)(x))
|
|
|
|
#define cpu_to_le32(x) ((__force __le32)(u32)(x))
|
|
|
|
#define le32_to_cpu(x) ((__force u32)(__le32)(x))
|
|
|
|
#define cpu_to_le16(x) ((__force __le16)(u16)(x))
|
|
|
|
#define le16_to_cpu(x) ((__force u16)(__le16)(x))
|
2007-03-12 20:22:34 +00:00
|
|
|
#endif
|
2007-06-08 02:12:21 +00:00
|
|
|
#endif
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
#ifndef noinline
|
|
|
|
#define noinline
|
|
|
|
#endif
|
2013-01-18 22:27:43 +00:00
|
|
|
|
|
|
|
#define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1)
|
|
|
|
#define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask))
|
|
|
|
#define ALIGN(x, a) __ALIGN_KERNEL((x), (a))
|