Whamcloud - gitweb
LU-13642 lnet: Allow IP specification
[fs/lustre-release.git] / lnet / include / lnet / socklnd.h
index be2f502..ff1fe23 100644 (file)
 #include <uapi/linux/lnet/socklnd.h>
 
 struct ksock_hello_msg {
-       __u32                   kshm_magic;     /* magic number of socklnd message */
-       __u32                   kshm_version;   /* version of socklnd message */
+       __u32                   kshm_magic;     /* LNET_PROTO_MAGIC */
+       __u32                   kshm_version;   /* KSOCK_PROTO_V* */
+       struct lnet_nid         kshm_src_nid;   /* sender's nid */
+       struct lnet_nid         kshm_dst_nid;   /* destination nid */
+       lnet_pid_t              kshm_src_pid;   /* sender's pid */
+       lnet_pid_t              kshm_dst_pid;   /* destination pid */
+       __u64                   kshm_src_incarnation; /* sender's incarnation */
+       __u64                   kshm_dst_incarnation; /* destination's incarnation */
+       __u32                   kshm_ctype;     /* SOCKLND_CONN_* */
+       __u32                   kshm_nips;      /* always sent as zero */
+       __u32                   kshm_ips[0];    /* deprecated */
+} __packed;
+
+struct ksock_hello_msg_nid4 {
+       __u32                   kshm_magic;     /* LNET_PROTO_MAGIC */
+       __u32                   kshm_version;   /* KSOCK_PROTO_V* */
        lnet_nid_t              kshm_src_nid;   /* sender's nid */
        lnet_nid_t              kshm_dst_nid;   /* destination nid */
        lnet_pid_t              kshm_src_pid;   /* sender's pid */
        lnet_pid_t              kshm_dst_pid;   /* destination pid */
        __u64                   kshm_src_incarnation; /* sender's incarnation */
        __u64                   kshm_dst_incarnation; /* destination's incarnation */
-       __u32                   kshm_ctype;     /* connection type */
-       __u32                   kshm_nips;      /* # IP addrs */
-       __u32                   kshm_ips[0];    /* IP addrs */
+       __u32                   kshm_ctype;     /* SOCKLND_CONN_* */
+       __u32                   kshm_nips;      /* sent as zero */
+       __u32                   kshm_ips[0];    /* deprecated */
 } __packed;
 
 struct ksock_msg_hdr {
@@ -66,6 +80,10 @@ struct ksock_msg {
                /* - nothing */
                /* case ksm_kh.ksh_type == KSOCK_MSG_LNET */
                struct lnet_hdr_nid4 lnetmsg_nid4;
+               /* case ksm_kh.ksh_type == KSOCK_MSG_LNET &&
+                *      kshm_version >= KSOCK_PROTO_V4
+                */
+               struct lnet_hdr_nid16 lnetmsg_nid16;
        } __packed ksm_u;
 } __packed;
 #define ksm_type ksm_kh.ksh_type
@@ -76,5 +94,6 @@ struct ksock_msg {
  * other LND (usocklnd, for example) */
 #define KSOCK_PROTO_V2         2
 #define KSOCK_PROTO_V3         3
+#define KSOCK_PROTO_V4         4
 
 #endif