]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
RDMA/uverbs: Add new relaxed ordering memory region access flag
authorMichael Guralnik <michaelgur@mellanox.com>
Wed, 8 Jan 2020 18:05:38 +0000 (20:05 +0200)
committerJason Gunthorpe <jgg@mellanox.com>
Thu, 16 Jan 2020 19:55:46 +0000 (15:55 -0400)
Add a new relaxed ordering access flag for memory regions.  Using memory
regions with relaxed ordeing set can enhance performance.

This access flag is handled in a best-effort manner, drivers should ignore
if they don't support setting relaxed ordering.

Link: https://lore.kernel.org/r/1578506740-22188-9-git-send-email-yishaih@mellanox.com
Signed-off-by: Michael Guralnik <michaelgur@mellanox.com>
Signed-off-by: Yishai Hadas <yishaih@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
include/rdma/ib_verbs.h
include/uapi/rdma/ib_user_ioctl_verbs.h

index ed6cf11612b3827612c09f076bd284261b176193..6506df9f31ae479ecf347df42869a7a6128a1560 100644 (file)
@@ -1418,6 +1418,7 @@ enum ib_access_flags {
        IB_ZERO_BASED = IB_UVERBS_ACCESS_ZERO_BASED,
        IB_ACCESS_ON_DEMAND = IB_UVERBS_ACCESS_ON_DEMAND,
        IB_ACCESS_HUGETLB = IB_UVERBS_ACCESS_HUGETLB,
+       IB_ACCESS_RELAXED_ORDERING = IB_UVERBS_ACCESS_RELAXED_ORDERING,
 
        IB_ACCESS_OPTIONAL = IB_UVERBS_ACCESS_OPTIONAL_RANGE,
        IB_ACCESS_SUPPORTED =
index 76dbbd9b55fc9c6d25823ebd5805991ff8a866d5..2a165f40ee385c96d96b49e028267d822c73bc0b 100644 (file)
@@ -54,6 +54,7 @@ enum ib_uverbs_access_flags {
        IB_UVERBS_ACCESS_ON_DEMAND = 1 << 6,
        IB_UVERBS_ACCESS_HUGETLB = 1 << 7,
 
+       IB_UVERBS_ACCESS_RELAXED_ORDERING = IB_UVERBS_ACCESS_OPTIONAL_FIRST,
        IB_UVERBS_ACCESS_OPTIONAL_RANGE =
                ((IB_UVERBS_ACCESS_OPTIONAL_LAST << 1) - 1) &
                ~(IB_UVERBS_ACCESS_OPTIONAL_FIRST - 1)