kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [kvm-unit-tests PATCH] arm64: debug: mark test_[bp,wp,ss] as noinline
@ 2022-01-11  4:11 Ricardo Koller
  2022-01-11 19:42 ` [kvm-unit-tests PATCH] arm64: debug: mark test_[bp, wp, ss] " Sean Christopherson
  0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Koller @ 2022-01-11  4:11 UTC (permalink / raw)
  To: kvm, kvmarm; +Cc: drjones, Paolo Bonzini, maz, oupton, Ricardo Koller

Clang inlines some functions (like test_ss) which define global labels
in inline assembly (e.g., ss_start). This results in:

    arm/debug.c:382:15: error: invalid symbol redefinition
            asm volatile("ss_start:\n"
                         ^
    <inline asm>:1:2: note: instantiated into assembly here
            ss_start:
            ^
    1 error generated.

Fix these functions by marking them as "noinline".

Cc: Andrew Jones <drjones@redhat.com>
Signed-off-by: Ricardo Koller <ricarkol@google.com>
---
This applies on top of: "[kvm-unit-tests PATCH 0/3] arm64: debug: add migration tests for debug state"
which is in https://gitlab.com/rhdrjones/kvm-unit-tests/-/commits/arm/queue.

 arm/debug.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arm/debug.c b/arm/debug.c
index 54f059d..6c5b683 100644
--- a/arm/debug.c
+++ b/arm/debug.c
@@ -264,7 +264,7 @@ static void do_migrate(void)
 	report_info("Migration complete");
 }
 
-static void test_hw_bp(bool migrate)
+static __attribute__((noinline)) void test_hw_bp(bool migrate)
 {
 	extern unsigned char hw_bp0;
 	uint32_t bcr;
@@ -310,7 +310,7 @@ static void test_hw_bp(bool migrate)
 
 static volatile char write_data[16];
 
-static void test_wp(bool migrate)
+static __attribute__((noinline)) void test_wp(bool migrate)
 {
 	uint32_t wcr;
 	uint32_t mdscr;
@@ -353,7 +353,7 @@ static void test_wp(bool migrate)
 	}
 }
 
-static void test_ss(bool migrate)
+static __attribute__((noinline)) void test_ss(bool migrate)
 {
 	extern unsigned char ss_start;
 	uint32_t mdscr;
-- 
2.34.1.575.g55b058a8bb-goog


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

* Re: [kvm-unit-tests PATCH] arm64: debug: mark test_[bp, wp, ss] as noinline
  2022-01-11  4:11 [kvm-unit-tests PATCH] arm64: debug: mark test_[bp,wp,ss] as noinline Ricardo Koller
@ 2022-01-11 19:42 ` Sean Christopherson
  2022-01-11 21:02   ` Ricardo Koller
  0 siblings, 1 reply; 3+ messages in thread
From: Sean Christopherson @ 2022-01-11 19:42 UTC (permalink / raw)
  To: Ricardo Koller; +Cc: kvm, kvmarm, Paolo Bonzini, maz

On Mon, Jan 10, 2022, Ricardo Koller wrote:
> Clang inlines some functions (like test_ss) which define global labels
> in inline assembly (e.g., ss_start). This results in:
> 
>     arm/debug.c:382:15: error: invalid symbol redefinition
>             asm volatile("ss_start:\n"
>                          ^
>     <inline asm>:1:2: note: instantiated into assembly here
>             ss_start:
>             ^
>     1 error generated.
> 
> Fix these functions by marking them as "noinline".
> 
> Cc: Andrew Jones <drjones@redhat.com>
> Signed-off-by: Ricardo Koller <ricarkol@google.com>
> ---
> This applies on top of: "[kvm-unit-tests PATCH 0/3] arm64: debug: add migration tests for debug state"
> which is in https://gitlab.com/rhdrjones/kvm-unit-tests/-/commits/arm/queue.
> 
>  arm/debug.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/arm/debug.c b/arm/debug.c
> index 54f059d..6c5b683 100644
> --- a/arm/debug.c
> +++ b/arm/debug.c
> @@ -264,7 +264,7 @@ static void do_migrate(void)
>  	report_info("Migration complete");
>  }
>  
> -static void test_hw_bp(bool migrate)
> +static __attribute__((noinline)) void test_hw_bp(bool migrate)

Use "noinline", which was added by commit 16431a7 ("lib: define the "noinline" macro").

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

* Re: [kvm-unit-tests PATCH] arm64: debug: mark test_[bp, wp, ss] as noinline
  2022-01-11 19:42 ` [kvm-unit-tests PATCH] arm64: debug: mark test_[bp, wp, ss] " Sean Christopherson
@ 2022-01-11 21:02   ` Ricardo Koller
  0 siblings, 0 replies; 3+ messages in thread
From: Ricardo Koller @ 2022-01-11 21:02 UTC (permalink / raw)
  To: Sean Christopherson; +Cc: kvm, kvmarm, Paolo Bonzini, maz

On Tue, Jan 11, 2022 at 07:42:54PM +0000, Sean Christopherson wrote:
> On Mon, Jan 10, 2022, Ricardo Koller wrote:
> > Clang inlines some functions (like test_ss) which define global labels
> > in inline assembly (e.g., ss_start). This results in:
> > 
> >     arm/debug.c:382:15: error: invalid symbol redefinition
> >             asm volatile("ss_start:\n"
> >                          ^
> >     <inline asm>:1:2: note: instantiated into assembly here
> >             ss_start:
> >             ^
> >     1 error generated.
> > 
> > Fix these functions by marking them as "noinline".
> > 
> > Cc: Andrew Jones <drjones@redhat.com>
> > Signed-off-by: Ricardo Koller <ricarkol@google.com>
> > ---
> > This applies on top of: "[kvm-unit-tests PATCH 0/3] arm64: debug: add migration tests for debug state"
> > which is in https://gitlab.com/rhdrjones/kvm-unit-tests/-/commits/arm/queue.
> > 
> >  arm/debug.c | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> > 
> > diff --git a/arm/debug.c b/arm/debug.c
> > index 54f059d..6c5b683 100644
> > --- a/arm/debug.c
> > +++ b/arm/debug.c
> > @@ -264,7 +264,7 @@ static void do_migrate(void)
> >  	report_info("Migration complete");
> >  }
> >  
> > -static void test_hw_bp(bool migrate)
> > +static __attribute__((noinline)) void test_hw_bp(bool migrate)
> 
> Use "noinline", which was added by commit 16431a7 ("lib: define the "noinline" macro").

Will do, thanks for the pointer.

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

end of thread, other threads:[~2022-01-11 21:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-11  4:11 [kvm-unit-tests PATCH] arm64: debug: mark test_[bp,wp,ss] as noinline Ricardo Koller
2022-01-11 19:42 ` [kvm-unit-tests PATCH] arm64: debug: mark test_[bp, wp, ss] " Sean Christopherson
2022-01-11 21:02   ` Ricardo Koller

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).