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 1662129B78D; Wed, 20 May 2026 18:17:52 +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=1779301074; cv=none; b=nQN6AOE0mxgEZtbS32HAWPxz+2aVA0u0HfRyoK877pj2y0decaSRxhOoANfiWHT/PBf0hRB2kKWPxKIwjxWGqECWtm5RrpXNZe5z4nvvZuhD8pzEqxLtPhdh8K97iCTyuv27XB51pVaCy+pmUAIr5hpMSf8jFU3fpX2GAKFC13I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779301074; c=relaxed/simple; bh=CSgPiop/8Ln0wc30djhek9HQSnxNfIEa+TMMvoLyhlQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=H6uarvJjv8o5R8q5R+QtHavM1bNNbSlAIMv6FmvO39i4rg2VBZDIgYfH7GX9V7PUv6lrNBYgPm72EYQ2rWnpSrQXNW1LN4oRrpwvjkd4sk2kIAkkB4Y2Qi+aiUQ3oi+qd9/BGgoI4eWi6yqBsClJWAts+KcjxXDdROJOBadeoms= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=k2sh8O0j; 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="k2sh8O0j" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2BAA01F000E9; Wed, 20 May 2026 18:17:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779301072; bh=w5qyr8i1s2n8PkZmaQj3Gk2S6SJf0iIEuFY/qpBDONU=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=k2sh8O0jQCjwH6BVCNKU7eIcwAvmzJhTtEnETe5eDGS6eeIdeMsOjD/1QWe+hMxIb nuNZhU4mabFhpdmw8BmHj2zZ+PvsK2S7DYf3tDAr83/ofEXFQx0W148/mphFHdrbZi nnl2nvJ89e/odYz637HmQzgzsXkfX67V+8AsWVL0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= , Johannes Berg , Sasha Levin Subject: [PATCH 6.12 415/666] x86/um/vdso: Drop VDSO64-y from Makefile Date: Wed, 20 May 2026 18:20:26 +0200 Message-ID: <20260520162120.259094420@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162111.222830634@linuxfoundation.org> References: <20260520162111.222830634@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-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Thomas Weißschuh [ Upstream commit 3c9b904f9033fb250db72d258bbdec791dc89405 ] This symbol is unnecessary, remove it. Signed-off-by: Thomas Weißschuh Link: https://patch.msgid.link/20251013-uml-vdso-cleanup-v1-4-a079c7adcc69@weissschuh.net Signed-off-by: Johannes Berg Stable-dep-of: d1895c15fc7d ("x86/um: fix vDSO installation") Signed-off-by: Sasha Levin --- arch/x86/um/vdso/Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/arch/x86/um/vdso/Makefile b/arch/x86/um/vdso/Makefile index 6a77ea6434ffd..b3dfd60619e8a 100644 --- a/arch/x86/um/vdso/Makefile +++ b/arch/x86/um/vdso/Makefile @@ -3,16 +3,13 @@ # Building vDSO images for x86. # -VDSO64-y := y - -vdso-install-$(VDSO64-y) += vdso.so - +vdso-install-y += vdso.so # files to link into the vdso vobjs-y := vdso-note.o um_vdso.o # files to link into kernel -obj-$(VDSO64-y) += vdso.o vma.o +obj-y += vdso.o vma.o vobjs := $(foreach F,$(vobjs-y),$(obj)/$F) -- 2.53.0