*/
        __u32 node_id;
 
+       /*
+        * Restartable sequences mm_cid field. Updated by the kernel. Read by
+        * user-space with single-copy atomicity semantics. This field should
+        * only be read by the thread which registered this data structure.
+        * Aligned on 32-bit. Contains the current thread's concurrency ID
+        * (allocated uniquely within a memory map).
+        */
+       __u32 mm_cid;
+
        /*
         * Flexible array member at end of structure, after last feature field.
         */
 
        return RSEQ_ACCESS_ONCE(rseq_get_abi()->node_id);
 }
 
+static inline bool rseq_mm_cid_available(void)
+{
+       return (int) rseq_feature_size >= rseq_offsetofend(struct rseq_abi, mm_cid);
+}
+
+static inline uint32_t rseq_current_mm_cid(void)
+{
+       return RSEQ_ACCESS_ONCE(rseq_get_abi()->mm_cid);
+}
+
 static inline void rseq_clear_rseq_cs(void)
 {
        RSEQ_WRITE_ONCE(rseq_get_abi()->rseq_cs.arch.ptr, 0);