kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [kvm-unit-tests PATCH 2/2] x86/smptest: Fix whitespacing issues
@ 2022-01-04 12:51 Kaya, Metin
  2022-01-04 15:24 ` Kaya, Metin
  0 siblings, 1 reply; 2+ messages in thread
From: Kaya, Metin @ 2022-01-04 12:51 UTC (permalink / raw)
  To: kvm

[-- Attachment #1: Type: text/plain, Size: 126 bytes --]

​​​​The convention is using spaces in x86/smptest.c. However, tab was used  in 2 places. Replaced them with spaces.​

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0002-x86-smptest-Fix-whitespacing-issues.patch --]
[-- Type: text/x-patch; name="0002-x86-smptest-Fix-whitespacing-issues.patch", Size: 1120 bytes --]

From aa35cf403ef2296afb20cbe96cf771495eebcd99 Mon Sep 17 00:00:00 2001
From: Metin Kaya <metikaya@amazon.com>
Date: Wed, 22 Dec 2021 18:25:20 +0000
Subject: [kvm-unit-tests PATCH 2/2] x86/smptest: Fix whitespacing issues

The convention is using spaces in x86/smptest.c. However, tab was used
in 2 places. Replaced them with spaces.

Signed-off-by: Metin Kaya <metikaya@amazon.com>
---
 x86/smptest.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x86/smptest.c b/x86/smptest.c
index 2989aa0..6391759 100644
--- a/x86/smptest.c
+++ b/x86/smptest.c
@@ -9,7 +9,7 @@ static void ipi_test(void *data)
 
     printf("ipi called, cpu %d\n", n);
     if (n != smp_id())
-	printf("but wrong cpu %d\n", smp_id());
+        printf("but wrong cpu %d\n", smp_id());
     else
         nipis++;
 }
@@ -22,7 +22,7 @@ int main(void)
     ncpus = cpu_count();
     printf("found %d cpus\n", ncpus);
     for (i = 0; i < ncpus; ++i)
-	on_cpu(i, ipi_test, (void *)(long)i);
+        on_cpu(i, ipi_test, (void *)(long)i);
 
     report(nipis == ncpus, "IPI to each CPU");
     return report_summary();
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [kvm-unit-tests PATCH 2/2] x86/smptest: Fix whitespacing issues
  2022-01-04 12:51 [kvm-unit-tests PATCH 2/2] x86/smptest: Fix whitespacing issues Kaya, Metin
@ 2022-01-04 15:24 ` Kaya, Metin
  0 siblings, 0 replies; 2+ messages in thread
From: Kaya, Metin @ 2022-01-04 15:24 UTC (permalink / raw)
  To: kvm

[-- Attachment #1: Type: text/plain, Size: 359 bytes --]

This is up-to-date version of the same patch.

________________________________________
From: Kaya, Metin
Sent: 04 January 2022 12:51
To: kvm@vger.kernel.org
Subject: [kvm-unit-tests PATCH 2/2] x86/smptest: Fix whitespacing issues

​​​​The convention is using spaces in x86/smptest.c. However, tab was used  in 2 places. Replaced them with spaces.​

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0002-x86-smptest-Fix-whitespacing-issues.patch --]
[-- Type: text/x-patch; name="0002-x86-smptest-Fix-whitespacing-issues.patch", Size: 1130 bytes --]

From 9431d139ced6e14efc7a11d644b59d4257e0ed6f Mon Sep 17 00:00:00 2001
From: Metin Kaya <metikaya@amazon.com>
Date: Wed, 22 Dec 2021 18:25:20 +0000
Subject: [kvm-unit-tests PATCH 2/2] x86/smptest: Fix whitespacing issues

The convention is using spaces in x86/smptest.c. However, tab was used
in 2 places. Replaced them with spaces.

Signed-off-by: Metin Kaya <metikaya@amazon.com>
---
 x86/smptest.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x86/smptest.c b/x86/smptest.c
index cbb4e60..75cc39b 100644
--- a/x86/smptest.c
+++ b/x86/smptest.c
@@ -10,7 +10,7 @@ static void ipi_test(void *data)
 
     printf("ipi called, cpu %d\n", n);
     if (id_map[n] != smp_id())
-	printf("but wrong cpu %d\n", smp_id());
+        printf("but wrong cpu %d\n", smp_id());
     else
         nipis++;
 }
@@ -23,7 +23,7 @@ int main(void)
     ncpus = cpu_count();
     printf("found %d cpus\n", ncpus);
     for (i = 0; i < ncpus; ++i)
-	on_cpu(i, ipi_test, (void *)(long)i);
+        on_cpu(i, ipi_test, (void *)(long)i);
 
     report(nipis == ncpus, "IPI to each CPU");
     return report_summary();
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-01-04 15:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-04 12:51 [kvm-unit-tests PATCH 2/2] x86/smptest: Fix whitespacing issues Kaya, Metin
2022-01-04 15:24 ` Kaya, Metin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).