lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 21 May 2015 05:45:03 -0400
From:	Allen Hubbe <Allen.Hubbe@....com>
To:	linux-ntb@...glegroups.com
Cc:	linux-kernel@...r.kernel.org, linux-pci@...r.kernel.org,
	Jon Mason <jdmason@...zu.us>,
	Dave Jiang <dave.jiang@...el.com>,
	Allen Hubbe <Allen.Hubbe@....com>
Subject: RE: [PATCH v2 00/17] NTB: Add NTB hardware abstraction layer

The patches in this set (v2) reply to a different message id than the 
cover letter I sent.  Please pardon my mistake.  Other than that, I hope 
the patches are ok this time around.

I wrote the cover letter, and then kept the same copy after fixing a few 
more things.  This has the email id of the cover letter generated before 
the fixes.

I should have instead copied the subject line and body into the new cover 
letter that was generated for the fixed patch set.  Now I have learned my 
lesson.

In addition to the email id, the diff stat is also for the patch set that 
I didn't send, before the last fixes.  The diff stat doesn't differ by 
much.  If anybody cares, here is the exact diff stat for the v2.

 Documentation/ntb.txt               |  127 +++
 MAINTAINERS                         |   16 +-
 drivers/net/ntb_netdev.c            |   58 +-
 drivers/ntb/Kconfig                 |   39 +-
 drivers/ntb/Makefile                |    4 +-
 drivers/ntb/hw/Kconfig              |    1 +
 drivers/ntb/hw/Makefile             |    1 +
 drivers/ntb/hw/intel/Kconfig        |    7 +
 drivers/ntb/hw/intel/Makefile       |    1 +
 drivers/ntb/hw/intel/ntb_hw_intel.c | 2222 
+++++++++++++++++++++++++++++++++++++++++++++
 drivers/ntb/hw/intel/ntb_hw_intel.h |  342 +++++++
 drivers/ntb/ntb.c                   |  251 +++++
 drivers/ntb/ntb_hw.c                | 1896 ------------------------------
--------
 drivers/ntb/ntb_hw.h                |  256 ------
 drivers/ntb/ntb_regs.h              |  177 ----
 drivers/ntb/ntb_transport.c         | 1023 +++++++++++++--------
 drivers/ntb/test/Kconfig            |   19 +
 drivers/ntb/test/Makefile           |    2 +
 drivers/ntb/test/ntb_pingpong.c     |  251 +++++
 drivers/ntb/test/ntb_tool.c         |  557 ++++++++++++
 include/linux/ntb.h                 |  969 +++++++++++++++++++-
 include/linux/ntb_transport.h       |   85 ++
 22 files changed, 5494 insertions(+), 2810 deletions(-)
 create mode 100644 Documentation/ntb.txt
 create mode 100644 drivers/ntb/hw/Kconfig
 create mode 100644 drivers/ntb/hw/Makefile
 create mode 100644 drivers/ntb/hw/intel/Kconfig
 create mode 100644 drivers/ntb/hw/intel/Makefile
 create mode 100644 drivers/ntb/hw/intel/ntb_hw_intel.c
 create mode 100644 drivers/ntb/hw/intel/ntb_hw_intel.h
 create mode 100644 drivers/ntb/ntb.c
 delete mode 100644 drivers/ntb/ntb_hw.c
 delete mode 100644 drivers/ntb/ntb_hw.h
 delete mode 100644 drivers/ntb/ntb_regs.h
 create mode 100644 drivers/ntb/test/Kconfig
 create mode 100644 drivers/ntb/test/Makefile
 create mode 100644 drivers/ntb/test/ntb_pingpong.c
 create mode 100644 drivers/ntb/test/ntb_tool.c
 create mode 100644 include/linux/ntb_transport.h

Finally, I've faked the email id of this message, so the patches appear to 
reply to this one.  I hope this will clean up any threading for people who 
use that feature in their email clients.

From: Allen Hubbe [mailto:Allen.Hubbe@....com]
> The NTB drivers currently support only one hardware driver, and one
> client type.  This patch set adds an abstraction layer, enabling
> hardware drivers by other vendors, and clients other than ntb_transport.
> 
> The commits in this set may also be pulled from:
> github.com/allenbh/linux
> tagged ntb-abh-v2
> 
> The differences can be seen by comparing against the tag ntb-abh-v1.
> 
> Different in v2:
>  - Rewrite shortlog descriptions for spelling and style
>  - Remove extraneous NTB dependency from Kconfig files
>  - Reindent Kconfig files with leading tabs
>  - Reindent some lines in ntb_transport
>  - Append patch NTB: Rename intel hw to proper platform names
> 
> Allen Hubbe (12):
>   NTB: Move files in preparation for NTB abstraction
>   NTB: Add NTB hardware abstraction layer
>   NTB: Add parameters for Intel SNB B2B addresses
>   NTB: Add ping pong test client
>   NTB: Add tool test client
>   NTB: Rate limit ntb_qp_link_work
>   NTB: Differentiate transport link down messages
>   NTB: Do not advance transport RX on link down
>   NTB: Reset transport QP link stats on down
>   NTB: Use NUMA memory and DMA chan in transport
>   NTB: Use NUMA memory in Intel driver
>   NTB: Fix small code format issues in transport
> 
> Dave Jiang (5):
>   NTB: Enable link for Intel root port mode in probe
>   NTB: Check the device ID to set errata flags
>   NTB: Improve performance with write combining
>   NTB: Default to CPU memcpy for performance
>   NTB: Rename intel hw to proper platform names
> 
>  Documentation/ntb.txt               |  127 ++
>  MAINTAINERS                         |   16 +-
>  drivers/net/ntb_netdev.c            |   58 +-
>  drivers/ntb/Kconfig                 |   39 +-
>  drivers/ntb/Makefile                |    4 +-
>  drivers/ntb/hw/Kconfig              |    1 +
>  drivers/ntb/hw/Makefile             |    1 +
>  drivers/ntb/hw/intel/Kconfig        |    7 +
>  drivers/ntb/hw/intel/Makefile       |    1 +
>  drivers/ntb/hw/intel/ntb_hw_intel.c | 2222
> +++++++++++++++++++++++++++++++++++
>  drivers/ntb/hw/intel/ntb_hw_intel.h |  342 ++++++
>  drivers/ntb/ntb.c                   |  251 ++++
>  drivers/ntb/ntb_hw.c                | 1896 ----------------------------
> --
>  drivers/ntb/ntb_hw.h                |  256 ----
>  drivers/ntb/ntb_regs.h              |  177 ---
>  drivers/ntb/ntb_transport.c         | 1018 +++++++++-------
>  drivers/ntb/test/Kconfig            |   19 +
>  drivers/ntb/test/Makefile           |    2 +
>  drivers/ntb/test/ntb_pingpong.c     |  251 ++++
>  drivers/ntb/test/ntb_tool.c         |  557 +++++++++
>  include/linux/ntb.h                 |  969 ++++++++++++++-
>  include/linux/ntb_transport.h       |   85 ++
>  22 files changed, 5491 insertions(+), 2808 deletions(-)
>  create mode 100644 Documentation/ntb.txt
>  create mode 100644 drivers/ntb/hw/Kconfig
>  create mode 100644 drivers/ntb/hw/Makefile
>  create mode 100644 drivers/ntb/hw/intel/Kconfig
>  create mode 100644 drivers/ntb/hw/intel/Makefile
>  create mode 100644 drivers/ntb/hw/intel/ntb_hw_intel.c
>  create mode 100644 drivers/ntb/hw/intel/ntb_hw_intel.h
>  create mode 100644 drivers/ntb/ntb.c
>  delete mode 100644 drivers/ntb/ntb_hw.c
>  delete mode 100644 drivers/ntb/ntb_hw.h
>  delete mode 100644 drivers/ntb/ntb_regs.h
>  create mode 100644 drivers/ntb/test/Kconfig
>  create mode 100644 drivers/ntb/test/Makefile
>  create mode 100644 drivers/ntb/test/ntb_pingpong.c
>  create mode 100644 drivers/ntb/test/ntb_tool.c
>  create mode 100644 include/linux/ntb_transport.h
> 
> --
> 2.4.0.rc0.43.gcf8a8c6

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ