All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xen/sched: remove duplicate trace.h include
@ 2026-05-31 14:08 Furkan Caliskan
  2026-06-08 10:17 ` Juergen Gross
  2026-06-08 13:01 ` [PATCH for-4.22?] " Roger Pau Monné
  0 siblings, 2 replies; 4+ messages in thread
From: Furkan Caliskan @ 2026-05-31 14:08 UTC (permalink / raw)
  To: xen-devel
  Cc: roger.pau, jgross, dfaggioli, gwd, stewart.hildebrand, jbeulich,
	andrew.cooper3, Furkan Caliskan

Signed-off-by: Furkan Caliskan <frn1furkan10@gmail.com>
---
 xen/common/sched/rt.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/xen/common/sched/rt.c b/xen/common/sched/rt.c
index 4b637aa9db..b9a3e7720e 100644
--- a/xen/common/sched/rt.c
+++ b/xen/common/sched/rt.c
@@ -26,7 +26,6 @@
 #include <xen/trace.h>
 #include <xen/cpu.h>
 #include <xen/keyhandler.h>
-#include <xen/trace.h>
 #include <xen/err.h>
 #include <xen/guest_access.h>
 
-- 
2.34.1



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

* Re: [PATCH] xen/sched: remove duplicate trace.h include
  2026-05-31 14:08 [PATCH] xen/sched: remove duplicate trace.h include Furkan Caliskan
@ 2026-06-08 10:17 ` Juergen Gross
  2026-06-08 13:01 ` [PATCH for-4.22?] " Roger Pau Monné
  1 sibling, 0 replies; 4+ messages in thread
From: Juergen Gross @ 2026-06-08 10:17 UTC (permalink / raw)
  To: Furkan Caliskan, xen-devel
  Cc: roger.pau, dfaggioli, gwd, stewart.hildebrand, jbeulich,
	andrew.cooper3


[-- Attachment #1.1.1: Type: text/plain, Size: 607 bytes --]

On 31.05.26 16:08, Furkan Caliskan wrote:
> Signed-off-by: Furkan Caliskan <frn1furkan10@gmail.com>
> ---
>   xen/common/sched/rt.c | 1 -
>   1 file changed, 1 deletion(-)
> 
> diff --git a/xen/common/sched/rt.c b/xen/common/sched/rt.c
> index 4b637aa9db..b9a3e7720e 100644
> --- a/xen/common/sched/rt.c
> +++ b/xen/common/sched/rt.c
> @@ -26,7 +26,6 @@
>   #include <xen/trace.h>
>   #include <xen/cpu.h>
>   #include <xen/keyhandler.h>
> -#include <xen/trace.h>
>   #include <xen/err.h>
>   #include <xen/guest_access.h>
>   

Reviewed-by: Juergen Gross <jgross@suse.com>


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3743 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

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

* Re: [PATCH for-4.22?] xen/sched: remove duplicate trace.h include
  2026-05-31 14:08 [PATCH] xen/sched: remove duplicate trace.h include Furkan Caliskan
  2026-06-08 10:17 ` Juergen Gross
@ 2026-06-08 13:01 ` Roger Pau Monné
  2026-06-09  8:41   ` Oleksii Kurochko
  1 sibling, 1 reply; 4+ messages in thread
From: Roger Pau Monné @ 2026-06-08 13:01 UTC (permalink / raw)
  To: Furkan Caliskan, oleksii.kurochko
  Cc: xen-devel, jgross, dfaggioli, gwd, stewart.hildebrand, jbeulich,
	andrew.cooper3

On Sun, May 31, 2026 at 05:08:19PM +0300, Furkan Caliskan wrote:

Fixes: 8726c0557752 ("xen: add real time scheduler rtds")

> Signed-off-by: Furkan Caliskan <frn1furkan10@gmail.com>

Given this is non-functional change, and has a reviewed-by, what do
you think Oleksii, should be commit it for 4.22?

Thanks, Roger.


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

* Re: [PATCH for-4.22?] xen/sched: remove duplicate trace.h include
  2026-06-08 13:01 ` [PATCH for-4.22?] " Roger Pau Monné
@ 2026-06-09  8:41   ` Oleksii Kurochko
  0 siblings, 0 replies; 4+ messages in thread
From: Oleksii Kurochko @ 2026-06-09  8:41 UTC (permalink / raw)
  To: Roger Pau Monné, Furkan Caliskan
  Cc: xen-devel, jgross, dfaggioli, gwd, stewart.hildebrand, jbeulich,
	andrew.cooper3



On 6/8/26 3:01 PM, Roger Pau Monné wrote:
> On Sun, May 31, 2026 at 05:08:19PM +0300, Furkan Caliskan wrote:
> 
> Fixes: 8726c0557752 ("xen: add real time scheduler rtds")
> 
>> Signed-off-by: Furkan Caliskan <frn1furkan10@gmail.com>
> 
> Given this is non-functional change, and has a reviewed-by, what do
> you think Oleksii, should be commit it for 4.22?
> 
As it is non-functional we could consider it for 4.22:
  Release-Acked-by: Oleksii Kurochko <oleksii.kurochko@gmail.com>

Thanks.

~ Oleksii


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

end of thread, other threads:[~2026-06-09  8:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-31 14:08 [PATCH] xen/sched: remove duplicate trace.h include Furkan Caliskan
2026-06-08 10:17 ` Juergen Gross
2026-06-08 13:01 ` [PATCH for-4.22?] " Roger Pau Monné
2026-06-09  8:41   ` Oleksii Kurochko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.