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 EB25E27472 for ; Sat, 28 Mar 2026 00:32:26 +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=1774657947; cv=none; b=VPA6PU0VddZ0ePNonIBayBdp7zhn+6StaY/iy+nOWXyZGFGJ9sh0F1ymQpzc+REEqu9qmKdypy+zhycNLElBiBqItbYzhBQ7coXSaH06nlaRzspV8inSAeWEh+VerLuQLPWrN/RsvTMZ2KioPRJZus7/1urkvIMZxmoSKUF2Yec= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774657947; c=relaxed/simple; bh=cKcNhKsfKwGrRGi85R08v7LGo7qfoGrvTzVC9ak2Bu4=; h=Date:From:To:Cc:Subject:Message-Id:In-Reply-To:References: Mime-Version:Content-Type; b=RyMQ+jxnU+d1U1qhed9WLT3siiGDWz5Bs5DCcrywtGyKVTcbuxkGO0JmGq0TArK2yCy/cP2V5pyYzLmMjzj1kKEOm7fBGpswOz5uuLxjPHYyA7wLt5cQIqMptODMnMk4ouWPit7XK8Xzg4fLpA776UAPEYyaQQuoh46I9vdyobU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=FLy+h+kT; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="FLy+h+kT" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 82BB4C19423; Sat, 28 Mar 2026 00:32:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1774657946; bh=cKcNhKsfKwGrRGi85R08v7LGo7qfoGrvTzVC9ak2Bu4=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=FLy+h+kTk/dL2zmKySUP8cX4PMg52peNka4DbvYUBkAENzktTSCjRS6lgH6+mDMP2 0u7w4lSutYNtsyCd1hEt0qX6o9AQqWV9gatLuOwh6PPukw5hfLhURajcclS+XFR/uN ItUKT5GHixoCW9PeB36ewzQW8vCx/bgx2SeDx0qc= Date: Fri, 27 Mar 2026 17:32:25 -0700 From: Andrew Morton To: Leo Timmins Cc: pasha.tatashin@soleen.com, rppt@kernel.org, linux-kernel@vger.kernel.org, pratyush@kernel.org Subject: Re: [PATCH v3 0/2] liveupdate: fix incoming error handling and teardown paths Message-Id: <20260327173225.d33a1476805dd45e7aa44efc@linux-foundation.org> In-Reply-To: <20260326042546.8031-1-leotimmins1974@gmail.com> References: <20260326042546.8031-1-leotimmins1974@gmail.com> X-Mailer: Sylpheed 3.8.0beta1 (GTK+ 2.24.33; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Thu, 26 Mar 2026 12:25:33 +0800 Leo Timmins wrote: > This series fixes two issues in LUO's incoming-side error handling and > teardown paths. > > The first patch makes session deserialization fail when file > deserialization fails, instead of silently continuing with a partially > restored session. > > The second patch (formerly patch 3 on the v1) initializes incoming FLB > state before the finish pathdecrements its refcount, so the last-user > cleanup path does not run from an uninitialized count. (and now > utilises pr_warn instead of WARN_ON) I'm not clear how we want to schedule these two patches. Into next merge widow? Into 7.0-rcX? Into 7.0-rcX and cc:stable? Thanks.