diff --git a/home/nipa/nipa_out/927967/ynl/old-code/netdev-user.c b/home/nipa/nipa_out/927967/ynl/new-code/netdev-user.c
index 1d3877ce20bb..43d02523ec0f 100644
--- a/home/nipa/nipa_out/927967/ynl/old-code/netdev-user.c
+++ b/home/nipa/nipa_out/927967/ynl/new-code/netdev-user.c
@@ -105,6 +105,19 @@ const char *netdev_qstats_scope_str(enum netdev_qstats_scope value)
 	return netdev_qstats_scope_strmap[value];
 }
 
+static const char * const netdev_napi_threaded_strmap[] = {
+	[0] = "disable",
+	[1] = "enable",
+	[2] = "busy-poll-enable",
+};
+
+const char *netdev_napi_threaded_str(enum netdev_napi_threaded value)
+{
+	if (value < 0 || value >= (int)YNL_ARRAY_SIZE(netdev_napi_threaded_strmap))
+		return NULL;
+	return netdev_napi_threaded_strmap[value];
+}
+
 /* Policies */
 const struct ynl_policy_attr netdev_page_pool_info_policy[NETDEV_A_PAGE_POOL_MAX + 1] = {
 	[NETDEV_A_PAGE_POOL_ID] = { .name = "id", .type = YNL_PT_UINT, },
@@ -196,6 +209,7 @@ const struct ynl_policy_attr netdev_napi_policy[NETDEV_A_NAPI_MAX + 1] = {
 	[NETDEV_A_NAPI_DEFER_HARD_IRQS] = { .name = "defer-hard-irqs", .type = YNL_PT_U32, },
 	[NETDEV_A_NAPI_GRO_FLUSH_TIMEOUT] = { .name = "gro-flush-timeout", .type = YNL_PT_UINT, },
 	[NETDEV_A_NAPI_IRQ_SUSPEND_TIMEOUT] = { .name = "irq-suspend-timeout", .type = YNL_PT_UINT, },
+	[NETDEV_A_NAPI_THREADED] = { .name = "threaded", .type = YNL_PT_U32, },
 };
 
 const struct ynl_policy_nest netdev_napi_nest = {
@@ -959,6 +973,11 @@ int netdev_napi_get_rsp_parse(const struct nlmsghdr *nlh,
 				return YNL_PARSE_CB_ERROR;
 			dst->_present.irq_suspend_timeout = 1;
 			dst->irq_suspend_timeout = ynl_attr_get_uint(attr);
+		} else if (type == NETDEV_A_NAPI_THREADED) {
+			if (ynl_attr_validate(yarg, attr))
+				return YNL_PARSE_CB_ERROR;
+			dst->_present.threaded = 1;
+			dst->threaded = ynl_attr_get_u32(attr);
 		}
 	}
 
@@ -1248,6 +1267,8 @@ int netdev_napi_set(struct ynl_sock *ys, struct netdev_napi_set_req *req)
 		ynl_attr_put_uint(nlh, NETDEV_A_NAPI_GRO_FLUSH_TIMEOUT, req->gro_flush_timeout);
 	if (req->_present.irq_suspend_timeout)
 		ynl_attr_put_uint(nlh, NETDEV_A_NAPI_IRQ_SUSPEND_TIMEOUT, req->irq_suspend_timeout);
+	if (req->_present.threaded)
+		ynl_attr_put_u32(nlh, NETDEV_A_NAPI_THREADED, req->threaded);
 
 	err = ynl_exec(ys, nlh, &yrs);
 	if (err < 0)
diff --git a/home/nipa/nipa_out/927967/ynl/old-code/netdev-user.h b/home/nipa/nipa_out/927967/ynl/new-code/netdev-user.h
index bc103e532cb3..f6c1c09fe8a7 100644
--- a/home/nipa/nipa_out/927967/ynl/old-code/netdev-user.h
+++ b/home/nipa/nipa_out/927967/ynl/new-code/netdev-user.h
@@ -22,6 +22,7 @@ const char *netdev_xdp_rx_metadata_str(enum netdev_xdp_rx_metadata value);
 const char *netdev_xsk_flags_str(enum netdev_xsk_flags value);
 const char *netdev_queue_type_str(enum netdev_queue_type value);
 const char *netdev_qstats_scope_str(enum netdev_qstats_scope value);
+const char *netdev_napi_threaded_str(enum netdev_napi_threaded value);
 
 /* Common nested types */
 struct netdev_page_pool_info {
@@ -407,6 +408,7 @@ struct netdev_napi_get_rsp {
 		__u32 defer_hard_irqs:1;
 		__u32 gro_flush_timeout:1;
 		__u32 irq_suspend_timeout:1;
+		__u32 threaded:1;
 	} _present;
 
 	__u32 id;
@@ -416,6 +418,7 @@ struct netdev_napi_get_rsp {
 	__u32 defer_hard_irqs;
 	__u64 gro_flush_timeout;
 	__u64 irq_suspend_timeout;
+	enum netdev_napi_threaded threaded;
 };
 
 void netdev_napi_get_rsp_free(struct netdev_napi_get_rsp *rsp);
@@ -591,12 +594,14 @@ struct netdev_napi_set_req {
 		__u32 defer_hard_irqs:1;
 		__u32 gro_flush_timeout:1;
 		__u32 irq_suspend_timeout:1;
+		__u32 threaded:1;
 	} _present;
 
 	__u32 id;
 	__u32 defer_hard_irqs;
 	__u64 gro_flush_timeout;
 	__u64 irq_suspend_timeout;
+	enum netdev_napi_threaded threaded;
 };
 
 static inline struct netdev_napi_set_req *netdev_napi_set_req_alloc(void)
@@ -632,6 +637,13 @@ netdev_napi_set_req_set_irq_suspend_timeout(struct netdev_napi_set_req *req,
 	req->_present.irq_suspend_timeout = 1;
 	req->irq_suspend_timeout = irq_suspend_timeout;
 }
+static inline void
+netdev_napi_set_req_set_threaded(struct netdev_napi_set_req *req,
+				 enum netdev_napi_threaded threaded)
+{
+	req->_present.threaded = 1;
+	req->threaded = threaded;
+}
 
 /*
  * Set configurable NAPI instance settings.