Re: [PATCH net-next v12 1/5] net: rnpgbe: Add interrupt handling

From: Jakub Kicinski

Date: Fri Sep 18 2026 - 19:01:42 EST


On Mon, 14 Sep 2026 09:32:01 +0800 Dong Yibo wrote:
> +enum mucse_state_t {
> + __MUCSE_DOWN,
> +};

Please avoid adding such bits, as AI points out it is racy.
You should be able to order the code correctly and disable
NAPI, no need for racy checks.