|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| README.illumos | H A D | 16-Mar-2017 | 620 | 15 | 11 |
| THIRDPARTYLICENSE | H A D | 16-Apr-2016 | 1 KiB | 27 | 19 |
| THIRDPARTYLICENSE.descrip | H A D | 16-Apr-2016 | 13 | 2 | 1 |
| ixgbe_82598.c | H A D | 16-Jun-2016 | 40.8 KiB | 1,438 | 869 |
| ixgbe_82598.h | H A D | 16-Jun-2016 | 2.7 KiB | 54 | 18 |
| ixgbe_82599.c | H A D | 16-Jun-2016 | 77 KiB | 2,611 | 1,566 |
| ixgbe_82599.h | H A D | 16-Jun-2016 | 3.3 KiB | 66 | 30 |
| ixgbe_api.c | H A D | 16-Jun-2016 | 46.7 KiB | 1,624 | 703 |
| ixgbe_api.h | H A D | 16-Jun-2016 | 10.4 KiB | 221 | 175 |
| ixgbe_common.c | H A D | 16-Mar-2017 | 136 KiB | 4,986 | 2,876 |
| ixgbe_common.h | H A D | 16-Mar-2017 | 8.2 KiB | 179 | 126 |
| ixgbe_dcb.c | H A D | 16-Jun-2016 | 21.6 KiB | 744 | 475 |
| ixgbe_dcb.h | H A D | 16-Jun-2016 | 6.2 KiB | 176 | 95 |
| ixgbe_dcb_82598.c | H A D | 16-Jun-2016 | 10.5 KiB | 362 | 181 |
| ixgbe_dcb_82598.h | H A D | 16-Jun-2016 | 4.1 KiB | 101 | 41 |
| ixgbe_dcb_82599.c | H A D | 16-Jun-2016 | 16.8 KiB | 595 | 294 |
| ixgbe_dcb_82599.h | H A D | 16-Jun-2016 | 5.7 KiB | 155 | 71 |
| ixgbe_mbx.c | H A D | 16-Jun-2016 | 19.8 KiB | 769 | 372 |
| ixgbe_mbx.h | H A D | 16-Jun-2016 | 6.9 KiB | 152 | 73 |
| ixgbe_phy.c | H A D | 16-Jun-2016 | 74.2 KiB | 2,759 | 1,741 |
| ixgbe_phy.h | H A D | 16-Jun-2016 | 8.6 KiB | 212 | 155 |
| ixgbe_type.h | H A D | 28-Jul-2016 | 156.8 KiB | 4,017 | 3,272 |
| ixgbe_vf.c | H A D | 16-Jun-2016 | 20.6 KiB | 725 | 382 |
| ixgbe_vf.h | H A D | 16-Jun-2016 | 5.3 KiB | 142 | 95 |
| ixgbe_x540.c | H A D | 16-Jun-2016 | 29 KiB | 1,014 | 558 |
| ixgbe_x540.h | H A D | 16-Jun-2016 | 3.1 KiB | 68 | 27 |
| ixgbe_x550.c | H A D | 16-Jun-2016 | 86.2 KiB | 3,146 | 1,897 |
| ixgbe_x550.h | H A D | 16-Jun-2016 | 5.3 KiB | 109 | 71 |
README.illumos
1This directory contains the 'common code' to the ixgbe driver. This code
2comes from FreeBSD.
3
4The following are a subset of the current modifications that are being
5made to this common code to facilitate illumos specific features:
6
7o IXGBE_REMOVED
8
9The IXGBE_REMOVED macro normally taks a pointer to the hardware address.
10However, that does not allow us to go through and actually do a useful
11check. Instead we modify all users of this macro to pass the struct
12ixgbe_hw of the ixgbe_t. Importantly, we also remove the current
13definition of IXGBE_REMOVED in ixbe_common.h and instead use the
14definition in ixgbe_osdep.h.
15