xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* Re: Commit moratorium for branching 4.7
       [not found] <22358.51377.974810.863351@mariner.uk.xensource.com>
@ 2016-06-07 13:55 ` Ian Jackson
  2016-06-07 14:26   ` Jan Beulich
  2016-06-07 16:00   ` Wei Liu
  0 siblings, 2 replies; 5+ messages in thread
From: Ian Jackson @ 2016-06-07 13:55 UTC (permalink / raw)
  To: committers; +Cc: xen-devel

Ian Jackson writes ("Commit moratorium for branching 4.7"):
> At Wei's request, I am starting to branch the tree, so that
> xen-unstable can diverge from the *-4.7 preparation branches.
> 
> Please don't commit anything until I'm done, which will be later
> today.

I have now finished this branching process.  Please let me know of any
anomalies.  I have applied the patch below to xen.git#staging, to
(from a technical point of view) open Xen 4.8.

I'm not sure we have made a community decision about the terms under
which patches may be committed to the newly-open 4.8 (and who is
responsible for porting bug fixes from 4.7 to 4.8 or vice versa).
Perhaps I missed the email.  I don't think the stable tree maintainers
want to take over 4.7 yet.  So until that is settled, probably nothing
substantial should be committed to 4.8.

Commits for 4.7 should now go to xen.git#staging-4.7, on the same
terms as before.  (Ie, with Wei's approval.)

The branching process did not involve pushing any change to any of the
4.7 git branches.

Ian.


From 936a7a5483fbdd4ae3d813beff8921e902f43a46 Mon Sep 17 00:00:00 2001
From: Ian Jackson <ian.jackson@eu.citrix.com>
Date: Tue, 7 Jun 2016 14:49:31 +0100
Subject: [PATCH] Open Xen 4.8-unstable

* Change version number in README and xen/Makefile to `4.8-unstable'.
* Set `debug ?= y'.
* Set QEMU_UPSTREAM_REVISION to track qemu-xen.git `master'.

Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
CC: Wei Liu <wei.liu2@citrix.com>
---
 Config.mk    |    4 ++--
 README       |   12 ++++++------
 xen/Makefile |    4 ++--
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/Config.mk b/Config.mk
index bc5c456..e083727 100644
--- a/Config.mk
+++ b/Config.mk
@@ -17,7 +17,7 @@ or       = $(if $(strip $(1)),$(1),$(if $(strip $(2)),$(2),$(if $(strip $(3)),$(
 -include $(XEN_ROOT)/.config
 
 # A debug build of Xen and tools?
-debug ?= n
+debug ?= y
 debug_symbols ?= $(debug)
 
 # Test coverage support
@@ -272,7 +272,7 @@ SEABIOS_UPSTREAM_URL ?= git://xenbits.xen.org/seabios.git
 MINIOS_UPSTREAM_URL ?= git://xenbits.xen.org/mini-os.git
 endif
 OVMF_UPSTREAM_REVISION ?= 52a99493cce88a9d4ec8a02d7f1bd1a1001ce60d
-QEMU_UPSTREAM_REVISION ?= qemu-xen-4.7.0-rc5
+QEMU_UPSTREAM_REVISION ?= master
 MINIOS_UPSTREAM_REVISION ?= 1a3ee6eeca136525aa2e6917ae500e7cf731c09d
 # Fri May 13 15:21:10 2016 +0100
 # lib/sys.c: enclose file_types in define guards
diff --git a/README b/README
index d3f432a..e1ac04a 100644
--- a/README
+++ b/README
@@ -1,10 +1,10 @@
 #################################
-__  __            _  _   _____              
-\ \/ /___ _ __   | || | |___  |    _ __ ___ 
- \  // _ \ '_ \  | || |_   / /____| '__/ __|
- /  \  __/ | | | |__   _| / /_____| | | (__ 
-/_/\_\___|_| |_|    |_|(_)_/      |_|  \___|
-                                            
+__  __            _  _    ___                        _        _     _      
+\ \/ /___ _ __   | || |  ( _ )       _   _ _ __  ___| |_ __ _| |__ | | ___ 
+ \  // _ \ '_ \  | || |_ / _ \ _____| | | | '_ \/ __| __/ _` | '_ \| |/ _ \
+ /  \  __/ | | | |__   _| (_) |_____| |_| | | | \__ \ || (_| | |_) | |  __/
+/_/\_\___|_| |_|    |_|(_)___/       \__,_|_| |_|___/\__\__,_|_.__/|_|\___|
+                                                                           
 #################################
 
 http://www.xen.org/
diff --git a/xen/Makefile b/xen/Makefile
index b59f95d..ee8ce8e 100644
--- a/xen/Makefile
+++ b/xen/Makefile
@@ -1,8 +1,8 @@
 # This is the correct place to edit the build version.
 # All other places this is stored (eg. compile.h) should be autogenerated.
 export XEN_VERSION       = 4
-export XEN_SUBVERSION    = 7
-export XEN_EXTRAVERSION ?= .0-rc$(XEN_VENDORVERSION)
+export XEN_SUBVERSION    = 8
+export XEN_EXTRAVERSION ?= -unstable$(XEN_VENDORVERSION)
 export XEN_FULLVERSION   = $(XEN_VERSION).$(XEN_SUBVERSION)$(XEN_EXTRAVERSION)
 -include xen-version
 
-- 
1.7.10.4


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

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

* Re: Commit moratorium for branching 4.7
  2016-06-07 13:55 ` Commit moratorium for branching 4.7 Ian Jackson
@ 2016-06-07 14:26   ` Jan Beulich
  2016-06-07 14:41     ` George Dunlap
  2016-06-07 16:00   ` Wei Liu
  1 sibling, 1 reply; 5+ messages in thread
From: Jan Beulich @ 2016-06-07 14:26 UTC (permalink / raw)
  To: Ian Jackson; +Cc: xen-devel, committers

>>> On 07.06.16 at 15:55, <Ian.Jackson@eu.citrix.com> wrote:
> Ian Jackson writes ("Commit moratorium for branching 4.7"):
>> At Wei's request, I am starting to branch the tree, so that
>> xen-unstable can diverge from the *-4.7 preparation branches.
>> 
>> Please don't commit anything until I'm done, which will be later
>> today.
> 
> I have now finished this branching process.  Please let me know of any
> anomalies.  I have applied the patch below to xen.git#staging, to
> (from a technical point of view) open Xen 4.8.
> 
> I'm not sure we have made a community decision about the terms under
> which patches may be committed to the newly-open 4.8 (and who is
> responsible for porting bug fixes from 4.7 to 4.8 or vice versa).
> Perhaps I missed the email.  I don't think the stable tree maintainers
> want to take over 4.7 yet.  So until that is settled, probably nothing
> substantial should be committed to 4.8.
> 
> Commits for 4.7 should now go to xen.git#staging-4.7, on the same
> terms as before.  (Ie, with Wei's approval.)

Perhaps we can use the same model as I think we used last time,
with the person committing to unstable being responsible to also
put things applicable to 4.7 there? And with that declare the tree
open again for any changes not deemed likely to complicate
eventual backports to 4.7?

Jan


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

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

* Re: Commit moratorium for branching 4.7
  2016-06-07 14:26   ` Jan Beulich
@ 2016-06-07 14:41     ` George Dunlap
  2016-06-07 15:55       ` Ian Jackson
  0 siblings, 1 reply; 5+ messages in thread
From: George Dunlap @ 2016-06-07 14:41 UTC (permalink / raw)
  To: Jan Beulich, Ian Jackson; +Cc: xen-devel, committers

On 07/06/16 15:26, Jan Beulich wrote:
>>>> On 07.06.16 at 15:55, <Ian.Jackson@eu.citrix.com> wrote:
>> Ian Jackson writes ("Commit moratorium for branching 4.7"):
>>> At Wei's request, I am starting to branch the tree, so that
>>> xen-unstable can diverge from the *-4.7 preparation branches.
>>>
>>> Please don't commit anything until I'm done, which will be later
>>> today.
>>
>> I have now finished this branching process.  Please let me know of any
>> anomalies.  I have applied the patch below to xen.git#staging, to
>> (from a technical point of view) open Xen 4.8.
>>
>> I'm not sure we have made a community decision about the terms under
>> which patches may be committed to the newly-open 4.8 (and who is
>> responsible for porting bug fixes from 4.7 to 4.8 or vice versa).
>> Perhaps I missed the email.  I don't think the stable tree maintainers
>> want to take over 4.7 yet.  So until that is settled, probably nothing
>> substantial should be committed to 4.8.
>>
>> Commits for 4.7 should now go to xen.git#staging-4.7, on the same
>> terms as before.  (Ie, with Wei's approval.)
> 
> Perhaps we can use the same model as I think we used last time,
> with the person committing to unstable being responsible to also
> put things applicable to 4.7 there? And with that declare the tree
> open again for any changes not deemed likely to complicate
> eventual backports to 4.7?

+1

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

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

* Re: Commit moratorium for branching 4.7
  2016-06-07 14:41     ` George Dunlap
@ 2016-06-07 15:55       ` Ian Jackson
  0 siblings, 0 replies; 5+ messages in thread
From: Ian Jackson @ 2016-06-07 15:55 UTC (permalink / raw)
  To: George Dunlap; +Cc: xen-devel, committers, Jan Beulich

George Dunlap writes ("Re: Commit moratorium for branching 4.7"):
> On 07/06/16 15:26, Jan Beulich wrote:
> > Perhaps we can use the same model as I think we used last time,
> > with the person committing to unstable being responsible to also
> > put things applicable to 4.7 there? And with that declare the tree
> > open again for any changes not deemed likely to complicate
> > eventual backports to 4.7?
> 
> +1

SGTM

Ian.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

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

* Re: Commit moratorium for branching 4.7
  2016-06-07 13:55 ` Commit moratorium for branching 4.7 Ian Jackson
  2016-06-07 14:26   ` Jan Beulich
@ 2016-06-07 16:00   ` Wei Liu
  1 sibling, 0 replies; 5+ messages in thread
From: Wei Liu @ 2016-06-07 16:00 UTC (permalink / raw)
  To: Ian Jackson; +Cc: xen-devel, committers, Wei Liu

On Tue, Jun 07, 2016 at 02:55:39PM +0100, Ian Jackson wrote:
> Ian Jackson writes ("Commit moratorium for branching 4.7"):
> > At Wei's request, I am starting to branch the tree, so that
> > xen-unstable can diverge from the *-4.7 preparation branches.
> > 
> > Please don't commit anything until I'm done, which will be later
> > today.
> 
> I have now finished this branching process.  Please let me know of any
> anomalies.  I have applied the patch below to xen.git#staging, to
> (from a technical point of view) open Xen 4.8.
> 
> I'm not sure we have made a community decision about the terms under
> which patches may be committed to the newly-open 4.8 (and who is
> responsible for porting bug fixes from 4.7 to 4.8 or vice versa).
> Perhaps I missed the email.  I don't think the stable tree maintainers
> want to take over 4.7 yet.  So until that is settled, probably nothing
> substantial should be committed to 4.8.
> 

I forgot to send an email about this, sorry.

From the point on up to the actual release, all committers are
responsible for both 4.7 and -unstable branch. Bug fixes can be first
committed -unstable (no RM ack needed) and then cherry-pick (with RM
ack) to 4.7 branch.

I don't expect there to be large number of patches though.

Wei.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

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

end of thread, other threads:[~2016-06-07 16:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <22358.51377.974810.863351@mariner.uk.xensource.com>
2016-06-07 13:55 ` Commit moratorium for branching 4.7 Ian Jackson
2016-06-07 14:26   ` Jan Beulich
2016-06-07 14:41     ` George Dunlap
2016-06-07 15:55       ` Ian Jackson
2016-06-07 16:00   ` Wei Liu

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