From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 93AAC26AAA9 for ; Fri, 28 Feb 2025 12:29:58 +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=1740745799; cv=none; b=H+xZL2nXswoOR7oLz2vdMl50EhwCF2h0xYfOb9F6WDH/Ei55rc4BIesceOutA2+C0oHphIV3yPhvGW7gJnoTUMv+2fbQulAgld5g7+IJZ51vig0hpyiLTRqEHsIWMdNVOC9Xb0e0UA1SxUMIsrXU0aXq5nLxz1YghDogEXx3okM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740745799; c=relaxed/simple; bh=dG19Ykc5e2+OMQMu6oE/ctgwCdoHgjgeQvt5j8/klsY=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=YIZFlMr+ES41SE2r/K/HWMT5FyRhBOZNse6jQGoWB1KMrl1Yzbo4DW1db9tzpm6e4tJAb0RnANjya5PVdRoAIx6RxwA4oiG2oBGHnh7hBEz84vA14CykuD4hmN78n+dLVa8CncRIGU6immunZI4hTTnfKEFP65eDvANhItf9G9A= 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 72B9D1688; Fri, 28 Feb 2025 04:30:13 -0800 (PST) Received: from [10.1.196.72] (e119884-lin.cambridge.arm.com [10.1.196.72]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id D38B63F6A8; Fri, 28 Feb 2025 04:29:55 -0800 (PST) Message-ID: <8f9a190d-75a8-42e2-a736-55dd2f1f6163@arm.com> Date: Fri, 28 Feb 2025 12:29:54 +0000 Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v2 14/16] selftests: vDSO: vdso_test_gettimeofday: Clean up includes To: =?UTF-8?Q?Thomas_Wei=C3=9Fschuh?= , Kees Cook , Eric Biederman , Shuah Khan , Nathan Chancellor , Nick Desaulniers , Bill Wendling , Justin Stitt , Andy Lutomirski , Thomas Gleixner , Willy Tarreau , =?UTF-8?Q?Thomas_Wei=C3=9Fschuh?= Cc: "Jason A. Donenfeld" , Christophe Leroy , linux-mm@kvack.org, linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org, llvm@lists.linux.dev References: <20250226-parse_vdso-nolibc-v2-0-28e14e031ed8@linutronix.de> <20250226-parse_vdso-nolibc-v2-14-28e14e031ed8@linutronix.de> Content-Language: en-US From: Vincenzo Frascino In-Reply-To: <20250226-parse_vdso-nolibc-v2-14-28e14e031ed8@linutronix.de> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On 26/02/2025 11:44, Thomas Weißschuh wrote: > Some unnecessary headers are included, remove them. > > Signed-off-by: Thomas Weißschuh Reviewed-by: Vincenzo Frascino > --- > tools/testing/selftests/vDSO/vdso_test_gettimeofday.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/tools/testing/selftests/vDSO/vdso_test_gettimeofday.c b/tools/testing/selftests/vDSO/vdso_test_gettimeofday.c > index e31b18ffae338c1576449b54ca7f84d9816d2ecb..636a56ccf8e4e7943ca446fe3fad6897598ca77f 100644 > --- a/tools/testing/selftests/vDSO/vdso_test_gettimeofday.c > +++ b/tools/testing/selftests/vDSO/vdso_test_gettimeofday.c > @@ -10,8 +10,6 @@ > * Tested on x86, 32-bit and 64-bit. It may work on other architectures, too. > */ > > -#include > -#include > #include > #include > #include > -- Regards, Vincenzo