📄 kcompat.c
字号:
/******************************************************************************* Intel PRO/1000 Linux driver Copyright(c) 1999 - 2008 Intel Corporation. This program is free software; you can redistribute it and/or modify it under the terms and conditions of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope 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., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. The full GNU General Public License is included in this distribution in the file called "COPYING". Contact Information: Linux NICS <linux.nics@intel.com> e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497*******************************************************************************/#ifdef DRIVER_E1000#include "e1000.h"#endif#ifdef DRIVER_E1000E#include "e1000.h"#endif#include "kcompat.h"/*****************************************************************************/#if ( LINUX_VERSION_CODE < KERNEL_VERSION(2,4,13) )/**************************************//* PCI DMA MAPPING */#if defined(CONFIG_HIGHMEM)#ifndef PCI_DRAM_OFFSET#define PCI_DRAM_OFFSET 0#endifu64_kc_pci_map_page(struct pci_dev *dev, struct page *page, unsigned long offset, size_t size, int direction){ return (((u64) (page - mem_map) << PAGE_SHIFT) + offset + PCI_DRAM_OFFSET);}#else /* CONFIG_HIGHMEM */u64_kc_pci_map_page(struct pci_dev *dev, struct page *page, unsigned long offset, size_t size, int direction){ return pci_map_single(dev, (void *)page_address(page) + offset, size, direction);}#endif /* CONFIG_HIGHMEM */void_kc_pci_unmap_page(struct pci_dev *dev, u64 dma_addr, size_t size, int direction){ return pci_unmap_single(dev, dma_addr, size, direction);}#endif /* 2.4.13 => 2.4.3 *//*****************************************************************************/#if ( LINUX_VERSION_CODE < KERNEL_VERSION(2,4,3) )/**************************************//* PCI DRIVER API */int_kc_pci_set_dma_mask(struct pci_dev *dev, dma_addr_t mask){ if (!pci_dma_supported(dev, mask)) return -EIO; dev->dma_mask = mask; return 0;}int_kc_pci_request_regions(struct pci_dev *dev, char *res_name){ int i; for (i = 0; i < 6; i++) { if (pci_resource_len(dev, i) == 0) continue; if (pci_resource_flags(dev, i) & IORESOURCE_IO) { if (!request_region(pci_resource_start(dev, i), pci_resource_len(dev, i), res_name)) { pci_release_regions(dev); return -EBUSY; } } else if (pci_resource_flags(dev, i) & IORESOURCE_MEM) { if (!request_mem_region(pci_resource_start(dev, i), pci_resource_len(dev, i), res_name)) { pci_release_regions(dev); return -EBUSY; } } } return 0;}void_kc_pci_release_regions(struct pci_dev *dev){ int i; for (i = 0; i < 6; i++) { if (pci_resource_len(dev, i) == 0) continue; if (pci_resource_flags(dev, i) & IORESOURCE_IO) release_region(pci_resource_start(dev, i), pci_resource_len(dev, i)); else if (pci_resource_flags(dev, i) & IORESOURCE_MEM) release_mem_region(pci_resource_start(dev, i), pci_resource_len(dev, i)); }}/**************************************//* NETWORK DRIVER API */struct net_device *_kc_alloc_etherdev(int sizeof_priv){ struct net_device *dev; int alloc_size; alloc_size = sizeof(*dev) + sizeof_priv + IFNAMSIZ + 31; dev = kmalloc(alloc_size, GFP_KERNEL); if (!dev) return NULL; memset(dev, 0, alloc_size); if (sizeof_priv) dev->priv = (void *) (((unsigned long)(dev + 1) + 31) & ~31); dev->name[0] = '\0'; ether_setup(dev); return dev;}int_kc_is_valid_ether_addr(u8 *addr){ const char zaddr[6] = { 0, }; return !(addr[0] & 1) && memcmp(addr, zaddr, 6);}#endif /* 2.4.3 => 2.4.0 *//*****************************************************************************/#if ( LINUX_VERSION_CODE < KERNEL_VERSION(2,4,6) )int_kc_pci_set_power_state(struct pci_dev *dev, int state){ return 0;}int_kc_pci_save_state(struct pci_dev *dev, u32 *buffer){ return 0;}int_kc_pci_restore_state(struct pci_dev *pdev, u32 *buffer){ return 0;}int_kc_pci_enable_wake(struct pci_dev *pdev, u32 state, int enable){ return 0;}#endif /* 2.4.6 => 2.4.3 *//*****************************************************************************/#if ( LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0) )void _kc_skb_fill_page_desc(struct sk_buff *skb, int i, struct page *page, int off, int size){ skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; frag->page = page; frag->page_offset = off; frag->size = size; skb_shinfo(skb)->nr_frags = i + 1;}/* * Original Copyright: * find_next_bit.c: fallback find next bit implementation * * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) *//** * find_next_bit - find the next set bit in a memory region * @addr: The address to base the search on * @offset: The bitnumber to start searching at * @size: The maximum size to search */unsigned long find_next_bit(const unsigned long *addr, unsigned long size, unsigned long offset){ const unsigned long *p = addr + BITOP_WORD(offset); unsigned long result = offset & ~(BITS_PER_LONG-1); unsigned long tmp; if (offset >= size) return size; size -= result; offset %= BITS_PER_LONG; if (offset) { tmp = *(p++); tmp &= (~0UL << offset); if (size < BITS_PER_LONG) goto found_first; if (tmp) goto found_middle; size -= BITS_PER_LONG; result += BITS_PER_LONG; } while (size & ~(BITS_PER_LONG-1)) { if ((tmp = *(p++))) goto found_middle; result += BITS_PER_LONG; size -= BITS_PER_LONG; } if (!size) return result; tmp = *p;found_first: tmp &= (~0UL >> (BITS_PER_LONG - size)); if (tmp == 0UL) /* Are any bits set? */ return result + size; /* Nope. */found_middle: return result + ffs(tmp);}#endif /* 2.6.0 => 2.4.6 *//*****************************************************************************/#if ( LINUX_VERSION_CODE < KERNEL_VERSION(2,6,14) )void *_kc_kzalloc(size_t size, int flags){ void *ret = kmalloc(size, flags); if (ret) memset(ret, 0, size); return ret;}#endif /* <= 2.6.13 *//*****************************************************************************/#if ( LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) )struct sk_buff *_kc_netdev_alloc_skb(struct net_device *dev, unsigned int length){ /* 16 == NET_PAD_SKB */ struct sk_buff *skb; skb = alloc_skb(length + 16, GFP_ATOMIC); if (likely(skb != NULL)) { skb_reserve(skb, 16); skb->dev = dev; } return skb;}#endif /* <= 2.6.17 *//*****************************************************************************/#if ( LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24) )#ifdef NAPIint __kc_adapter_clean(struct net_device *netdev, int *budget){ int work_done; int work_to_do = min(*budget, netdev->quota); struct adapter_struct *adapter = netdev_priv(netdev);#ifdef DRIVER_E1000E struct napi_struct *napi = &adapter->napi;#else struct napi_struct *napi = &adapter->rx_ring[0].napi;#endif work_done = napi->poll(napi, work_to_do); *budget -= work_done; netdev->quota -= work_done; return work_done ? 1 : 0;}#endif /* NAPI */#endif /* <= 2.6.24 */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -