From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id F334823BCF5; Mon, 14 Jul 2025 09:24:28 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752485069; cv=none; b=MDIJfraGcLFbB716oQEPzhuZorqD8z5wwiskXKkE2usRl5qG1vci1miKN0OlwBAO6xvRs+DIS3qZWbCwhkZyEiQPTtxrhET3DYa2CUitsG05X/VuTYfGYqQyzOJTPvjIxew6GceKwISlG6FZ5Bt3EANPIPd+VLyQ6aNoDUsflb0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752485069; c=relaxed/simple; bh=/eadhd0NBOYZ8stO/NS2w2HdBh1nU55R+CL5wBLaJPY=; h=Mime-Version:Content-Type:Date:Message-Id:Subject:Cc:To:From: References:In-Reply-To; b=NGAPcWwFw58myr6gNIebGdcG0McYzjpMo1KTzSvo8kPJO3qzUtprYRqEom63wt9yXTD/469Ll9vh04fVbhfe+LfMdYJM1u15423D21NoQDDSCxdPIQi1yuuzvh+7sVNRxGTyFRiCLJQshsacQZjAzeX2Q0eHqoyuKVSyorPs33M= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=fXQkze+W; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="fXQkze+W" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1D063C4CEED; Mon, 14 Jul 2025 09:24:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1752485068; bh=/eadhd0NBOYZ8stO/NS2w2HdBh1nU55R+CL5wBLaJPY=; h=Date:Subject:Cc:To:From:References:In-Reply-To:From; b=fXQkze+W46crDwI/LOdY7uWEKKxLFLAQMsT7/dttPZrL0Fub6T0aDgtkqwPDWzAHJ PExKIwLuTosFQGxxjPXwgmy5P0g3Defk0GspGcTLYoyzmoTbLn086DPt7Ccmq/X2jL V22AHIhHqqrWNPpekcA2183bfyzBc69Cw1slU8lt2aaNhaLO9L4WtBvMyNgkGXdT1K pgyNr6ogxIWUQHIewBbPbAcwCPh/acFglsMJjP77FmCqmu6vhxFsBCFHZhGCV+KSXf WFjux4N0+FnxBkuNuoaxSCkB1b6Fb9OdrJaYZbTTTttJ1KEFhQOZvT3uCDDL7FJD9x BD14MEJohcs6g== Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Mon, 14 Jul 2025 11:24:23 +0200 Message-Id: Subject: Re: [PATCH v6 3/6] rust: irq: add support for non-threaded IRQs and handlers Cc: "Benno Lossin" , "Daniel Almeida" , "Miguel Ojeda" , "Alex Gaynor" , "Gary Guo" , =?utf-8?q?Bj=C3=B6rn_Roy_Baron?= , "Andreas Hindborg" , "Alice Ryhl" , "Trevor Gross" , "Greg Kroah-Hartman" , "Rafael J. Wysocki" , "Thomas Gleixner" , "Bjorn Helgaas" , =?utf-8?q?Krzysztof_Wilczy=C2=B4nski?= , , , To: "Boqun Feng" From: "Danilo Krummrich" References: <20250703-topics-tyr-request_irq-v6-0-74103bdc7c52@collabora.com> <20250703-topics-tyr-request_irq-v6-3-74103bdc7c52@collabora.com> In-Reply-To: On Mon Jul 14, 2025 at 8:42 AM CEST, Boqun Feng wrote: > I think you need to reorder the initialization of `inner` to be after > `dev` for this. Indeed, good catch!