From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out30-111.freemail.mail.aliyun.com (out30-111.freemail.mail.aliyun.com [115.124.30.111]) (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 3E466279DCA for ; Fri, 20 Mar 2026 02:19:06 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.111 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773973149; cv=none; b=lna5QfdUKmLKagVXI7mPWhJAiA82zlXwNQT2WR+HL0ZOZqbq9UnM3/vJpQwqFdWjgj8RkApyIjqAm0QbsNzWOkWjJ9Qb1gD4o3WRwHvrTUP5aVCYNJO2pONFW4JX5NLjJAQAzN1Kw9MS8nWuIXB3bnZ6H7g4SoBEpJjoaUb6Md0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773973149; c=relaxed/simple; bh=2z+S0OMuU0TxxaG4eeePliKDPwcxRicWbDnbwxSSPfM=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=PNw5SoLUOtlYpb3b0f2gBpDdi5qAIVWLkbMxADOsYTebuByKzC3MtzSlAMlwyduOg5KN/+SCGBgE300LxrIj4iLU1q1qAxaJ5otXkfrVkquNEXRvfY18q2Re8UIWDgCpfl+yvwieV/8+wJYF52QNbJH78/NbEQo/UyhVwph04EU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com; spf=pass smtp.mailfrom=linux.alibaba.com; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b=QCVp+BUy; arc=none smtp.client-ip=115.124.30.111 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="QCVp+BUy" DKIM-Signature:v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1773973144; h=From:To:Subject:Date:Message-ID:MIME-Version; bh=Uf6nQ6Jy0jLh5fh6sls3tb0a5E6ZZvoqouURQ/6y+O0=; b=QCVp+BUyCfFMQHuSFgBNcMYGhTDPHNODkW9QpIC44D09Fsy+v6n7R8ysz9L1Co30+RIKH8bjTOmKMEOQZ3KkbEf0eHyFKvFiPAHQ/w7a9PHBIWnTEGp3Knj4jGTxt/3vbKeBSKbHDxB+EkMFSANTGzcUY4bnhpI6/10TI45fdBU= X-Alimail-AntiSpam:AC=PASS;BC=-1|-1;BR=01201311R211e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=maildocker-contentspam033037033178;MF=cp0613@linux.alibaba.com;NM=1;PH=DS;RN=7;SR=0;TI=SMTPD_---0X.JxWBq_1773973139; Received: from DESKTOP-S9E58SO.localdomain(mailfrom:cp0613@linux.alibaba.com fp:SMTPD_---0X.JxWBq_1773973139 cluster:ay36) by smtp.aliyun-inc.com; Fri, 20 Mar 2026 10:19:03 +0800 From: cp0613@linux.alibaba.com To: pjw@kernel.org, alex@ghiti.fr, debug@rivosinc.com, guoren@kernel.org Cc: linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org, Chen Pei Subject: [PATCH 0/2] riscv: vdso_cfi build cleanup improvements Date: Fri, 20 Mar 2026 10:18:48 +0800 Message-ID: <20260320021850.1877-1-cp0613@linux.alibaba.com> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chen Pei This patch series addresses two issues with the RISC-V VDSO CFI build: 1. Build artifacts were not cleaned properly during 'make clean' 2. Copied source files were being tracked by git The first patch adds the clean-files variable to ensure that temporary source files copied from the main vdso directory are removed during make clean. The second patch adds a .gitignore file to prevent git from tracking build artifacts and copied source files in the vdso_cfi build directory. These changes improve the build system hygiene and maintain clean working directories for developers working with CFI support. Chen Pei (2): riscv: vdso_cfi: Add clean rule for copied sources riscv: vdso_cfi: Add .gitignore for build artifacts arch/riscv/kernel/vdso_cfi/.gitignore | 8 ++++++++ arch/riscv/kernel/vdso_cfi/Makefile | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 arch/riscv/kernel/vdso_cfi/.gitignore -- 2.50.1