2007-10-04 17:07:51 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer,
|
|
|
|
* without modification.
|
|
|
|
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
|
|
|
|
* similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
|
|
|
|
* redistribution must be conditioned upon including a substantially
|
|
|
|
* similar Disclaimer requirement for further binary redistribution.
|
|
|
|
* 3. Neither the names of the above-listed copyright holders nor the names
|
|
|
|
* of any contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
|
|
* GNU General Public License ("GPL") version 2 as published by the Free
|
|
|
|
* Software Foundation.
|
|
|
|
*
|
|
|
|
* NO WARRANTY
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
|
|
|
|
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
|
|
|
|
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
|
|
|
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
|
|
|
* THE POSSIBILITY OF SUCH DAMAGES.
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
#ifndef _ATH_COMPAT_H_
|
|
|
|
#define _ATH_COMPAT_H_
|
|
|
|
|
|
|
|
/* Compatibility with older Linux kernels */
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/time.h>
|
2008-01-30 23:23:49 +03:00
|
|
|
#include <linux/netdevice.h>
|
2008-04-24 17:26:00 +04:00
|
|
|
#include <linux/kernel.h>
|
2008-07-05 12:14:57 +04:00
|
|
|
#include <linux/kmod.h>
|
2013-11-11 20:57:32 +04:00
|
|
|
#include <linux/proc_fs.h>
|
2007-10-04 17:07:51 +04:00
|
|
|
#endif
|
2008-01-30 23:23:49 +03:00
|
|
|
|
2008-04-24 18:09:57 +04:00
|
|
|
#include <linux/version.h>
|
|
|
|
|
2007-10-04 17:07:51 +04:00
|
|
|
#if !defined(__KERNEL__) || !defined (__bitwise)
|
|
|
|
#define __le16 u_int16_t
|
|
|
|
#define __le32 u_int32_t
|
|
|
|
#define __le64 u_int64_t
|
|
|
|
#define __be16 u_int16_t
|
|
|
|
#define __be32 u_int32_t
|
|
|
|
#define __be64 u_int64_t
|
|
|
|
#define __force
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef container_of
|
2008-01-30 23:23:49 +03:00
|
|
|
#define container_of(ptr, type, member) ({ \
|
2007-10-04 17:07:51 +04:00
|
|
|
const typeof( ((type *)0)->member ) *__mptr = (ptr); \
|
|
|
|
(type *)( (char *)__mptr - offsetof(type,member) );})
|
|
|
|
#endif
|
|
|
|
|
2008-01-30 23:23:49 +03:00
|
|
|
#ifndef list_for_each_entry_reverse
|
|
|
|
#define list_for_each_entry_reverse(pos, head, member) \
|
|
|
|
for (pos = list_entry((head)->prev, typeof(*pos), member); \
|
|
|
|
prefetch(pos->member.prev), &pos->member != (head); \
|
|
|
|
pos = list_entry(pos->member.prev, typeof(*pos), member))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NETDEV_TX_OK
|
|
|
|
#define NETDEV_TX_OK 0
|
|
|
|
#define NETDEV_TX_BUSY 1
|
|
|
|
#endif
|
|
|
|
|
2010-06-19 22:24:35 +04:00
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,34)
|
2011-10-08 01:14:47 +04:00
|
|
|
#ifndef netdev_for_each_mc_addr
|
2010-06-19 22:24:35 +04:00
|
|
|
#define netdev_for_each_mc_addr(mclist, dev) \
|
2011-10-08 01:14:47 +04:00
|
|
|
for (mclist = (dev)->mc_list; mclist; mclist = mclist->next)
|
|
|
|
#endif
|
2010-06-19 22:24:35 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35)
|
|
|
|
#define ath_netdev_hw_addr dev_mc_list
|
|
|
|
#define ath_ha_addr(ha) ha->dmi_addr
|
|
|
|
#else
|
|
|
|
#define ath_netdev_hw_addr netdev_hw_addr
|
|
|
|
#define ath_ha_addr(ha) ha->addr
|
|
|
|
#endif
|
|
|
|
|
2014-08-04 23:16:13 +04:00
|
|
|
#ifndef NET_NAME_UNKNOWN
|
|
|
|
#undef alloc_netdev
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
|
|
|
|
#define alloc_netdev(sizeof_priv, name, name_assign_type, setup) \
|
|
|
|
alloc_netdev(sizeof_priv, name, setup)
|
|
|
|
#elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,38)
|
|
|
|
#define alloc_netdev(sizeof_priv, name, name_assign_type, setup) \
|
|
|
|
alloc_netdev_mq(sizeof_priv, name, setup, 1)
|
|
|
|
#else
|
|
|
|
#define alloc_netdev(sizeof_priv, name, name_assign_type, setup) \
|
|
|
|
alloc_netdev_mqs(sizeof_priv, name, setup, 1, 1)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2007-10-04 17:07:51 +04:00
|
|
|
/*
|
|
|
|
* BSD/Linux compatibility shims. These are used mainly to
|
2011-08-26 19:31:01 +04:00
|
|
|
* minimize differences when importing necessary BSD code.
|
2007-10-04 17:07:51 +04:00
|
|
|
*/
|
|
|
|
#define NBBY 8 /* number of bits/byte */
|
|
|
|
|
|
|
|
/* roundup() appears in Linux 2.6.18 */
|
|
|
|
#ifndef roundup
|
|
|
|
#define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) /* to any y */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define howmany(x, y) (((x)+((y)-1))/(y))
|
|
|
|
|
2008-07-24 06:05:54 +04:00
|
|
|
/* roundup() and howmany() macros that works both with positive and negative
|
|
|
|
* values. */
|
|
|
|
#define roundup_s(x,y) _roundup_s((signed)(x),(signed)(y))
|
|
|
|
#define howmany_s(x,y) _howmany_s((signed)(x),(signed)(y))
|
|
|
|
#define _roundup_s(x,y) \
|
|
|
|
((x) >= 0 ? (((x)+((y)-1))/(y))*(y) : ((x)/(y))*(y))
|
|
|
|
#define _howmany_s(x, y) \
|
|
|
|
((x) >= 0 ? (((x)+((y)-1))/(y)) : ((x)/(y)))
|
|
|
|
|
2007-10-04 17:07:51 +04:00
|
|
|
/* Bit map related macros. */
|
|
|
|
#define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY))
|
|
|
|
#define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY)))
|
|
|
|
#define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY)))
|
|
|
|
#define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
|
|
|
|
|
|
|
|
#ifndef __packed
|
|
|
|
#define __packed __attribute__((__packed__))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define __offsetof(t,m) offsetof(t,m)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* NetBSD/FreeBSD defines for file version.
|
|
|
|
*/
|
|
|
|
#define __FBSDID(_s)
|
|
|
|
#define __KERNEL_RCSID(_n,_s)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fixes for Linux API changes
|
|
|
|
*/
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
2008-06-06 09:38:29 +04:00
|
|
|
#define KASSERT(exp, msg) do { \
|
|
|
|
if (unlikely(!(exp))) { \
|
|
|
|
printk msg; \
|
2008-06-19 20:58:07 +04:00
|
|
|
printk("\n"); \
|
2008-06-06 09:38:29 +04:00
|
|
|
BUG(); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,14)
|
2008-09-03 01:27:51 +04:00
|
|
|
#define gfp_t unsigned int
|
2008-06-06 09:38:29 +04:00
|
|
|
|
2008-09-02 19:43:42 +04:00
|
|
|
static inline void *_kzalloc(size_t size, gfp_t flags)
|
2008-06-06 09:38:29 +04:00
|
|
|
{
|
|
|
|
void *p = kmalloc(size, flags);
|
|
|
|
if (likely(p != NULL))
|
|
|
|
memset(p, 0, size);
|
|
|
|
return p;
|
|
|
|
}
|
2008-09-02 19:43:42 +04:00
|
|
|
|
|
|
|
#define kzalloc(size, flags) _kzalloc(size, flags)
|
2008-06-06 09:38:29 +04:00
|
|
|
#endif
|
|
|
|
|
2007-10-04 17:07:51 +04:00
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,21)
|
|
|
|
#define ATH_REGISTER_SYSCTL_TABLE(t) register_sysctl_table(t, 1)
|
|
|
|
#else
|
|
|
|
#define ATH_REGISTER_SYSCTL_TABLE(t) register_sysctl_table(t)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,16)
|
|
|
|
static inline int timeval_compare(struct timeval *lhs, struct timeval *rhs)
|
|
|
|
{
|
|
|
|
if (lhs->tv_sec < rhs->tv_sec)
|
|
|
|
return -1;
|
|
|
|
if (lhs->tv_sec > rhs->tv_sec)
|
|
|
|
return 1;
|
|
|
|
return lhs->tv_usec - rhs->tv_usec;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-03-20 00:28:16 +03:00
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
|
|
|
|
typedef unsigned long resource_size_t;
|
|
|
|
#endif
|
|
|
|
|
2007-12-13 05:18:16 +03:00
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
|
|
|
|
#define IRQF_SHARED SA_SHIRQ
|
|
|
|
#endif
|
|
|
|
|
2007-10-04 17:07:51 +04:00
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
|
|
|
|
#define skb_end_pointer(_skb) ((_skb)->end)
|
|
|
|
#define skb_tail_pointer(_skb) ((_skb)->tail)
|
|
|
|
#define skb_set_network_header(_skb, _offset) \
|
2008-05-14 23:11:57 +04:00
|
|
|
do { (_skb)->nh.raw = (_skb)->data + (_offset); } while (0)
|
2007-10-04 17:07:51 +04:00
|
|
|
#define skb_reset_network_header(_skb) \
|
2008-05-14 23:11:57 +04:00
|
|
|
do { (_skb)->nh.raw = (_skb)->data; } while (0)
|
2007-10-04 17:07:51 +04:00
|
|
|
#define skb_mac_header(_skb) ((_skb)->mac.raw)
|
|
|
|
#define skb_reset_mac_header(_skb) \
|
2008-05-14 23:11:57 +04:00
|
|
|
do { (_skb)->mac.raw = (_skb)->data; } while (0)
|
2007-10-04 17:07:51 +04:00
|
|
|
#endif
|
|
|
|
|
2007-10-31 08:39:41 +03:00
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
|
|
|
|
#define CTL_AUTO -2
|
|
|
|
#define DEV_ATH 9
|
|
|
|
#else
|
|
|
|
#define CTL_AUTO CTL_UNNUMBERED
|
|
|
|
#define DEV_ATH CTL_UNNUMBERED
|
|
|
|
#endif
|
|
|
|
|
2010-01-09 11:34:37 +03:00
|
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33)
|
|
|
|
#define ATH_INIT_CTL_NAME(val)
|
|
|
|
#define ATH_SET_CTL_NAME(ctl, val)
|
|
|
|
#else
|
|
|
|
#define ATH_INIT_CTL_NAME(val) .ctl_name = val,
|
|
|
|
#define ATH_SET_CTL_NAME(ctl, val) ctl.ctl_name = val
|
|
|
|
#endif
|
|
|
|
|
2008-05-05 16:12:43 +04:00
|
|
|
/* __skb_append got a third parameter in 2.6.14 */
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,14)
|
|
|
|
#define __skb_queue_after(_list, _old, _new) __skb_append(_old, _new)
|
|
|
|
#elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)
|
|
|
|
#define __skb_queue_after(_list, _old, _new) __skb_append(_old, _new, _list)
|
|
|
|
#endif
|
|
|
|
|
2009-04-12 09:53:23 +04:00
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
|
|
|
|
#ifndef spin_lock_irqsave_nested
|
|
|
|
#define spin_lock_irqsave_nested(_lock, _flags, _subclass) \
|
|
|
|
spin_lock_irqsave(_lock, _flags)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2013-11-11 20:57:32 +04:00
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26)
|
|
|
|
static inline struct proc_dir_entry *proc_create_data(const char *name,
|
|
|
|
umode_t mode, struct proc_dir_entry *parent,
|
|
|
|
struct file_operations *fops, void *data)
|
|
|
|
{
|
|
|
|
struct proc_dir_entry *de;
|
|
|
|
|
|
|
|
de = create_proc_entry(name, mode, parent);
|
|
|
|
if (de) {
|
|
|
|
de->data = data;
|
|
|
|
de->proc_fops = fops;
|
|
|
|
}
|
|
|
|
|
|
|
|
return de;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
|
|
|
|
static inline void proc_remove(struct proc_dir_entry *de)
|
|
|
|
{
|
|
|
|
if (de)
|
|
|
|
remove_proc_entry(de->name, de->parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *PDE_DATA(const struct inode *inode)
|
|
|
|
{
|
|
|
|
return PDE(inode)->data;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-11-09 01:42:54 +04:00
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(3,11,0)
|
|
|
|
#define netdev_notifier_info_to_dev(ptr) ((struct net_device *)(ptr))
|
|
|
|
#endif
|
|
|
|
|
2007-10-04 17:07:51 +04:00
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
|
|
|
|
#endif /* _ATH_COMPAT_H_ */
|