return netdev_xdp_act_strmap[value];
 }
 
+static const char * const netdev_xdp_rx_metadata_strmap[] = {
+       [0] = "timestamp",
+       [1] = "hash",
+};
+
+const char *netdev_xdp_rx_metadata_str(enum netdev_xdp_rx_metadata value)
+{
+       value = ffs(value) - 1;
+       if (value < 0 || value >= (int)MNL_ARRAY_SIZE(netdev_xdp_rx_metadata_strmap))
+               return NULL;
+       return netdev_xdp_rx_metadata_strmap[value];
+}
+
 /* Policies */
 struct ynl_policy_attr netdev_dev_policy[NETDEV_A_DEV_MAX + 1] = {
        [NETDEV_A_DEV_IFINDEX] = { .name = "ifindex", .type = YNL_PT_U32, },
        [NETDEV_A_DEV_PAD] = { .name = "pad", .type = YNL_PT_IGNORE, },
        [NETDEV_A_DEV_XDP_FEATURES] = { .name = "xdp-features", .type = YNL_PT_U64, },
        [NETDEV_A_DEV_XDP_ZC_MAX_SEGS] = { .name = "xdp-zc-max-segs", .type = YNL_PT_U32, },
+       [NETDEV_A_DEV_XDP_RX_METADATA_FEATURES] = { .name = "xdp-rx-metadata-features", .type = YNL_PT_U64, },
 };
 
 struct ynl_policy_nest netdev_dev_nest = {
                                return MNL_CB_ERROR;
                        dst->_present.xdp_zc_max_segs = 1;
                        dst->xdp_zc_max_segs = mnl_attr_get_u32(attr);
+               } else if (type == NETDEV_A_DEV_XDP_RX_METADATA_FEATURES) {
+                       if (ynl_attr_validate(yarg, attr))
+                               return MNL_CB_ERROR;
+                       dst->_present.xdp_rx_metadata_features = 1;
+                       dst->xdp_rx_metadata_features = mnl_attr_get_u64(attr);
                }
        }
 
 
 /* Enums */
 const char *netdev_op_str(int op);
 const char *netdev_xdp_act_str(enum netdev_xdp_act value);
+const char *netdev_xdp_rx_metadata_str(enum netdev_xdp_rx_metadata value);
 
 /* Common nested types */
 /* ============== NETDEV_CMD_DEV_GET ============== */
                __u32 ifindex:1;
                __u32 xdp_features:1;
                __u32 xdp_zc_max_segs:1;
+               __u32 xdp_rx_metadata_features:1;
        } _present;
 
        __u32 ifindex;
        __u64 xdp_features;
        __u32 xdp_zc_max_segs;
+       __u64 xdp_rx_metadata_features;
 };
 
 void netdev_dev_get_rsp_free(struct netdev_dev_get_rsp *rsp);
 
        if (!d->_present.xdp_features)
                return;
 
-       printf("%llx:", d->xdp_features);
+       printf("xdp-features (%llx):", d->xdp_features);
        for (int i = 0; d->xdp_features > 1U << i; i++) {
                if (d->xdp_features & (1U << i))
                        printf(" %s", netdev_xdp_act_str(1 << i));
        }
 
+       printf(" xdp-rx-metadata-features (%llx):", d->xdp_rx_metadata_features);
+       for (int i = 0; d->xdp_rx_metadata_features > 1U << i; i++) {
+               if (d->xdp_rx_metadata_features & (1U << i))
+                       printf(" %s", netdev_xdp_rx_metadata_str(1 << i));
+       }
+
        printf(" xdp-zc-max-segs=%u", d->xdp_zc_max_segs);
 
        name = netdev_op_str(op);