vnic_rq.c (eadb8a091b27a840de7450f84ecff5ef13476424) | vnic_rq.c (5a0e3ad6af8660be21ca98a971cd00f331318c05) |
---|---|
1/* 2 * Copyright 2008 Cisco Systems, Inc. All rights reserved. 3 * Copyright 2007 Nuova Systems, Inc. All rights reserved. 4 * 5 * This program is free software; you may redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation; version 2 of the License. 8 * --- 6 unchanged lines hidden (view full) --- 15 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 16 * SOFTWARE. 17 */ 18 19#include <linux/errno.h> 20#include <linux/types.h> 21#include <linux/pci.h> 22#include <linux/delay.h> | 1/* 2 * Copyright 2008 Cisco Systems, Inc. All rights reserved. 3 * Copyright 2007 Nuova Systems, Inc. All rights reserved. 4 * 5 * This program is free software; you may redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation; version 2 of the License. 8 * --- 6 unchanged lines hidden (view full) --- 15 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 16 * SOFTWARE. 17 */ 18 19#include <linux/errno.h> 20#include <linux/types.h> 21#include <linux/pci.h> 22#include <linux/delay.h> |
23#include <linux/slab.h> |
|
23#include "vnic_dev.h" 24#include "vnic_rq.h" 25 26static int vnic_rq_alloc_bufs(struct vnic_rq *rq) 27{ 28 struct vnic_rq_buf *buf; 29 struct vnic_dev *vdev; 30 unsigned int i, j, count = rq->ring.desc_count; --- 166 unchanged lines hidden --- | 24#include "vnic_dev.h" 25#include "vnic_rq.h" 26 27static int vnic_rq_alloc_bufs(struct vnic_rq *rq) 28{ 29 struct vnic_rq_buf *buf; 30 struct vnic_dev *vdev; 31 unsigned int i, j, count = rq->ring.desc_count; --- 166 unchanged lines hidden --- |