Re: [GIT PULL] Kselftest fixes for Linux 5.11-rc3

2021-01-08 Thread pr-tracker-bot
The pull request you sent on Fri, 8 Jan 2021 11:14:39 -0700:

> git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest 
> tags/linux-kselftest-next-5.11-rc3

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/8f3d8491d03594823a7f7d71d5063e1bcd03c75c

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html


[GIT PULL] Kselftest fixes for Linux 5.11-rc3

2021-01-08 Thread Shuah Khan

Hi Linus,

Please pull the following fixes update for Linux 5.11-rc3.

This fixes update for 5.11-rc3 consists of two minor fixes to vDSO test
changes in 5.11-rc1 update.

diff is attached.

thanks,
-- Shuah


The following changes since commit e71ba9452f0b5b2e8dc8aa5445198cd9214a6a62:

  Linux 5.11-rc2 (2021-01-03 15:55:30 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest 
tags/linux-kselftest-next-5.11-rc3


for you to fetch changes up to df00d02989024d193a6efd1a85513a5658c6a10f:

  selftests/vDSO: fix -Wformat warning in vdso_test_correctness 
(2021-01-04 09:25:45 -0700)



linux-kselftest-next-5.11-rc3

This fixes update for 5.11-rc3 consists of two minor fixes to vDSO test
changes in 5.11-rc1 update.


Tobias Klauser (2):
  selftests/vDSO: add additional binaries to .gitignore
  selftests/vDSO: fix -Wformat warning in vdso_test_correctness

 tools/testing/selftests/vDSO/.gitignore  | 3 +++
 tools/testing/selftests/vDSO/vdso_test_correctness.c | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)


diff --git a/tools/testing/selftests/vDSO/.gitignore b/tools/testing/selftests/vDSO/.gitignore
index 5eb64d41e541..a8dc51af5a9c 100644
--- a/tools/testing/selftests/vDSO/.gitignore
+++ b/tools/testing/selftests/vDSO/.gitignore
@@ -1,5 +1,8 @@
 # SPDX-License-Identifier: GPL-2.0-only
 vdso_test
+vdso_test_abi
+vdso_test_clock_getres
+vdso_test_correctness
 vdso_test_gettimeofday
 vdso_test_getcpu
 vdso_standalone_test_x86
diff --git a/tools/testing/selftests/vDSO/vdso_test_correctness.c b/tools/testing/selftests/vDSO/vdso_test_correctness.c
index 5029ef9b228c..c4aea794725a 100644
--- a/tools/testing/selftests/vDSO/vdso_test_correctness.c
+++ b/tools/testing/selftests/vDSO/vdso_test_correctness.c
@@ -349,7 +349,7 @@ static void test_one_clock_gettime64(int clock, const char *name)
 		return;
 	}
 
-	printf("\t%llu.%09ld %llu.%09ld %llu.%09ld\n",
+	printf("\t%llu.%09lld %llu.%09lld %llu.%09lld\n",
 	   (unsigned long long)start.tv_sec, start.tv_nsec,
 	   (unsigned long long)vdso.tv_sec, vdso.tv_nsec,
 	   (unsigned long long)end.tv_sec, end.tv_nsec);