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 617B83C1976; Thu, 2 Apr 2026 11:27:25 +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=1775129245; cv=none; b=Y7s1VQl8wHJ0Hkru9M6fwy7tNx5FkN1jkqqf4mHzgpAB5h35Q8nISzFUJMoG9KKlsJnt4z8kkNBG+J3kXeoTdYIS17145aVvcNf6telwNzKDAqZGbse0SB1Tn0J2f5c9C31P2z3Zl/DeH2++OA4CWOu0oIM23bbILl3PFzmoKTs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775129245; c=relaxed/simple; bh=AgwzG/pGDJ0yMVb12xr9ZaSAqL/AmjI8cr4rpIQoqN0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=gaSfXFwGAkzAzNxHK37TzsPv1xbofju2JDcMB1EZEyUucf6fKraXwtGy2p5PMW+KU/DNHnMYmEM8CnlLz7fUtTYJUw2Tbu/vE49Ic7GvwJ3VR/f1xUeWLl4dzo7Cv9qBa3Bdg2vcS0w+KOn29HTHVeztGK5sPNIGU6kKgHnfQNo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Vm/IuFjw; 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="Vm/IuFjw" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5C52EC2BCB2; Thu, 2 Apr 2026 11:27:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1775129244; bh=AgwzG/pGDJ0yMVb12xr9ZaSAqL/AmjI8cr4rpIQoqN0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Vm/IuFjwqSeYwQkdkUbSTYJlDhv48JsNVz5p4VIkJkXzg3JFRnabU3J+HAkvRSCor S5SOgQdDGRGzGST9D6wCXHkT0BdkoPo85bM3dMHdROzggOvEl2bBmhVFeLlbUYKOqP bLSHDRhj7HgDDGC3X7ZY/+84yu1+TvTl1vU+vYHGE2ko3HYQ/01mMp2uRNhLdQhsZa 3SNSCOjaV+BwPGQL9A6u6pxhrVFbxJaIjMVLY3Nwdxcx3yhEkxRJ9uL0k/r9G9WnLd hFrmlJEcaYPt68sHRWEKxD05jkTOpb6a3kdQupDKw45c5naLjjaWWHCjcqfS8ofKNm F0fknaU0qygNA== From: Miguel Ojeda To: gregkh@linuxfoundation.org Cc: achill@achill.org, akpm@linux-foundation.org, broonie@kernel.org, conor@kernel.org, f.fainelli@gmail.com, hargar@microsoft.com, jonathanh@nvidia.com, linux-kernel@vger.kernel.org, linux@roeck-us.net, lkft-triage@lists.linaro.org, patches@kernelci.org, patches@lists.linux.dev, pavel@nabladev.com, rwarsow@gmx.de, shuah@kernel.org, sr@sladewatkins.com, stable@vger.kernel.org, sudipm.mukherjee@gmail.com, torvalds@linux-foundation.org, Benno Lossin , Gary Guo Subject: Re: [PATCH 6.6 000/175] 6.6.131-rc1 review Date: Thu, 2 Apr 2026 13:27:12 +0200 Message-ID: <20260402112712.110869-1-ojeda@kernel.org> In-Reply-To: <20260331161729.779738837@linuxfoundation.org> References: <20260331161729.779738837@linuxfoundation.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit On Tue, 31 Mar 2026 18:19:44 +0200 Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 6.6.131 release. > There are 175 patches in this series, all will be posted as a response > to this one. If anyone has any issues with these being applied, please > let me know. > > Responses should be made by Thu, 02 Apr 2026 16:16:56 +0000. > Anything received after that time might be too late. The pin-init change does not build: error[E0425]: cannot find value `__refcount_guard` in this scope --> rust/kernel/init/macros.rs:1320:25 | 1320 | @guards([< __ $field _guard >], $($guards,)*), | ^^^^^^^^^^^^^^^^^^^^^^ not found in this scope | ::: rust/kernel/sync/arc.rs:529:49 | 529 | let inner = Box::try_init::(try_init!(ArcInner { | _________________________________________________- 530 | | // SAFETY: There are no safety requirements for this FFI call. 531 | | refcount: Opaque::new(unsafe { bindings::REFCOUNT_INIT(1) }), 532 | | data <- init::uninit::(), 533 | | }? AllocError))?; | |______________________- in this macro invocation | = note: this error originates in the macro `$crate::__init_internal` which comes from the expansion of the macro `try_init` (in Nightly builds, run with -Z macro-backtrace for more info) (among other errors) I would suggest dropping these for now: 0565326613fa ("rust: pin-init: internal: init: document load-bearing fact of field accessors") 66655aacfa42 ("rust: pin-init: add references to previously initialized fields") Cc: Benno Lossin Cc: Gary Guo Thanks! Cheers, Miguel