Linux backports project
 help / color / mirror / Atom feed
* [PATCH v4 00/12] backports: add igb driver
@ 2014-01-29  9:18 Stefan Assmann
  2014-01-29  9:18 ` [PATCH v4 01/12] backports: igb fixes for linux-3.13 Stefan Assmann
                   ` (12 more replies)
  0 siblings, 13 replies; 15+ messages in thread
From: Stefan Assmann @ 2014-01-29  9:18 UTC (permalink / raw)
  To: mcgrof; +Cc: backports, hauke, sassmann

This is a patchset for inclusion of the Intel igb wired ethernet driver.
Patches are split per kernel release that makes it easier to review
the changes and gives a nice history of what was necessary for each
release. Also the igb driver changes have been split up into individual
patches in patches/collateral-evolutions/network/84-ethernet. This and
file names are up for discussion, suggestions welcome.

v2:
Instead of backporting struct ethtool_ops the code in igb has been
wrapped in if LINUX_VERSION_CODE statements. This will result in higher
maintenance because of conflicts with future upstream igb changes but it
seems there's no better solution so far.
The patches in patches/collateral-evolutions/network/84-ethernet have
been kept separate but with a leading number to make sure they get
applied in the correct order.
The code that activates igb has been pushed to the end of the series to
not break any bisecting.
v3:
Use original struct ptp_clock and handle ptp_clock_register() with a
define. Also removed unused function warnings by wrapping the code
in if LINUX_VERSION_CODE statements.
v4:
Add several LINUX_BACKPORT defines to prevent possible clashes with
distro backports. Patches rebased and tested against next-20140124.

Stefan Assmann (12):
  backports: igb fixes for linux-3.13
  backports: igb fixes for linux-3.12
  backports: igb fixes for linux-3.9
  backports: igb fixes for linux-3.8
  backports: igb fixes for linux-3.7
  backports: igb fixes for linux-3.6
  backports: igb fixes for linux-3.5
  backports: igb fixes for linux-3.4
  backports: igb fixes for linux-3.3
  backports: igb fixes for linux-3.2
  backports: igb fixes for linux-3.1
  backports: enable igb and add defconfig

 backport/backport-include/linux/ethtool.h          |   79 ++++++++++++++++++++
 backport/backport-include/linux/gfp.h              |   10 +++
 backport/backport-include/linux/if.h               |    8 ++
 backport/backport-include/linux/mdio.h             |   56 ++++++++++++++
 backport/backport-include/linux/pci.h              |   46 +++++++++++
 backport/backport-include/linux/pci_regs.h         |    8 ++
 backport/backport-include/linux/ptp_clock_kernel.h |   38 ++++++++++
 backport/backport-include/linux/skbuff.h           |   74 ++++++++++++++++++
 backport/backport-include/linux/u64_stats_sync.h   |   16 ++++-
 backport/compat/backport-3.10.c                    |   46 +++++++++++
 backport/compat/compat-3.5.c                       |   11 +++
 backport/compat/compat-3.8.c                       |   34 +++++++++
 backport/defconfigs/igb                            |    2 +
 copy-list                                          |    4 +
 .../84-ethernet/0001-igb_net_device_ops.patch      |   56 ++++++++++++++
 .../84-ethernet/0002-igb_pci_sriov_configure.patch |   57 ++++++++++++++
 .../network/84-ethernet/0004-igb_err_handler.patch |   16 ++++
 .../network/84-ethernet/0005-igb_mdi.patch         |   49 ++++++++++++
 .../network/84-ethernet/0006-igb_eee.patch         |   31 ++++++++
 .../network/84-ethernet/0007-igb_ethtool_ops.patch |   56 ++++++++++++++
 .../network/84-ethernet/0008-igb_no_fcs.patch      |   16 ++++
 .../network/84-ethernet/0009-igb_vlan_rx_vid.patch |   64 ++++++++++++++++
 .../network/84-ethernet/0010-igb_ethtool_ops.patch |   48 ++++++++++++
 .../network/84-ethernet/0011-igb_ethtool_ops.patch |   31 ++++++++
 .../84-ethernet/0012-igb_ndo_set_vf_spoofchk.patch |   51 +++++++++++++
 .../network/84-ethernet/0013-igb_hwmon.patch       |   30 ++++++++
 26 files changed, 935 insertions(+), 2 deletions(-)
 create mode 100644 backport/backport-include/linux/gfp.h
 create mode 100644 backport/backport-include/linux/mdio.h
 create mode 100644 backport/backport-include/linux/ptp_clock_kernel.h
 create mode 100644 backport/defconfigs/igb
 create mode 100644 patches/collateral-evolutions/network/84-ethernet/0001-igb_net_device_ops.patch
 create mode 100644 patches/collateral-evolutions/network/84-ethernet/0002-igb_pci_sriov_configure.patch
 create mode 100644 patches/collateral-evolutions/network/84-ethernet/0004-igb_err_handler.patch
 create mode 100644 patches/collateral-evolutions/network/84-ethernet/0005-igb_mdi.patch
 create mode 100644 patches/collateral-evolutions/network/84-ethernet/0006-igb_eee.patch
 create mode 100644 patches/collateral-evolutions/network/84-ethernet/0007-igb_ethtool_ops.patch
 create mode 100644 patches/collateral-evolutions/network/84-ethernet/0008-igb_no_fcs.patch
 create mode 100644 patches/collateral-evolutions/network/84-ethernet/0009-igb_vlan_rx_vid.patch
 create mode 100644 patches/collateral-evolutions/network/84-ethernet/0010-igb_ethtool_ops.patch
 create mode 100644 patches/collateral-evolutions/network/84-ethernet/0011-igb_ethtool_ops.patch
 create mode 100644 patches/collateral-evolutions/network/84-ethernet/0012-igb_ndo_set_vf_spoofchk.patch
 create mode 100644 patches/collateral-evolutions/network/84-ethernet/0013-igb_hwmon.patch


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2014-02-02 21:27 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-29  9:18 [PATCH v4 00/12] backports: add igb driver Stefan Assmann
2014-01-29  9:18 ` [PATCH v4 01/12] backports: igb fixes for linux-3.13 Stefan Assmann
2014-01-29  9:18 ` [PATCH v4 02/12] backports: igb fixes for linux-3.12 Stefan Assmann
2014-01-29  9:19 ` [PATCH v4 03/12] backports: igb fixes for linux-3.9 Stefan Assmann
2014-01-29  9:19 ` [PATCH v4 04/12] backports: igb fixes for linux-3.8 Stefan Assmann
2014-01-29  9:19 ` [PATCH v4 05/12] backports: igb fixes for linux-3.7 Stefan Assmann
2014-01-29  9:19 ` [PATCH v4 06/12] backports: igb fixes for linux-3.6 Stefan Assmann
2014-01-29  9:19 ` [PATCH v4 07/12] backports: igb fixes for linux-3.5 Stefan Assmann
2014-01-29  9:19 ` [PATCH v4 08/12] backports: igb fixes for linux-3.4 Stefan Assmann
2014-01-29  9:19 ` [PATCH v4 09/12] backports: igb fixes for linux-3.3 Stefan Assmann
2014-01-29  9:19 ` [PATCH v4 10/12] backports: igb fixes for linux-3.2 Stefan Assmann
2014-01-29  9:19 ` [PATCH v4 11/12] backports: igb fixes for linux-3.1 Stefan Assmann
2014-01-29  9:19 ` [PATCH v4 12/12] backports: enable igb and add defconfig Stefan Assmann
2014-01-31 23:51 ` [PATCH v4 00/12] backports: add igb driver Hauke Mehrtens
2014-02-02 21:17   ` Stefan Assmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox