Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 195273
b: refs/heads/master
c: f8bd909
h: refs/heads/master
i:
  195271: 9abc574
v: v3
  • Loading branch information
Scott Feldman authored and David S. Miller committed May 18, 2010
1 parent b7ce9be commit 5f3ac67
Show file tree
Hide file tree
Showing 10 changed files with 522 additions and 25 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 57b610805ce92dbd79fc97509f80fa5391b99623
refs/heads/master: f8bd909183acffad68780b10c1cdf36161cfd5d1
2 changes: 1 addition & 1 deletion trunk/drivers/net/enic/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
obj-$(CONFIG_ENIC) := enic.o

enic-y := enic_main.o vnic_cq.o vnic_intr.o vnic_wq.o \
enic_res.o vnic_dev.o vnic_rq.o
enic_res.o vnic_dev.o vnic_rq.o vnic_vic.o

10 changes: 9 additions & 1 deletion trunk/drivers/net/enic/enic.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

#define DRV_NAME "enic"
#define DRV_DESCRIPTION "Cisco VIC Ethernet NIC Driver"
#define DRV_VERSION "1.3.1.1"
#define DRV_VERSION "1.3.1.1-pp"
#define DRV_COPYRIGHT "Copyright 2008-2009 Cisco Systems, Inc"
#define PFX DRV_NAME ": "

Expand Down Expand Up @@ -74,6 +74,13 @@ struct enic_msix_entry {
void *devid;
};

struct enic_port_profile {
u8 request;
char name[PORT_PROFILE_MAX];
u8 instance_uuid[PORT_UUID_MAX];
u8 host_uuid[PORT_UUID_MAX];
};

/* Per-instance private data structure */
struct enic {
struct net_device *netdev;
Expand All @@ -95,6 +102,7 @@ struct enic {
u32 port_mtu;
u32 rx_coalesce_usecs;
u32 tx_coalesce_usecs;
struct enic_port_profile pp;

/* work queue cache line section */
____cacheline_aligned struct vnic_wq wq[ENIC_WQ_MAX];
Expand Down
Loading

0 comments on commit 5f3ac67

Please sign in to comment.