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 D78E9329E6F; Wed, 7 Jan 2026 12:37:53 +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=1767789474; cv=none; b=MQR5ATq+5HtthK5tkb/t0VUvtlJl6Bi28GAj1GuOlO7W3rIfsTSGz0xAO4mb8Dy+B4q1Wzg6ZTZq8Ilcagk1IxD00RbV/VPhEC3v2b++xOsMo6ij4vZ+tny7XSVZCrML82uHnXK8xw9qZcXultYRnRjltJThTv3lDKS+3ZSRWf0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767789474; c=relaxed/simple; bh=SSxdlXBDbRphoLQNWCYCgGFLbgHh+3HKYPtQc2L4wmg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=gq7idJdzcZSVmChrr0BGIrtnUNfoR5sRyFeifcbKLXkk9rUG2S2T2NsS/IYthDMaEh41mByQYNkYIKdu3owpv/jMK3ytpPZLTSNmxJ1G2jeGt2KCf2aXSxHRI5TQOkNv69HxecGimjfXIAKVN1eDAd1qtlTv01u+59rt6SAKkzc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=oXqYrhcc; 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="oXqYrhcc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 17E39C16AAE; Wed, 7 Jan 2026 12:37:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1767789473; bh=SSxdlXBDbRphoLQNWCYCgGFLbgHh+3HKYPtQc2L4wmg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oXqYrhccgF/RvvTd9//5eSL5owPyT+ORoVztYCdhV4ICR9XzbGZ+ar0eGI55nkg9y tzD7P5f+s0Yw4hgGXjSbYukDtuhwk3Jl4Td+MkJxV78W5VA3tkQ9Yeswmz05C4lmi7 1nHztxmamSWjJm8WI9W3oBxbV3G0QfChF9cEJVf5pVpKWnJzRrAubPJL8ctea7Iljh sZ9Xw89BRIgD4/boMr7dOFu0CkZxm0g1QrAUvKW02TuPKzD4nfjXEdy7emdxxwpwoD hJILI6ejjw8j74aqg2Dm+w544YYPl6Yqg+IR6IUQBdEvlb1mlAsvYAWcAy3ko9Iiwe +2VyWDJmz1R1A== From: "Rafael J. Wysocki" To: Linux PM , Jakub Kicinski Cc: LKML , Ulf Hansson , Brian Norris , Andrew Lunn , "David S. Miller" , Eric Dumazet , Paolo Abeni , Siddharth Vadapalli , Roger Quadros , netdev@vger.kernel.org, Nicolas Ferre , Claudiu Beznea , Simon Horman Subject: [RESEND][PATCH v2 0/3] net: Discard pm_runtime_put() return value Date: Wed, 07 Jan 2026 13:31:03 +0100 Message-ID: <2816529.mvXUDI8C0e@rafael.j.wysocki> Organization: Linux Kernel Development In-Reply-To: <6245770.lOV4Wx5bFT@rafael.j.wysocki> References: <6245770.lOV4Wx5bFT@rafael.j.wysocki> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" Hi All, This is a resend of https://lore.kernel.org/linux-pm/5973090.DvuYhMxLoT@rafael.j.wysocki/ which mostly was a resend of patches [10-12/23] from: https://lore.kernel.org/linux-pm/6245770.lOV4Wx5bFT@rafael.j.wysocki/ as requested by Jakub, except for the last patch that has been fixed while at it and so the version has been bumped up. The patches are independent of each other and they are all requisite for converting pm_runtime_put() into a void function. Thanks!