From nobody Sun Feb 8 09:10:28 2026 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id A5583170A2B; Thu, 22 Aug 2024 12:09:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724328592; cv=none; b=V5tqam8dv/N+t/kg7h4iRfVD0mgBcrGVS+jrDqxmM261OQPQGWEpu/P6DSnpX9DBbPIGIF03iJBEHej7uRdNwjuZ0hfaZMsX3uwNtrSLjadofHqYwp1pJf1kBLaA506uAENE1H4ccuSUEUtD7fOPAZaj31Rvnp05V8Gmm4rLpd8= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724328592; c=relaxed/simple; bh=XbnJgcXC3Z67X8YEbaBkVoFNu9wOLekV+rRrvjqwg94=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=p+zwBfkLJ23KRn+kLbdqBT4YuMwEA+RnXhnqjddmpITIXAvCirK3+wksvH2GkZ2rbayvBvB/9EvHPB2KuWS69dLQD2t4F4IdZ5Hh5moR/5qTF2q01o+kZJhiemfSebmd2CbUzgNh4GVmCk0z6lQ7YT9XtJ4foDKcK/7iqrwIvNY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id CFCC6DA7; Thu, 22 Aug 2024 05:10:15 -0700 (PDT) Received: from e116581.arm.com (unknown [10.163.87.181]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id B70BE3F66E; Thu, 22 Aug 2024 05:09:43 -0700 (PDT) From: Dev Jain To: shuah@kernel.org, oleg@redhat.com Cc: mingo@kernel.org, tglx@linutronix.de, mark.rutland@arm.com, ryan.roberts@arm.com, broonie@kernel.org, suzuki.poulose@arm.com, Anshuman.Khandual@arm.com, DeepakKumar.Mishra@arm.com, aneesh.kumar@kernel.org, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org, Dev Jain Subject: [PATCH v6 1/2] selftests: Rename sigaltstack to generic signal Date: Thu, 22 Aug 2024 17:39:14 +0530 Message-Id: <20240822120915.3584731-2-dev.jain@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240822120915.3584731-1-dev.jain@arm.com> References: <20240822120915.3584731-1-dev.jain@arm.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Rename sigaltstack to signal, and rename the existing test to sigaltstack.c. Signed-off-by: Dev Jain Reviewed-by: Mark Brown --- tools/testing/selftests/Makefile | 2 +- tools/testing/selftests/{sigaltstack =3D> signal}/.gitignore | 0 tools/testing/selftests/{sigaltstack =3D> signal}/Makefile | 0 .../selftests/{sigaltstack =3D> signal}/current_stack_pointer.h | 0 tools/testing/selftests/{sigaltstack =3D> signal}/sas.c | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename tools/testing/selftests/{sigaltstack =3D> signal}/.gitignore (100%) rename tools/testing/selftests/{sigaltstack =3D> signal}/Makefile (100%) rename tools/testing/selftests/{sigaltstack =3D> signal}/current_stack_poi= nter.h (100%) rename tools/testing/selftests/{sigaltstack =3D> signal}/sas.c (100%) diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Mak= efile index bc8fe9e8f7f2..edbe30fb3304 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -87,7 +87,7 @@ TARGETS +=3D rtc TARGETS +=3D rust TARGETS +=3D seccomp TARGETS +=3D sgx -TARGETS +=3D sigaltstack +TARGETS +=3D signal TARGETS +=3D size TARGETS +=3D sparc64 TARGETS +=3D splice diff --git a/tools/testing/selftests/sigaltstack/.gitignore b/tools/testing= /selftests/signal/.gitignore similarity index 100% rename from tools/testing/selftests/sigaltstack/.gitignore rename to tools/testing/selftests/signal/.gitignore diff --git a/tools/testing/selftests/sigaltstack/Makefile b/tools/testing/s= elftests/signal/Makefile similarity index 100% rename from tools/testing/selftests/sigaltstack/Makefile rename to tools/testing/selftests/signal/Makefile diff --git a/tools/testing/selftests/sigaltstack/current_stack_pointer.h b/= tools/testing/selftests/signal/current_stack_pointer.h similarity index 100% rename from tools/testing/selftests/sigaltstack/current_stack_pointer.h rename to tools/testing/selftests/signal/current_stack_pointer.h diff --git a/tools/testing/selftests/sigaltstack/sas.c b/tools/testing/self= tests/signal/sas.c similarity index 100% rename from tools/testing/selftests/sigaltstack/sas.c rename to tools/testing/selftests/signal/sas.c --=20 2.30.2