xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* linux-next: manual merge of the xen-tip tree with the pm tree
@ 2016-07-12  4:09 Stephen Rothwell
  2016-07-12 12:14 ` Rafael J. Wysocki
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Rothwell @ 2016-07-12  4:09 UTC (permalink / raw)
  To: Jeremy Fitzhardinge, Konrad Rzeszutek Wilk, Stefano Stabellini,
	Xen Devel, Rafael J. Wysocki
  Cc: linux-next, linux-kernel, Octavian Purdila, Shannon Zhao

Hi all,

Today's linux-next merge of the xen-tip tree got a conflict in:

  drivers/acpi/scan.c

between commit:

  68bdb6773289 ("ACPI: add support for ACPI reconfiguration notifiers")

from the pm tree and commit:

  c8ac8b6fb495 ("Xen: ACPI: Hide UART used by Xen")

from the xen-tip tree.

I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging.  You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

-- 
Cheers,
Stephen Rothwell

diff --cc drivers/acpi/scan.c
index 405056b95b05,cfc73fecaba4..000000000000
--- a/drivers/acpi/scan.c
+++ b/drivers/acpi/scan.c
@@@ -1925,8 -1961,19 +1970,21 @@@ static int acpi_bus_scan_fixed(void
  	return result < 0 ? result : 0;
  }
  
+ static void __init acpi_get_spcr_uart_addr(void)
+ {
+ 	acpi_status status;
+ 	struct acpi_table_spcr *spcr_ptr;
+ 
+ 	status = acpi_get_table(ACPI_SIG_SPCR, 0,
+ 				(struct acpi_table_header **)&spcr_ptr);
+ 	if (ACPI_SUCCESS(status))
+ 		spcr_uart_addr = spcr_ptr->serial_port.address;
+ 	else
+ 		printk(KERN_WARNING PREFIX "STAO table present, but SPCR is missing\n");
+ }
+ 
 +static bool acpi_scan_initialized;
 +
  int __init acpi_scan_init(void)
  {
  	int result;

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

* Re: linux-next: manual merge of the xen-tip tree with the pm tree
  2016-07-12  4:09 linux-next: manual merge of the xen-tip tree with the pm tree Stephen Rothwell
@ 2016-07-12 12:14 ` Rafael J. Wysocki
  2016-07-12 15:31   ` Stefano Stabellini
  0 siblings, 1 reply; 4+ messages in thread
From: Rafael J. Wysocki @ 2016-07-12 12:14 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Jeremy Fitzhardinge, Konrad Rzeszutek Wilk, Stefano Stabellini,
	Xen Devel, linux-next, linux-kernel, Octavian Purdila,
	Shannon Zhao

On Tuesday, July 12, 2016 02:09:26 PM Stephen Rothwell wrote:
> Hi all,
> 
> Today's linux-next merge of the xen-tip tree got a conflict in:
> 
>   drivers/acpi/scan.c
> 
> between commit:
> 
>   68bdb6773289 ("ACPI: add support for ACPI reconfiguration notifiers")
> 
> from the pm tree and commit:
> 
>   c8ac8b6fb495 ("Xen: ACPI: Hide UART used by Xen")
> 
> from the xen-tip tree.
> 
> I fixed it up (see below) and can carry the fix as necessary.

Looks good to me, thanks Stehpen!

Best,
Rafael

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

* Re: linux-next: manual merge of the xen-tip tree with the pm tree
  2016-07-12 12:14 ` Rafael J. Wysocki
@ 2016-07-12 15:31   ` Stefano Stabellini
  0 siblings, 0 replies; 4+ messages in thread
From: Stefano Stabellini @ 2016-07-12 15:31 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Stephen Rothwell, Jeremy Fitzhardinge, Konrad Rzeszutek Wilk,
	Stefano Stabellini, Xen Devel, linux-next, linux-kernel,
	Octavian Purdila, Shannon Zhao

On Tue, 12 Jul 2016, Rafael J. Wysocki wrote:
> On Tuesday, July 12, 2016 02:09:26 PM Stephen Rothwell wrote:
> > Hi all,
> > 
> > Today's linux-next merge of the xen-tip tree got a conflict in:
> > 
> >   drivers/acpi/scan.c
> > 
> > between commit:
> > 
> >   68bdb6773289 ("ACPI: add support for ACPI reconfiguration notifiers")
> > 
> > from the pm tree and commit:
> > 
> >   c8ac8b6fb495 ("Xen: ACPI: Hide UART used by Xen")
> > 
> > from the xen-tip tree.
> > 
> > I fixed it up (see below) and can carry the fix as necessary.
> 
> Looks good to me, thanks Stehpen!
 
Looks good to me too.

Cheers,

Stefano

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

* linux-next: manual merge of the xen-tip tree with the pm tree
@ 2022-05-23  6:30 Stephen Rothwell
  0 siblings, 0 replies; 4+ messages in thread
From: Stephen Rothwell @ 2022-05-23  6:30 UTC (permalink / raw)
  To: Juergen Gross, Konrad Rzeszutek Wilk, Stefano Stabellini,
	Boris Ostrovsky, Rafael J. Wysocki
  Cc: Xen Devel, Dmitry Osipenko, Linux Kernel Mailing List,
	Linux Next Mailing List, Maximilian Heyne, Rafael J. Wysocki

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

Hi all,

Today's linux-next merge of the xen-tip tree got a conflict in:

  arch/x86/xen/enlighten_pv.c

between commit:

  f089ab674cea ("xen/x86: Use do_kernel_power_off()")

from the pm tree and commit:

  1591a65f55bc ("x86: xen: remove STACK_FRAME_NON_STANDARD from xen_cpuid")

from the xen-tip tree.

I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging.  You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

-- 
Cheers,
Stephen Rothwell

diff --cc arch/x86/xen/enlighten_pv.c
index af1f6e886225,ca85d1409917..000000000000
--- a/arch/x86/xen/enlighten_pv.c
+++ b/arch/x86/xen/enlighten_pv.c
@@@ -30,8 -30,6 +30,7 @@@
  #include <linux/pci.h>
  #include <linux/gfp.h>
  #include <linux/edd.h>
- #include <linux/objtool.h>
 +#include <linux/reboot.h>
  
  #include <xen/xen.h>
  #include <xen/events.h>

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

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

end of thread, other threads:[~2022-05-23  6:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-12  4:09 linux-next: manual merge of the xen-tip tree with the pm tree Stephen Rothwell
2016-07-12 12:14 ` Rafael J. Wysocki
2016-07-12 15:31   ` Stefano Stabellini
2022-05-23  6:30 Stephen Rothwell

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