From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 3CBE5386567; Thu, 30 Jul 2026 16:09:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785427776; cv=none; b=H86/7+Jf5prNJ+oWdUPwYxrUN6C/WYV2yDUD+3ExW5Iq9NMDcJUOe410E44ljAKPPeRIJH6PpinmdhXuDlFHM4i9FVBvHl4nXfR4Uzc9D3y3ovfq6fEUmf6kESi51ma7niIomNqbxgFYgGPgmrNBB4HZEY7Bb1OIf9uOR3a2dVY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785427776; c=relaxed/simple; bh=eAJ5km4CPmhzwnz+447WEDJrNlj7p5h0NX9rEDiyPLE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=cahB5SO9RK4C0OroCSinHgDmv/DiMMCzmqtZsc8vgRPvCifj/4vOvBTu3PlMAAXsSF6iQYZWdwG6BqMtlgRFUvv1tJfh+KFfNPpOd9gVT5d19dfBYHpanNpkilC3FVJ+UbA4QrSGea6hdJ5NOpNLAQhkRgDLOnPJdooRBmc+Sqg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=BaUldCyJ; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="BaUldCyJ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 985A21F000E9; Thu, 30 Jul 2026 16:09:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1785427775; bh=jxDGOhY4QMtm7leyrFaKuv90/qgyOGOHeHsiDJCU6x0=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=BaUldCyJDlawy7CJ09UCWI1liB7+uzLsNCSx7u6ARc+urY3gsyTO7XGyK4Vv804mH N7HvIYLWKDw8dzN7t47Oko3X8D9QtguSxtOlP1j1fVeE4IlS7sRUIsArlVXk09zY3d KgZYorhRxgFeqG9fZlRLbp6LoItN8Qg4jhY7jsbM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, stable , Guangshuo Li , Johan Hovold Subject: [PATCH 6.6 290/484] intel_th: fix MSC output device reference leak Date: Thu, 30 Jul 2026 16:13:07 +0200 Message-ID: <20260730141429.796758546@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260730141423.392222816@linuxfoundation.org> References: <20260730141423.392222816@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Guangshuo Li commit 761b785a0cfbce43761227bc42a7f984f31f8921 upstream. intel_th_output_open() looks up the output device with bus_find_device_by_devt(), which returns the device with a reference that must be dropped after use. commit 95fc36a234da ("intel_th: fix device leak on output open()") attempted to drop the reference from intel_th_output_release(). However, a successful open replaces file->f_op with the output driver file operations before returning, so close runs the output driver release callback instead. For MSC outputs, close runs intel_th_msc_release(), which only removes the per-file iterator and does not drop the device reference taken by intel_th_output_open(). Consequently, every successful MSC output open leaks one device reference. Drop the device reference from intel_th_msc_release(), which is the release path actually used for MSC output files. Remove the now-unused intel_th_output_release() callback from intel_th_output_fops. Fixes: 95fc36a234da ("intel_th: fix device leak on output open()") Cc: stable Signed-off-by: Guangshuo Li Reviewed-by: Johan Hovold Link: https://patch.msgid.link/20260715070851.2077965-1-lgs201920130244@gmail.com Signed-off-by: Greg Kroah-Hartman Signed-off-by: Greg Kroah-Hartman --- drivers/hwtracing/intel_th/core.c | 10 ---------- drivers/hwtracing/intel_th/msu.c | 2 ++ 2 files changed, 2 insertions(+), 10 deletions(-) --- a/drivers/hwtracing/intel_th/core.c +++ b/drivers/hwtracing/intel_th/core.c @@ -843,18 +843,8 @@ out_put_device: return err; } -static int intel_th_output_release(struct inode *inode, struct file *file) -{ - struct intel_th_device *thdev = file->private_data; - - put_device(&thdev->dev); - - return 0; -} - static const struct file_operations intel_th_output_fops = { .open = intel_th_output_open, - .release = intel_th_output_release, .llseek = noop_llseek, }; --- a/drivers/hwtracing/intel_th/msu.c +++ b/drivers/hwtracing/intel_th/msu.c @@ -1474,8 +1474,10 @@ static int intel_th_msc_release(struct i { struct msc_iter *iter = file->private_data; struct msc *msc = iter->msc; + struct intel_th_device *thdev = msc->thdev; msc_iter_remove(iter, msc); + put_device(&thdev->dev); return 0; }