mbox

[Quantal,SRU,pull-request] alx Ethernet driver

Message ID 1360092496.3164.178.camel@fourier
State New
Headers show

Pull-request

git://kernel.ubuntu.com/kamal/ubuntu-quantal.git alx-import

Message

Kamal Mostafa Feb. 5, 2013, 7:28 p.m. UTC
BugLink: http://bugs.launchpad.net/bugs/927782

Import the upstream alx (Qualcomm Atheros) Ethernet driver into
ubuntu/alx/.

This import is from Adrian Chadd's alx repo on github:
http://github.com/erikarn/alx
(Adrian is taking care of alx while Luis is on holiday).

 -Kamal

-- >8 ------------------------

The following changes since commit 9e7645702e08b9f9287dae29ec59c25d17d98b7d:

  UBUNTU: d-i: Add mellanox ethernet drivers to nic-modules (2013-02-05 10:48:28 -0700)

are available in the git repository at:

  git://kernel.ubuntu.com/kamal/ubuntu-quantal.git alx-import

for you to fetch changes up to bde4894681ae2062d686c29e3d74ff4ed1cac8bd:

  UBUNTU: [Config] Add alx to d-i nic-modules (2013-02-05 11:07:17 -0800)

----------------------------------------------------------------
Kamal Mostafa (1):
      UBUNTU: SAUCE: alx driver import script

Qualcomm Atheros, Inc (1):
      UBUNTU: SAUCE: alx: Update to heads/master

Tim Gardner (2):
      UBUNTU: [config] CONFIG_ALX=m
      UBUNTU: [Config] Add alx to d-i nic-modules

 debian.master/config/config.common.ubuntu |    1 +
 debian.master/d-i/modules/nic-modules     |    1 +
 ubuntu/Kconfig                            |    4 +
 ubuntu/Makefile                           |    4 +
 ubuntu/alx/Kconfig                        |   18 +
 ubuntu/alx/LICENSE                        |   15 +
 ubuntu/alx/Makefile                       |    3 +
 ubuntu/alx/README.md                      |   60 +
 ubuntu/alx/alx.h                          |  213 +++
 ubuntu/alx/alx_ethtool.c                  | 1802 ++++++++++++++++++
 ubuntu/alx/alx_hw.c                       | 1461 +++++++++++++++
 ubuntu/alx/alx_hw.h                       |  661 +++++++
 ubuntu/alx/alx_main.c                     | 2818 +++++++++++++++++++++++++++++
 ubuntu/alx/alx_reg.h                      | 2295 +++++++++++++++++++++++
 ubuntu/alx/update.sh                      |   22 +
 15 files changed, 9378 insertions(+)
 create mode 100644 ubuntu/alx/Kconfig
 create mode 100644 ubuntu/alx/LICENSE
 create mode 100644 ubuntu/alx/Makefile
 create mode 100644 ubuntu/alx/README.md
 create mode 100644 ubuntu/alx/alx.h
 create mode 100644 ubuntu/alx/alx_ethtool.c
 create mode 100644 ubuntu/alx/alx_hw.c
 create mode 100644 ubuntu/alx/alx_hw.h
 create mode 100644 ubuntu/alx/alx_main.c
 create mode 100644 ubuntu/alx/alx_reg.h
 create mode 100755 ubuntu/alx/update.sh

Comments

Kamal Mostafa Feb. 5, 2013, 7:47 p.m. UTC | #1
On Tue, 2013-02-05 at 11:28 -0800, Kamal Mostafa wrote:
> BugLink: http://bugs.launchpad.net/bugs/927782
> 
> Import the upstream alx (Qualcomm Atheros) Ethernet driver into
> ubuntu/alx/.
> 
> This import is from Adrian Chadd's alx repo on github:
> http://github.com/erikarn/alx
> (Adrian is taking care of alx while Luis is on holiday).


Testing info:

I have performed basic smoke-testing of this driver in Quantal (and
Raring, where it has only just landed).

We might wish to let the driver bake in Raring for a short while before
admitting into Quantal.

 -Kamal


> 
> -- >8 ------------------------
> 
> The following changes since commit 9e7645702e08b9f9287dae29ec59c25d17d98b7d:
> 
>   UBUNTU: d-i: Add mellanox ethernet drivers to nic-modules (2013-02-05 10:48:28 -0700)
> 
> are available in the git repository at:
> 
>   git://kernel.ubuntu.com/kamal/ubuntu-quantal.git alx-import
> 
> for you to fetch changes up to bde4894681ae2062d686c29e3d74ff4ed1cac8bd:
> 
>   UBUNTU: [Config] Add alx to d-i nic-modules (2013-02-05 11:07:17 -0800)
> 
> ----------------------------------------------------------------
> Kamal Mostafa (1):
>       UBUNTU: SAUCE: alx driver import script
> 
> Qualcomm Atheros, Inc (1):
>       UBUNTU: SAUCE: alx: Update to heads/master
> 
> Tim Gardner (2):
>       UBUNTU: [config] CONFIG_ALX=m
>       UBUNTU: [Config] Add alx to d-i nic-modules
> 
>  debian.master/config/config.common.ubuntu |    1 +
>  debian.master/d-i/modules/nic-modules     |    1 +
>  ubuntu/Kconfig                            |    4 +
>  ubuntu/Makefile                           |    4 +
>  ubuntu/alx/Kconfig                        |   18 +
>  ubuntu/alx/LICENSE                        |   15 +
>  ubuntu/alx/Makefile                       |    3 +
>  ubuntu/alx/README.md                      |   60 +
>  ubuntu/alx/alx.h                          |  213 +++
>  ubuntu/alx/alx_ethtool.c                  | 1802 ++++++++++++++++++
>  ubuntu/alx/alx_hw.c                       | 1461 +++++++++++++++
>  ubuntu/alx/alx_hw.h                       |  661 +++++++
>  ubuntu/alx/alx_main.c                     | 2818 +++++++++++++++++++++++++++++
>  ubuntu/alx/alx_reg.h                      | 2295 +++++++++++++++++++++++
>  ubuntu/alx/update.sh                      |   22 +
>  15 files changed, 9378 insertions(+)
>  create mode 100644 ubuntu/alx/Kconfig
>  create mode 100644 ubuntu/alx/LICENSE
>  create mode 100644 ubuntu/alx/Makefile
>  create mode 100644 ubuntu/alx/README.md
>  create mode 100644 ubuntu/alx/alx.h
>  create mode 100644 ubuntu/alx/alx_ethtool.c
>  create mode 100644 ubuntu/alx/alx_hw.c
>  create mode 100644 ubuntu/alx/alx_hw.h
>  create mode 100644 ubuntu/alx/alx_main.c
>  create mode 100644 ubuntu/alx/alx_reg.h
>  create mode 100755 ubuntu/alx/update.sh
>
Tim Gardner Feb. 5, 2013, 8:05 p.m. UTC | #2
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

I confirmed there is no PCI ID overlap with atl1c, so there should be
little chance for regression.

- -- 
Tim Gardner tim.gardner@canonical.com
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with undefined - http://www.enigmail.net/

iQIcBAEBCgAGBQJREWX+AAoJED12yEX6FEfKlCEP/i8kuQXkW5OYGzv9JZO3VGdl
npVJ02naqkmNNlDLPOolss/LcziMpl2UZnFD7MsS26J2AuAw0uZufFlOc2r2Ke1i
bx1SPfykWlaYKDOTHxNoBsjrZce6O3/glBOnm+lyIuhsze4aciA7jhSIvOf5ViHz
QgyefyXduLIERMe2uHt9bx+3ZHB/3PC5qsy3hmvZRHA8+suxseszAVwDSF4/hAFM
w4hZUWKoukPcBsMB4C7/k9Z8ObwkooFXEDZ13Kt4p4LG09X4ONMuljTIol9dZr6D
LyHYSpiI9tYZsHrJuu39qwIb5YaYpXt3ygY5zBzC5RA5odAr45Oef+Pg7Y7lpfl+
Fq4o/T3LDVQtbecOfGzjZvX65UXsbJL0141O8Hdx/w41EXyQvUO9QfAYabYfmZPM
/GIvIWtsaSpsZghCCL0M7CcWxsfnJpj9kvYV5yKrEc1+KyWxO2ZVL3e/H4UuNddp
x65ETgEUicz5hxE5o6gaIPmfrQgDfT6uvcx6BPqHpYYIhzbrBWCnZnfCkNpdM3mu
YhZ94fngazIIuSfQKtQn8NR0lqppXAxU4/hqPvtBmpKE+hJnZOpBjn6mFGUcY/w7
nimYL5BJYi2xrW05qF4Dy9C9tFnfgJhxQDZAgjfiXgs/p9Cz14dN6BGdkOLEksFy
3TBIu3hmSeseTX4kS/ke
=Y2Wa
-----END PGP SIGNATURE-----
Brad Figg Feb. 5, 2013, 8:06 p.m. UTC | #3
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 02/05/2013 11:28 AM, Kamal Mostafa wrote:
> BugLink: http://bugs.launchpad.net/bugs/927782
> 
> Import the upstream alx (Qualcomm Atheros) Ethernet driver into ubuntu/alx/.
> 
> This import is from Adrian Chadd's alx repo on github: http://github.com/erikarn/alx (Adrian is taking care of alx while Luis is on holiday).
> 
> -Kamal
> 
> -- >8 ------------------------
> 
> The following changes since commit 9e7645702e08b9f9287dae29ec59c25d17d98b7d:
> 
> UBUNTU: d-i: Add mellanox ethernet drivers to nic-modules (2013-02-05 10:48:28 -0700)
> 
> are available in the git repository at:
> 
> git://kernel.ubuntu.com/kamal/ubuntu-quantal.git alx-import
> 
> for you to fetch changes up to bde4894681ae2062d686c29e3d74ff4ed1cac8bd:
> 
> UBUNTU: [Config] Add alx to d-i nic-modules (2013-02-05 11:07:17 -0800)
> 
> ---------------------------------------------------------------- Kamal Mostafa (1): UBUNTU: SAUCE: alx driver import script
> 
> Qualcomm Atheros, Inc (1): UBUNTU: SAUCE: alx: Update to heads/master
> 
> Tim Gardner (2): UBUNTU: [config] CONFIG_ALX=m UBUNTU: [Config] Add alx to d-i nic-modules
> 
> debian.master/config/config.common.ubuntu |    1 + debian.master/d-i/modules/nic-modules     |    1 + ubuntu/Kconfig                            |    4 + ubuntu/Makefile                           |    4 + ubuntu/alx/Kconfig                        |
> 18 + ubuntu/alx/LICENSE                        |   15 + ubuntu/alx/Makefile                       |    3 + ubuntu/alx/README.md                      |   60 + ubuntu/alx/alx.h                          |  213 +++ ubuntu/alx/alx_ethtool.c
> | 1802 ++++++++++++++++++ ubuntu/alx/alx_hw.c                       | 1461 +++++++++++++++ ubuntu/alx/alx_hw.h                       |  661 +++++++ ubuntu/alx/alx_main.c                     | 2818 +++++++++++++++++++++++++++++ ubuntu/alx/alx_reg.h
> | 2295 +++++++++++++++++++++++ ubuntu/alx/update.sh                      |   22 + 15 files changed, 9378 insertions(+) create mode 100644 ubuntu/alx/Kconfig create mode 100644 ubuntu/alx/LICENSE create mode 100644 ubuntu/alx/Makefile create mode
> 100644 ubuntu/alx/README.md create mode 100644 ubuntu/alx/alx.h create mode 100644 ubuntu/alx/alx_ethtool.c create mode 100644 ubuntu/alx/alx_hw.c create mode 100644 ubuntu/alx/alx_hw.h create mode 100644 ubuntu/alx/alx_main.c create mode 100644
> ubuntu/alx/alx_reg.h create mode 100755 ubuntu/alx/update.sh
> 
> 
> 

I'd like to see some indication of testing either in this email or in
the bug that is linked. Looking at the bug, there appears to be a fair
number of folks with affected systems that could do some testing.

With that said, getting it into -proposed will help with additional
testing.

- -- 
Brad Figg brad.figg@canonical.com http://www.canonical.com
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBAgAGBQJREWZVAAoJEAx7WJsQW+f3GNoP/06ZwnxA/1PIjVJNheIyoR++
r1GAakkO6TC6VBGN+fWVcbylWczSXVYKpVpY9YXkXIxESUzJTgi4AS8iMywvsnth
gdNyqDMR4/E+6KNacdx5BxTmgRuKSoqBpFTbsc2Kwt1K+EjEfMB3RGlEaYfjSsMR
zGlnqxTwKSNhrl+Ovwy/7/H8nRd/Abz069mkRpOes3BSZSXnjlvmsY/PdKv4iCzy
ELLOHPexithsNpTa5qTDMYWiSgJJap7rVRrvynl8TDKppjeBF71EPnSusc7p1nm1
zIoyqwBbRHThllQevfESHhEXH2iSHw06wiG4M09yZgJPt28WDO4wqxtPPdT8ruTQ
5hB3WlAlTGxPjrDiffp3vP99/eRrjDDPWs5CHnk08G1MJT9TZwp9mq6/7B91D2zZ
kJC0gx6ChmBl2ll0F43AyWs1RFr0LLYo3p9EoDTTz5pInUmiUm28t8wJeO7Pah3M
nWNmyHmbv8npzEgi6isul8ThfGGX5eZnkUKbGpaBzzmZ1UdXukTeREnhsAxu0+Zb
m9OSo8ETEGqCCOlu23GnVWgHtho5yl7DKbjgN9ojKa3ljNdl9tYos8JCo6/QPeAp
o7Md9j29FcEdNSx50wU8dnupeTwWZ7zkHtrltUlSLbsV7vx4CA6V2+yarWHtX5M/
wf1Hjh2Yrh25ewAKzmcE
=0GUB
-----END PGP SIGNATURE-----
Tim Gardner Feb. 5, 2013, 8:10 p.m. UTC | #4
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512


- -- 
Tim Gardner tim.gardner@canonical.com
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with undefined - http://www.enigmail.net/

iQIcBAEBCgAGBQJREWchAAoJED12yEX6FEfKJ68P/jDF/DE37+nCVVwlS5wCsxvr
XrgT/Cd8ojj85edNhMVLL6E85cCH2ptiVRrzvvAwLBWlcPQDl72l60dTDSStNiWT
FAR6dE+H7fGxP8VbpXb5zwCfk8+fGJpihcu+giepHoXh2DUqLgfHwd6kYjbIv8ra
uEzEZsGADB4Zj24/GQuLBL4AO62hPd8bOdddAZNAcNIbnxZTmMGoFZkVf5rbN9sI
jXWhkVafbm/cNkVJVTo89vXuFlWZ9CUMfhHACPvy1Munh5/HiEXPwy05dczUX7Gg
A0voGkuKGlQbHVJ3m+RgVzoyIT2DnjvYVs5FCG+JYkiiFHhCAqnEVgfPeeLFdApr
x9yaFu+vKMyfq0zmrIYzXBGpcrBD6WvZoPr07B9O8DcaU/chSPSnjjjaDbQAvcZe
ZSDAzfr0+5ebJrHQu10XWgtvHAhsjAStKzkVy+9Lwuf3p/MeJs9+rg40c0XmJ6he
AFCjld/cA6CQ1SgdfI6rtGpZoysMZiaoE0wT+9SEeEedxZwsWOoKy7DwvCepB2c+
Cw6+jW7Rw8J49tPAAywZ1fFAZ9rchcavwWtXKRtWh8DXy8rSOIYZzfJPhgZz1yNO
2Pzd33Ji12SH7wqiyC9QayxYrqLFz1r2W4m2hrtpapjTJFc2dX/zd8E8yStt7dUs
k0vbUY558vyp9Pan+Am5
=KTJj
-----END PGP SIGNATURE-----