diff --git a/home/nipa/nipa_out/929132/ynl/old-code/netdev-user.c b/home/nipa/nipa_out/929132/ynl/new-code/netdev-user.c
index 1d3877ce20bb..fce7828bf80a 100644
--- a/home/nipa/nipa_out/929132/ynl/old-code/netdev-user.c
+++ b/home/nipa/nipa_out/929132/ynl/new-code/netdev-user.c
@@ -181,6 +181,7 @@ const struct ynl_policy_attr netdev_queue_policy[NETDEV_A_QUEUE_MAX + 1] = {
 	[NETDEV_A_QUEUE_TYPE] = { .name = "type", .type = YNL_PT_U32, },
 	[NETDEV_A_QUEUE_NAPI_ID] = { .name = "napi-id", .type = YNL_PT_U32, },
 	[NETDEV_A_QUEUE_DMABUF] = { .name = "dmabuf", .type = YNL_PT_U32, },
+	[NETDEV_A_QUEUE_XSK] = { .name = "xsk", .type = YNL_PT_U32, },
 };
 
 const struct ynl_policy_nest netdev_queue_nest = {
@@ -810,6 +811,11 @@ int netdev_queue_get_rsp_parse(const struct nlmsghdr *nlh,
 				return YNL_PARSE_CB_ERROR;
 			dst->_present.dmabuf = 1;
 			dst->dmabuf = ynl_attr_get_u32(attr);
+		} else if (type == NETDEV_A_QUEUE_XSK) {
+			if (ynl_attr_validate(yarg, attr))
+				return YNL_PARSE_CB_ERROR;
+			dst->_present.xsk = 1;
+			dst->xsk = ynl_attr_get_u32(attr);
 		}
 	}
 
diff --git a/home/nipa/nipa_out/929132/ynl/old-code/netdev-user.h b/home/nipa/nipa_out/929132/ynl/new-code/netdev-user.h
index bc103e532cb3..56b48fe54014 100644
--- a/home/nipa/nipa_out/929132/ynl/old-code/netdev-user.h
+++ b/home/nipa/nipa_out/929132/ynl/new-code/netdev-user.h
@@ -323,6 +323,7 @@ struct netdev_queue_get_rsp {
 		__u32 napi_id:1;
 		__u32 ifindex:1;
 		__u32 dmabuf:1;
+		__u32 xsk:1;
 	} _present;
 
 	__u32 id;
@@ -330,6 +331,7 @@ struct netdev_queue_get_rsp {
 	__u32 napi_id;
 	__u32 ifindex;
 	__u32 dmabuf;
+	__u32 xsk;
 };
 
 void netdev_queue_get_rsp_free(struct netdev_queue_get_rsp *rsp);