Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
eb6840cf
Commit
eb6840cf
authored
Feb 25, 2005
by
Jeff Garzik
Browse files
Options
Browse Files
Download
Plain Diff
Merge pobox.com:/garz/repo/netdev-2.6/ixgb
into pobox.com:/garz/repo/net-drivers-2.6
parents
306ebc09
f8319d02
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
67 additions
and
43 deletions
+67
-43
drivers/net/ixgb/ixgb.h
drivers/net/ixgb/ixgb.h
+2
-1
drivers/net/ixgb/ixgb_ee.c
drivers/net/ixgb/ixgb_ee.c
+11
-5
drivers/net/ixgb/ixgb_ee.h
drivers/net/ixgb/ixgb_ee.h
+2
-1
drivers/net/ixgb/ixgb_ethtool.c
drivers/net/ixgb/ixgb_ethtool.c
+4
-1
drivers/net/ixgb/ixgb_hw.c
drivers/net/ixgb/ixgb_hw.c
+1
-1
drivers/net/ixgb/ixgb_hw.h
drivers/net/ixgb/ixgb_hw.h
+1
-1
drivers/net/ixgb/ixgb_ids.h
drivers/net/ixgb/ixgb_ids.h
+1
-1
drivers/net/ixgb/ixgb_main.c
drivers/net/ixgb/ixgb_main.c
+43
-30
drivers/net/ixgb/ixgb_osdep.h
drivers/net/ixgb/ixgb_osdep.h
+1
-1
drivers/net/ixgb/ixgb_param.c
drivers/net/ixgb/ixgb_param.c
+1
-1
No files found.
drivers/net/ixgb/ixgb.h
View file @
eb6840cf
/*******************************************************************************
/*******************************************************************************
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
5
Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
under the terms of the GNU General Public License as published by the Free
...
@@ -176,6 +176,7 @@ struct ixgb_adapter {
...
@@ -176,6 +176,7 @@ struct ixgb_adapter {
uint64_t
hw_csum_tx_error
;
uint64_t
hw_csum_tx_error
;
uint32_t
tx_int_delay
;
uint32_t
tx_int_delay
;
boolean_t
tx_int_delay_enable
;
boolean_t
tx_int_delay_enable
;
boolean_t
detect_tx_hung
;
/* RX */
/* RX */
struct
ixgb_desc_ring
rx_ring
;
struct
ixgb_desc_ring
rx_ring
;
...
...
drivers/net/ixgb/ixgb_ee.c
View file @
eb6840cf
/*******************************************************************************
/*******************************************************************************
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
5
Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
under the terms of the GNU General Public License as published by the Free
...
@@ -372,10 +372,10 @@ ixgb_update_eeprom_checksum(struct ixgb_hw *hw)
...
@@ -372,10 +372,10 @@ ixgb_update_eeprom_checksum(struct ixgb_hw *hw)
*
*
*****************************************************************************/
*****************************************************************************/
void
void
ixgb_write_eeprom
(
struct
ixgb_hw
*
hw
,
ixgb_write_eeprom
(
struct
ixgb_hw
*
hw
,
uint16_t
offset
,
uint16_t
data
)
uint16_t
offset
,
uint16_t
data
)
{
{
struct
ixgb_ee_map_type
*
ee_map
=
(
struct
ixgb_ee_map_type
*
)
hw
->
eeprom
;
/* Prepare the EEPROM for writing */
/* Prepare the EEPROM for writing */
ixgb_setup_eeprom
(
hw
);
ixgb_setup_eeprom
(
hw
);
...
@@ -410,6 +410,9 @@ ixgb_write_eeprom(struct ixgb_hw *hw,
...
@@ -410,6 +410,9 @@ ixgb_write_eeprom(struct ixgb_hw *hw,
/* Done with writing */
/* Done with writing */
ixgb_cleanup_eeprom
(
hw
);
ixgb_cleanup_eeprom
(
hw
);
/* clear the init_ctrl_reg_1 to signify that the cache is invalidated */
ee_map
->
init_ctrl_reg_1
=
EEPROM_ICW1_SIGNATURE_CLEAR
;
return
;
return
;
}
}
...
@@ -478,6 +481,9 @@ ixgb_get_eeprom_data(struct ixgb_hw *hw)
...
@@ -478,6 +481,9 @@ ixgb_get_eeprom_data(struct ixgb_hw *hw)
if
(
checksum
!=
(
uint16_t
)
EEPROM_SUM
)
{
if
(
checksum
!=
(
uint16_t
)
EEPROM_SUM
)
{
DEBUGOUT
(
"ixgb_ee: Checksum invalid.
\n
"
);
DEBUGOUT
(
"ixgb_ee: Checksum invalid.
\n
"
);
/* clear the init_ctrl_reg_1 to signify that the cache is
* invalidated */
ee_map
->
init_ctrl_reg_1
=
EEPROM_ICW1_SIGNATURE_CLEAR
;
return
(
FALSE
);
return
(
FALSE
);
}
}
...
...
drivers/net/ixgb/ixgb_ee.h
View file @
eb6840cf
/*******************************************************************************
/*******************************************************************************
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
5
Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
under the terms of the GNU General Public License as published by the Free
...
@@ -63,6 +63,7 @@
...
@@ -63,6 +63,7 @@
#define EEPROM_ICW1_SIGNATURE_MASK 0xC000
#define EEPROM_ICW1_SIGNATURE_MASK 0xC000
#define EEPROM_ICW1_SIGNATURE_VALID 0x4000
#define EEPROM_ICW1_SIGNATURE_VALID 0x4000
#define EEPROM_ICW1_SIGNATURE_CLEAR 0x0000
/* For checksumming, the sum of all words in the EEPROM should equal 0xBABA. */
/* For checksumming, the sum of all words in the EEPROM should equal 0xBABA. */
#define EEPROM_SUM 0xBABA
#define EEPROM_SUM 0xBABA
...
...
drivers/net/ixgb/ixgb_ethtool.c
View file @
eb6840cf
/*******************************************************************************
/*******************************************************************************
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
5
Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
under the terms of the GNU General Public License as published by the Free
...
@@ -63,6 +63,7 @@ static struct ixgb_stats ixgb_gstrings_stats[] = {
...
@@ -63,6 +63,7 @@ static struct ixgb_stats ixgb_gstrings_stats[] = {
{
"tx_dropped"
,
IXGB_STAT
(
net_stats
.
tx_dropped
)},
{
"tx_dropped"
,
IXGB_STAT
(
net_stats
.
tx_dropped
)},
{
"multicast"
,
IXGB_STAT
(
net_stats
.
multicast
)},
{
"multicast"
,
IXGB_STAT
(
net_stats
.
multicast
)},
{
"collisions"
,
IXGB_STAT
(
net_stats
.
collisions
)},
{
"collisions"
,
IXGB_STAT
(
net_stats
.
collisions
)},
/* { "rx_length_errors", IXGB_STAT(net_stats.rx_length_errors) }, */
/* { "rx_length_errors", IXGB_STAT(net_stats.rx_length_errors) }, */
{
"rx_over_errors"
,
IXGB_STAT
(
net_stats
.
rx_over_errors
)},
{
"rx_over_errors"
,
IXGB_STAT
(
net_stats
.
rx_over_errors
)},
{
"rx_crc_errors"
,
IXGB_STAT
(
net_stats
.
rx_crc_errors
)},
{
"rx_crc_errors"
,
IXGB_STAT
(
net_stats
.
rx_crc_errors
)},
...
@@ -98,6 +99,7 @@ static int
...
@@ -98,6 +99,7 @@ static int
ixgb_get_settings
(
struct
net_device
*
netdev
,
struct
ethtool_cmd
*
ecmd
)
ixgb_get_settings
(
struct
net_device
*
netdev
,
struct
ethtool_cmd
*
ecmd
)
{
{
struct
ixgb_adapter
*
adapter
=
netdev
->
priv
;
struct
ixgb_adapter
*
adapter
=
netdev
->
priv
;
ecmd
->
supported
=
(
SUPPORTED_10000baseT_Full
|
SUPPORTED_FIBRE
);
ecmd
->
supported
=
(
SUPPORTED_10000baseT_Full
|
SUPPORTED_FIBRE
);
ecmd
->
advertising
=
(
SUPPORTED_10000baseT_Full
|
SUPPORTED_FIBRE
);
ecmd
->
advertising
=
(
SUPPORTED_10000baseT_Full
|
SUPPORTED_FIBRE
);
ecmd
->
port
=
PORT_FIBRE
;
ecmd
->
port
=
PORT_FIBRE
;
...
@@ -119,6 +121,7 @@ static int
...
@@ -119,6 +121,7 @@ static int
ixgb_set_settings
(
struct
net_device
*
netdev
,
struct
ethtool_cmd
*
ecmd
)
ixgb_set_settings
(
struct
net_device
*
netdev
,
struct
ethtool_cmd
*
ecmd
)
{
{
struct
ixgb_adapter
*
adapter
=
netdev
->
priv
;
struct
ixgb_adapter
*
adapter
=
netdev
->
priv
;
if
(
ecmd
->
autoneg
==
AUTONEG_ENABLE
||
if
(
ecmd
->
autoneg
==
AUTONEG_ENABLE
||
ecmd
->
speed
+
ecmd
->
duplex
!=
SPEED_10000
+
DUPLEX_FULL
)
ecmd
->
speed
+
ecmd
->
duplex
!=
SPEED_10000
+
DUPLEX_FULL
)
return
-
EINVAL
;
return
-
EINVAL
;
...
...
drivers/net/ixgb/ixgb_hw.c
View file @
eb6840cf
/*******************************************************************************
/*******************************************************************************
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
5
Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
under the terms of the GNU General Public License as published by the Free
...
...
drivers/net/ixgb/ixgb_hw.h
View file @
eb6840cf
/*******************************************************************************
/*******************************************************************************
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
5
Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
under the terms of the GNU General Public License as published by the Free
...
...
drivers/net/ixgb/ixgb_ids.h
View file @
eb6840cf
/*******************************************************************************
/*******************************************************************************
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
5
Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
under the terms of the GNU General Public License as published by the Free
...
...
drivers/net/ixgb/ixgb_main.c
View file @
eb6840cf
/*******************************************************************************
/*******************************************************************************
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
5
Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
under the terms of the GNU General Public License as published by the Free
...
@@ -29,6 +29,9 @@
...
@@ -29,6 +29,9 @@
#include "ixgb.h"
#include "ixgb.h"
/* Change Log
/* Change Log
* 1.0.88 01/05/05
* - include fix to the condition that determines when to quit NAPI - Robert Olsson
* - use netif_poll_{disable/enable} to synchronize between NAPI and i/f up/down
* 1.0.84 10/26/04
* 1.0.84 10/26/04
* - reset buffer_info->dma in Tx resource cleanup logic
* - reset buffer_info->dma in Tx resource cleanup logic
* 1.0.83 10/12/04
* 1.0.83 10/12/04
...
@@ -38,13 +41,14 @@
...
@@ -38,13 +41,14 @@
char
ixgb_driver_name
[]
=
"ixgb"
;
char
ixgb_driver_name
[]
=
"ixgb"
;
char
ixgb_driver_string
[]
=
"Intel(R) PRO/10GbE Network Driver"
;
char
ixgb_driver_string
[]
=
"Intel(R) PRO/10GbE Network Driver"
;
#ifndef CONFIG_IXGB_NAPI
#ifndef CONFIG_IXGB_NAPI
#define DRIVERNAPI
#define DRIVERNAPI
#else
#else
#define DRIVERNAPI "-NAPI"
#define DRIVERNAPI "-NAPI"
#endif
#endif
char
ixgb_driver_version
[]
=
"1.0.
87
-k2"
DRIVERNAPI
;
char
ixgb_driver_version
[]
=
"1.0.
90
-k2"
DRIVERNAPI
;
char
ixgb_copyright
[]
=
"Copyright (c) 1999-200
4
Intel Corporation."
;
char
ixgb_copyright
[]
=
"Copyright (c) 1999-200
5
Intel Corporation."
;
/* ixgb_pci_tbl - PCI Device ID Table
/* ixgb_pci_tbl - PCI Device ID Table
*
*
...
@@ -292,6 +296,9 @@ ixgb_up(struct ixgb_adapter *adapter)
...
@@ -292,6 +296,9 @@ ixgb_up(struct ixgb_adapter *adapter)
mod_timer
(
&
adapter
->
watchdog_timer
,
jiffies
);
mod_timer
(
&
adapter
->
watchdog_timer
,
jiffies
);
ixgb_irq_enable
(
adapter
);
ixgb_irq_enable
(
adapter
);
#ifdef CONFIG_IXGB_NAPI
netif_poll_enable
(
netdev
);
#endif
return
0
;
return
0
;
}
}
...
@@ -309,6 +316,9 @@ ixgb_down(struct ixgb_adapter *adapter, boolean_t kill_watchdog)
...
@@ -309,6 +316,9 @@ ixgb_down(struct ixgb_adapter *adapter, boolean_t kill_watchdog)
#endif
#endif
if
(
kill_watchdog
)
if
(
kill_watchdog
)
del_timer_sync
(
&
adapter
->
watchdog_timer
);
del_timer_sync
(
&
adapter
->
watchdog_timer
);
#ifdef CONFIG_IXGB_NAPI
netif_poll_disable
(
netdev
);
#endif
adapter
->
link_speed
=
0
;
adapter
->
link_speed
=
0
;
adapter
->
link_duplex
=
0
;
adapter
->
link_duplex
=
0
;
netif_carrier_off
(
netdev
);
netif_carrier_off
(
netdev
);
...
@@ -709,14 +719,8 @@ ixgb_configure_tx(struct ixgb_adapter *adapter)
...
@@ -709,14 +719,8 @@ ixgb_configure_tx(struct ixgb_adapter *adapter)
IXGB_WRITE_REG
(
hw
,
TDH
,
0
);
IXGB_WRITE_REG
(
hw
,
TDH
,
0
);
IXGB_WRITE_REG
(
hw
,
TDT
,
0
);
IXGB_WRITE_REG
(
hw
,
TDT
,
0
);
/* don't set up txdctl, it induces performance problems if
/* don't set up txdctl, it induces performance problems if configured
* configured incorrectly
* incorrectly */
txdctl = TXDCTL_PTHRESH_DEFAULT; // prefetch txds below this threshold
txdctl |= (TXDCTL_HTHRESH_DEFAULT // only prefetch if there are this many ready
<< IXGB_TXDCTL_HTHRESH_SHIFT);
IXGB_WRITE_REG (hw, TXDCTL, txdctl);
*/
/* Set the Tx Interrupt Delay register */
/* Set the Tx Interrupt Delay register */
IXGB_WRITE_REG
(
hw
,
TIDV
,
adapter
->
tx_int_delay
);
IXGB_WRITE_REG
(
hw
,
TIDV
,
adapter
->
tx_int_delay
);
...
@@ -849,10 +853,17 @@ ixgb_configure_rx(struct ixgb_adapter *adapter)
...
@@ -849,10 +853,17 @@ ixgb_configure_rx(struct ixgb_adapter *adapter)
IXGB_WRITE_REG
(
hw
,
RDH
,
0
);
IXGB_WRITE_REG
(
hw
,
RDH
,
0
);
IXGB_WRITE_REG
(
hw
,
RDT
,
0
);
IXGB_WRITE_REG
(
hw
,
RDT
,
0
);
/* burst 16 or burst when RXT0*/
/* set up pre-fetching of receive buffers so we get some before we
rxdctl
=
RXDCTL_WTHRESH_DEFAULT
<<
IXGB_RXDCTL_WTHRESH_SHIFT
* run out (default hardware behavior is to run out before fetching
|
RXDCTL_HTHRESH_DEFAULT
<<
IXGB_RXDCTL_HTHRESH_SHIFT
* more). This sets up to fetch if HTHRESH rx descriptors are avail
|
RXDCTL_PTHRESH_DEFAULT
<<
IXGB_RXDCTL_PTHRESH_SHIFT
;
* and the descriptors in hw cache are below PTHRESH. This avoids
* the hardware behavior of fetching <=512 descriptors in a single
* burst that pre-empts all other activity, usually causing fifo
* overflows. */
/* use WTHRESH to burst write 16 descriptors or burst when RXT0 */
rxdctl
=
RXDCTL_WTHRESH_DEFAULT
<<
IXGB_RXDCTL_WTHRESH_SHIFT
|
RXDCTL_HTHRESH_DEFAULT
<<
IXGB_RXDCTL_HTHRESH_SHIFT
|
RXDCTL_PTHRESH_DEFAULT
<<
IXGB_RXDCTL_PTHRESH_SHIFT
;
IXGB_WRITE_REG
(
hw
,
RXDCTL
,
rxdctl
);
IXGB_WRITE_REG
(
hw
,
RXDCTL
,
rxdctl
);
/* Enable Receive Checksum Offload for TCP and UDP */
/* Enable Receive Checksum Offload for TCP and UDP */
...
@@ -1094,7 +1105,6 @@ ixgb_watchdog(unsigned long data)
...
@@ -1094,7 +1105,6 @@ ixgb_watchdog(unsigned long data)
struct
ixgb_adapter
*
adapter
=
(
struct
ixgb_adapter
*
)
data
;
struct
ixgb_adapter
*
adapter
=
(
struct
ixgb_adapter
*
)
data
;
struct
net_device
*
netdev
=
adapter
->
netdev
;
struct
net_device
*
netdev
=
adapter
->
netdev
;
struct
ixgb_desc_ring
*
txdr
=
&
adapter
->
tx_ring
;
struct
ixgb_desc_ring
*
txdr
=
&
adapter
->
tx_ring
;
unsigned
int
i
;
ixgb_check_for_link
(
&
adapter
->
hw
);
ixgb_check_for_link
(
&
adapter
->
hw
);
...
@@ -1137,12 +1147,8 @@ ixgb_watchdog(unsigned long data)
...
@@ -1137,12 +1147,8 @@ ixgb_watchdog(unsigned long data)
}
}
}
}
/* Early detection of hung controller */
/* Force detection of hung controller every watchdog period */
i
=
txdr
->
next_to_clean
;
adapter
->
detect_tx_hung
=
TRUE
;
if
(
txdr
->
buffer_info
[
i
].
dma
&&
time_after
(
jiffies
,
txdr
->
buffer_info
[
i
].
time_stamp
+
HZ
)
&&
!
(
IXGB_READ_REG
(
&
adapter
->
hw
,
STATUS
)
&
IXGB_STATUS_TXOFF
))
netif_stop_queue
(
netdev
);
/* generate an interrupt to force clean up of any stragglers */
/* generate an interrupt to force clean up of any stragglers */
IXGB_WRITE_REG
(
&
adapter
->
hw
,
ICS
,
IXGB_INT_TXDW
);
IXGB_WRITE_REG
(
&
adapter
->
hw
,
ICS
,
IXGB_INT_TXDW
);
...
@@ -1669,19 +1675,15 @@ ixgb_clean(struct net_device *netdev, int *budget)
...
@@ -1669,19 +1675,15 @@ ixgb_clean(struct net_device *netdev, int *budget)
int
tx_cleaned
;
int
tx_cleaned
;
int
work_done
=
0
;
int
work_done
=
0
;
if
(
!
netif_carrier_ok
(
netdev
))
goto
quit_polling
;
tx_cleaned
=
ixgb_clean_tx_irq
(
adapter
);
tx_cleaned
=
ixgb_clean_tx_irq
(
adapter
);
ixgb_clean_rx_irq
(
adapter
,
&
work_done
,
work_to_do
);
ixgb_clean_rx_irq
(
adapter
,
&
work_done
,
work_to_do
);
*
budget
-=
work_done
;
*
budget
-=
work_done
;
netdev
->
quota
-=
work_done
;
netdev
->
quota
-=
work_done
;
/* if no Tx cleanup and not enough Rx work done, exit the polling mode */
/* if no Tx and not enough Rx work done, exit the polling mode */
if
((
!
tx_cleaned
&&
(
work_done
<
work_to_do
))
||
if
((
!
tx_cleaned
&&
(
work_done
==
0
))
||
!
netif_running
(
netdev
))
{
!
netif_running
(
netdev
))
{
netif_rx_complete
(
netdev
);
quit_polling:
netif_rx_complete
(
netdev
);
ixgb_irq_enable
(
adapter
);
ixgb_irq_enable
(
adapter
);
return
0
;
return
0
;
}
}
...
@@ -1742,6 +1744,17 @@ ixgb_clean_tx_irq(struct ixgb_adapter *adapter)
...
@@ -1742,6 +1744,17 @@ ixgb_clean_tx_irq(struct ixgb_adapter *adapter)
}
}
spin_unlock
(
&
adapter
->
tx_lock
);
spin_unlock
(
&
adapter
->
tx_lock
);
if
(
adapter
->
detect_tx_hung
)
{
/* detect a transmit hang in hardware, this serializes the
* check with the clearing of time_stamp and movement of i */
adapter
->
detect_tx_hung
=
FALSE
;
if
(
tx_ring
->
buffer_info
[
i
].
dma
&&
time_after
(
jiffies
,
tx_ring
->
buffer_info
[
i
].
time_stamp
+
HZ
)
&&
!
(
IXGB_READ_REG
(
&
adapter
->
hw
,
STATUS
)
&
IXGB_STATUS_TXOFF
))
netif_stop_queue
(
netdev
);
}
return
cleaned
;
return
cleaned
;
}
}
...
...
drivers/net/ixgb/ixgb_osdep.h
View file @
eb6840cf
/*******************************************************************************
/*******************************************************************************
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
5
Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
under the terms of the GNU General Public License as published by the Free
...
...
drivers/net/ixgb/ixgb_param.c
View file @
eb6840cf
/*******************************************************************************
/*******************************************************************************
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
5
Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
under the terms of the GNU General Public License as published by the Free
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment