Whamcloud - gitweb
LU-1622 lnet: hash MEs on wildcard portal
[fs/lustre-release.git] / lnet / include / lnet / lib-types.h
index 22ef8f7..4d3d614 100644 (file)
@@ -260,6 +260,7 @@ typedef struct lnet_me {
         lnet_libhandle_t       me_lh;
         lnet_process_id_t      me_match_id;
         unsigned int           me_portal;
+       unsigned int           me_pos;          /* hash offset in mt_hash */
         __u64                  me_match_bits;
         __u64                  me_ignore_bits;
         lnet_unlink_t          me_unlink;
@@ -317,9 +318,7 @@ typedef struct {
 #define LNET_COOKIE_TYPE_ME    2
 #define LNET_COOKIE_TYPE_EQ    3
 #define LNET_COOKIE_TYPE_BITS  2
-#define LNET_COOKIE_TYPES      (1 << LNET_COOKIE_TYPE_BITS)
-/* LNET_COOKIE_TYPES must be a power of 2, so the cookie type can be
- * extracted by masking with (LNET_COOKIE_TYPES - 1) */
+#define LNET_COOKIE_MASK       ((1ULL << LNET_COOKIE_TYPE_BITS) - 1ULL)
 
 struct lnet_ni;                                  /* forward ref */
 
@@ -422,6 +421,7 @@ typedef struct lnet_ni {
 # endif
 #endif
        cfs_list_t              ni_list;        /* chain on ln_nis */
+       cfs_list_t              ni_cptlist;     /* chain on ln_nis_cpt */
        int                     ni_maxtxcredits; /* # tx credits  */
        /* # per-peer send credits */
        int                     ni_peertxcredits;
@@ -429,6 +429,8 @@ typedef struct lnet_ni {
        int                     ni_peerrtrcredits;
        /* seconds to consider peer dead */
        int                     ni_peertimeout;
+       int                     ni_ncpts;       /* number of CPTs */
+       __u32                   *ni_cpts;       /* bond NI on some CPTs */
        lnet_nid_t              ni_nid;         /* interface's NID */
        void                    *ni_data;       /* instance-specific data */
        lnd_t                   *ni_lnd;        /* procedural interface */
@@ -440,19 +442,23 @@ typedef struct lnet_ni {
        char                    *ni_interfaces[LNET_MAX_INTERFACES];
 } lnet_ni_t;
 
-#define LNET_PROTO_PING_MATCHBITS     0x8000000000000000LL
-enum {
-       LNET_PROTO_PING_UNKNOWN         = 0,    /* unknown */
-       LNET_PROTO_PING_VERSION_1       = 1,    /* old version */
-       LNET_PROTO_PING_VERSION         = 2,    /* current version */
-};
+#define LNET_PROTO_PING_MATCHBITS      0x8000000000000000LL
+
+/* NB: value of these features equal to LNET_PROTO_PING_VERSION_x
+ * of old LNet, so there shouldn't be any compatibility issue */
+#define LNET_PING_FEAT_INVAL           (0)             /* no feature */
+#define LNET_PING_FEAT_BASE            (1 << 0)        /* just a ping */
+#define LNET_PING_FEAT_NI_STATUS       (1 << 1)        /* return NI status */
+
+#define LNET_PING_FEAT_MASK            (LNET_PING_FEAT_BASE | \
+                                        LNET_PING_FEAT_NI_STATUS)
 
 typedef struct {
-        __u32            pi_magic;
-        __u32            pi_version;
-        lnet_pid_t       pi_pid;
-        __u32            pi_nnis;
-        lnet_ni_status_t pi_ni[0];
+       __u32                   pi_magic;
+       __u32                   pi_features;
+       lnet_pid_t              pi_pid;
+       __u32                   pi_nnis;
+       lnet_ni_status_t        pi_ni[0];
 } WIRE_ATTR lnet_ping_info_t;
 
 /* router checker data, per router */
@@ -493,8 +499,8 @@ typedef struct lnet_peer {
        int                     lp_cpt;         /* CPT this peer attached on */
        /* # refs from lnet_route_t::lr_gateway */
        int                     lp_rtr_refcount;
-       /* returned RC ping version */
-       unsigned int            lp_ping_version;
+       /* returned RC ping features */
+       unsigned int            lp_ping_feats;
        cfs_list_t              lp_routes;      /* routers on this peer */
        lnet_rc_data_t          *lp_rcd;        /* router checker state */
 } lnet_peer_t;
@@ -596,6 +602,16 @@ struct lnet_match_info {
 /* ME hash of RDMA portal */
 #define LNET_MT_HASH_BITS              8
 #define LNET_MT_HASH_SIZE              (1 << LNET_MT_HASH_BITS)
+#define LNET_MT_HASH_MASK              (LNET_MT_HASH_SIZE - 1)
+/* we allocate (LNET_MT_HASH_SIZE + 1) entries for lnet_match_table::mt_hash,
+ * the last entry is reserved for MEs with ignore-bits */
+#define LNET_MT_HASH_IGNORE            LNET_MT_HASH_SIZE
+/* __u64 has 2^6 bits, so need 2^(LNET_MT_HASH_BITS - LNET_MT_BITS_U64) which
+ * is 4 __u64s as bit-map, and add an extra __u64 (only use one bit) for the
+ * ME-list with ignore-bits, which is mtable::mt_hash[LNET_MT_HASH_IGNORE] */
+#define LNET_MT_BITS_U64               6       /* 2^6 bits */
+#define LNET_MT_EXHAUSTED_BITS         (LNET_MT_HASH_BITS - LNET_MT_BITS_U64)
+#define LNET_MT_EXHAUSTED_BMAP         ((1 << LNET_MT_EXHAUSTED_BITS) + 1)
 
 /* portal match table */
 struct lnet_match_table {
@@ -603,12 +619,23 @@ struct lnet_match_table {
        unsigned int            mt_cpt;
        unsigned int            mt_portal;      /* portal index */
        /* match table is set as "enabled" if there's non-exhausted MD
-        * attached on mt_mlist, it's only valide for wildcard portal */
+        * attached on mt_mhash, it's only valide for wildcard portal */
        unsigned int            mt_enabled;
-       cfs_list_t              mt_mlist;       /* matching list */
+       /* bitmap to flag whether MEs on mt_hash are exhausted or not */
+       __u64                   mt_exhausted[LNET_MT_EXHAUSTED_BMAP];
        cfs_list_t              *mt_mhash;      /* matching hash */
 };
 
+/* these are only useful for wildcard portal */
+/* Turn off message rotor for wildcard portals */
+#define        LNET_PTL_ROTOR_OFF      0
+/* round-robin dispatch all PUT messages for wildcard portals */
+#define        LNET_PTL_ROTOR_ON       1
+/* round-robin dispatch routed PUT message for wildcard portals */
+#define        LNET_PTL_ROTOR_RR_RT    2
+/* dispatch routed PUT message by hashing source NID for wildcard portals */
+#define        LNET_PTL_ROTOR_HASH_RT  3
+
 typedef struct lnet_portal {
 #ifdef __KERNEL__
        cfs_spinlock_t          ptl_lock;
@@ -685,9 +712,9 @@ typedef struct
        int                             ln_nportals;
        /* the vector of portals */
        lnet_portal_t                   **ln_portals;
-       /* ME container  */
+       /* percpt ME containers */
        struct lnet_res_container       **ln_me_containers;
-       /* MD container  */
+       /* percpt MD container */
        struct lnet_res_container       **ln_md_containers;
 
        /* Event Queue container */
@@ -705,7 +732,7 @@ typedef struct
 #endif
        /* protect NI, peer table, credits, routers, rtrbuf... */
        struct cfs_percpt_lock          *ln_net_lock;
-       /* message container for active/finalizing/freed message */
+       /* percpt message containers for active/finalizing/freed message */
        struct lnet_msg_container       **ln_msg_containers;
        lnet_counters_t                 **ln_counters;
        struct lnet_peer_table          **ln_peer_tables;
@@ -713,6 +740,8 @@ typedef struct
        cfs_list_t                      ln_test_peers;
 
        cfs_list_t                      ln_nis;         /* LND instances */
+       /* NIs bond on specific CPT(s) */
+       cfs_list_t                      ln_nis_cpt;
        /* dying LND instances */
        cfs_list_t                      ln_nis_zombie;
        lnet_ni_t                       *ln_loni;       /* the loopback NI */
@@ -727,7 +756,7 @@ typedef struct
        cfs_list_t                      ln_routers;
        /* validity stamp */
        __u64                           ln_routers_version;
-       /* router buffer pools */
+       /* percpt router buffer pools */
        lnet_rtrbufpool_t               **ln_rtrpools;
 
        lnet_handle_md_t                ln_ping_target_md;