public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: Or Gerlitz <ogerlitz-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
To: Haggai Eran <haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Christoph Lameter <cl-vYTEC60ixJUAvxtiuMwx3w@public.gmane.org>
Cc: Roland Dreier <roland-BHEL68pLQRGGvPXPguhicg@public.gmane.org>,
	Andrea Arcangeli
	<aarcange-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
	Sagi Grimberg <sagig-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
	Shachar Raindel <raindel-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
	Liran Liss <liranl-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
Subject: Re: [RFC 00/20] On demand paging
Date: Thu, 24 Apr 2014 17:10:44 +0300	[thread overview]
Message-ID: <53591B64.3000307@mellanox.com> (raw)
In-Reply-To: <1393757378-16412-1-git-send-email-haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>

On 02/03/2014 12:49, Haggai Eran wrote:
> The following set of patches implements on-demand paging (ODP) support
> in the RDMA stack and in the mlx5_ib Infiniband driver.
>

I've placed the latest cut of the ODP patches on my public git tree @

git://beany.openfabrics.org/~ogerlitz/linux-2.6.git odp

this is actually V0.1 with the following changes:

- Rebase against v3.15-rc2
- Removed dependency on patches that were accepted upstream
- Changed use of compound_trans_head to compound_head as the latter was 
removed in 3.14


f5d7fc1 IB/mlx5: Implement on demand paging by adding support for MMU 
notifiers
09eae22 IB/mlx5: Add support for RDMA write responder page faults
ca84a78 IB/mlx5: Handle page faults
302a6ea IB/mlx5: Page faults handling infrastructure
df792a8 IB/mlx5: Add function to read WQE from user-space
1b4f69b IB/mlx5: Add mlx5_ib_update_mtt to update page tables after creation
bc5a6b0 IB/mlx5: Changes in memory region creation to support on-demand 
paging
335c8ef IB/mlx5: Implement the ODP capability query verb
5a67390 net/mlx5_core: Add support for page faults events and low level 
handling
11450c4 IB/mlx5: Refactor UMR to have its own context struct
51deb37 IB/mlx5: Enhance UMR support to allow partial page table update
107bc64 IB/mlx5: Set QP offsets and parameters for user QPs and not just 
for kernel QPs
e91a314 mlx5: Store MR attributes in mlx5_mr_core during creation and 
after UMR
894f946 IB/mlx5: Add MR to radix tree in reg_mr_callback
9283891 IB/mlx5: Fix error handling in reg_umr
467f4e7 IB/core: Implement support for MMU notifiers regarding on demand 
paging regions
c98a42e IB/core: Add support for on demand paging regions
8fb5241 IB/core: Add umem function to read data from user-space
16c9cf0 IB/core: Replace ib_umem's offset field with a full address
9f0d8b5 IB/core: Add flags for on demand paging support

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

      parent reply	other threads:[~2014-04-24 14:10 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-02 10:49 [RFC 00/20] On demand paging Haggai Eran
     [not found] ` <1393757378-16412-1-git-send-email-haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2014-03-02 10:49   ` [RFC 01/20] IB/core: Add flags for on demand paging support Haggai Eran
2014-03-02 10:49   ` [RFC 02/20] IB/core: Replace ib_umem's offset field with a full address Haggai Eran
2014-03-02 10:49   ` [RFC 03/20] IB/core: Add umem function to read data from user-space Haggai Eran
2014-03-02 10:49   ` [RFC 04/20] IB/core: Add support for on demand paging regions Haggai Eran
2014-03-02 10:49   ` [RFC 05/20] IB/core: Implement support for MMU notifiers regarding " Haggai Eran
2014-03-02 10:49   ` [RFC 06/20] IB/mlx5: Fix error handling in reg_umr Haggai Eran
2014-03-02 10:49   ` [RFC 07/20] IB/mlx5: Add MR to radix tree in reg_mr_callback Haggai Eran
2014-03-02 10:49   ` [RFC 08/20] mlx5: Store MR attributes in mlx5_mr_core during creation and after UMR Haggai Eran
2014-03-02 10:49   ` [RFC 09/20] IB/mlx5: Set QP offsets and parameters for user QPs and not just for kernel QPs Haggai Eran
2014-03-02 10:49   ` [RFC 10/20] IB/mlx5: Enhance UMR support to allow partial page table update Haggai Eran
2014-03-02 10:49   ` [RFC 11/20] IB/mlx5: Refactor UMR to have its own context struct Haggai Eran
2014-03-02 10:49   ` [RFC 12/20] net/mlx5_core: Add support for page faults events and low level handling Haggai Eran
2014-03-02 10:49   ` [RFC 13/20] IB/mlx5: Implement the ODP capability query verb Haggai Eran
2014-03-02 10:49   ` [RFC 14/20] IB/mlx5: Changes in memory region creation to support on-demand paging Haggai Eran
2014-03-02 10:49   ` [RFC 15/20] IB/mlx5: Add mlx5_ib_update_mtt to update page tables after creation Haggai Eran
2014-03-02 10:49   ` [RFC 16/20] IB/mlx5: Add function to read WQE from user-space Haggai Eran
2014-03-02 10:49   ` [RFC 17/20] IB/mlx5: Page faults handling infrastructure Haggai Eran
2014-03-02 10:49   ` [RFC 18/20] IB/mlx5: Handle page faults Haggai Eran
2014-03-02 10:49   ` [RFC 19/20] IB/mlx5: Add support for RDMA write responder " Haggai Eran
2014-03-02 10:49   ` [RFC 20/20] IB/mlx5: Implement on demand paging by adding support for MMU notifiers Haggai Eran
2014-03-13 12:00   ` [RFC 00/20] On demand paging Haggai Eran
2014-04-24 14:10   ` Or Gerlitz [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=53591B64.3000307@mellanox.com \
    --to=ogerlitz-vpraknaxozvwk0htik3j/w@public.gmane.org \
    --cc=aarcange-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=cl-vYTEC60ixJUAvxtiuMwx3w@public.gmane.org \
    --cc=haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=liranl-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    --cc=raindel-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    --cc=roland-BHEL68pLQRGGvPXPguhicg@public.gmane.org \
    --cc=sagig-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox