From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Hellwig Subject: [PATCH 06/13] IB/core: add a need_inval flag to struct ib_mr Date: Sat, 27 Feb 2016 19:10:24 +0100 Message-ID: <1456596631-19418-7-git-send-email-hch@lst.de> References: <1456596631-19418-1-git-send-email-hch@lst.de> Return-path: In-Reply-To: <1456596631-19418-1-git-send-email-hch@lst.de> Sender: target-devel-owner@vger.kernel.org To: linux-rdma@vger.kernel.org Cc: swise@opengridcomputing.com, sagig@mellanox.com, target-devel@vger.kernel.org, Steve Wise List-Id: linux-rdma@vger.kernel.org From: Steve Wise This is the first step toward moving MR invalidation decisions to the core. It will be needed by the upcoming RW API. Signed-off-by: Steve Wise --- include/rdma/ib_verbs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index 1e68dae..2b94cea 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h @@ -1431,6 +1431,7 @@ struct ib_mr { u64 iova; u32 length; unsigned int page_size; + bool need_inval; union { struct ib_uobject *uobject; /* user */ struct list_head qp_entry; /* FR */ -- 2.1.4