* [Qemu-devel] Changing the QEMU svn VERSION string
@ 2009-04-07 2:37 Anthony Liguori
2009-04-07 8:10 ` Gerd Hoffmann
` (2 more replies)
0 siblings, 3 replies; 13+ messages in thread
From: Anthony Liguori @ 2009-04-07 2:37 UTC (permalink / raw)
To: qemu-devel@nongnu.org; +Cc: libvir-list, kvm-devel
Hi,
I'd like to update the VERSION string in QEMU's svn tree. Right now,
it's 0.10.0 and since we have a 0.10.2 release, that's somewhat confusing.
I don't want to make it 0.11.0 either because that's not going to be
reliable from a feature detection perspective. What I would like is to
make it 0.11.0-devel or something similar to that.
Being the nice guy I am, I thought I would check that this didn't make
libvirt go bonkers :-) This is the relevant detection code in libvirt:
if (sscanf(help, "QEMU PC emulator version %u.%u.%u (kvm-%u)",
&major, &minor, µ, &kvm_version) != 4)
kvm_version = 0;
if (!kvm_version && sscanf(help, "QEMU PC emulator version u.%u.%u",
&major, &minor, µ) != 3)
goto cleanup2;
If I change SVN to 0.11.0-devel, that's going to break the KVM string
although the QEMU string will continue to work. Avi could potentially
carry a patch to keep it 0.10.x and since kvm-%u will be used to
identify features, that should keep things working.
Anyone have any objections/suggestions?
Regards,
Anthony Liguori
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [Qemu-devel] Changing the QEMU svn VERSION string
2009-04-07 2:37 [Qemu-devel] Changing the QEMU svn VERSION string Anthony Liguori
@ 2009-04-07 8:10 ` Gerd Hoffmann
[not found] ` <20090407090322.GC31447@redhat.com>
2009-04-07 9:04 ` [Qemu-devel] " Daniel P. Berrange
2009-04-07 16:09 ` [Qemu-devel] " Andreas Färber
2 siblings, 1 reply; 13+ messages in thread
From: Gerd Hoffmann @ 2009-04-07 8:10 UTC (permalink / raw)
To: qemu-devel; +Cc: libvir-list, kvm-devel
Hi,
> I'd like to update the VERSION string in QEMU's svn tree. Right now,
> it's 0.10.0 and since we have a 0.10.2 release, that's somewhat confusing.
>
> I don't want to make it 0.11.0 either because that's not going to be
> reliable from a feature detection perspective. What I would like is to
> make it 0.11.0-devel or something similar to that.
Maybe 0.10.99 ? Or 0.10.90, leaving the door open to number the 0.11
beta / rc versions (if any) 0.10.9{1,2,3}?
cheers,
Gerd
^ permalink raw reply [flat|nested] 13+ messages in thread
* [Qemu-devel] Re: Changing the QEMU svn VERSION string
2009-04-07 2:37 [Qemu-devel] Changing the QEMU svn VERSION string Anthony Liguori
2009-04-07 8:10 ` Gerd Hoffmann
@ 2009-04-07 9:04 ` Daniel P. Berrange
2009-04-07 16:09 ` [Qemu-devel] " Andreas Färber
2 siblings, 0 replies; 13+ messages in thread
From: Daniel P. Berrange @ 2009-04-07 9:04 UTC (permalink / raw)
To: Anthony Liguori; +Cc: libvir-list, qemu-devel@nongnu.org, kvm-devel
On Mon, Apr 06, 2009 at 09:37:55PM -0500, Anthony Liguori wrote:
> Hi,
>
> I'd like to update the VERSION string in QEMU's svn tree. Right now,
> it's 0.10.0 and since we have a 0.10.2 release, that's somewhat confusing.
>
> I don't want to make it 0.11.0 either because that's not going to be
> reliable from a feature detection perspective. What I would like is to
> make it 0.11.0-devel or something similar to that.
>
> Being the nice guy I am, I thought I would check that this didn't make
> libvirt go bonkers :-) This is the relevant detection code in libvirt:
>
>
> if (sscanf(help, "QEMU PC emulator version %u.%u.%u (kvm-%u)",
> &major, &minor, µ, &kvm_version) != 4)
> kvm_version = 0;
>
> if (!kvm_version && sscanf(help, "QEMU PC emulator version u.%u.%u",
> &major, &minor, µ) != 3)
> goto cleanup2;
>
> If I change SVN to 0.11.0-devel, that's going to break the KVM string
> although the QEMU string will continue to work. Avi could potentially
> carry a patch to keep it 0.10.x and since kvm-%u will be used to
> identify features, that should keep things working.
The only things we use the KVM version for are to decide whether migration
and vnet_hdr flag for tun devices is supported. These checks are already
outdated since 0.10.0 QEMU now has support for migration, and thus needs
updating. So if you choose to go with '0.11.0-devel' it won't cause any
huge problems for us, and I'll change this code to make it more forgiving
of version number string changes in future.
Regards,
Daniel
--
|: Red Hat, Engineering, London -o- http://people.redhat.com/berrange/ :|
|: http://libvirt.org -o- http://virt-manager.org -o- http://ovirt.org :|
|: http://autobuild.org -o- http://search.cpan.org/~danberr/ :|
|: GnuPG: 7D3B9505 -o- F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 :|
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [Qemu-devel] Changing the QEMU svn VERSION string
2009-04-07 2:37 [Qemu-devel] Changing the QEMU svn VERSION string Anthony Liguori
2009-04-07 8:10 ` Gerd Hoffmann
2009-04-07 9:04 ` [Qemu-devel] " Daniel P. Berrange
@ 2009-04-07 16:09 ` Andreas Färber
2009-04-07 16:29 ` M. Warner Losh
2 siblings, 1 reply; 13+ messages in thread
From: Andreas Färber @ 2009-04-07 16:09 UTC (permalink / raw)
To: qemu-devel
Hi,
On the topic of QEMU help output, it still reads:
Copyright (c) 2003-2008 Fabrice Bellard
Since the code was last modified in 2009, I feel that should be
reflected in some copyright statement.
Given that iirc Fabrice has not contributed code this year, I see two
options:
Copyright (c) 2003-2009 Fabrice Bellard and contributors
Or if we want to stick with one maintainer's name only:
Copyright (c) 2003-2008 Fabrice Bellard
Copyright (c) 2008-2009 Anthony Liguori
Andreas
Am 07.04.2009 um 04:37 schrieb Anthony Liguori:
> Hi,
>
> I'd like to update the VERSION string in QEMU's svn tree. Right
> now, it's 0.10.0 and since we have a 0.10.2 release, that's somewhat
> confusing.
>
> I don't want to make it 0.11.0 either because that's not going to be
> reliable from a feature detection perspective. What I would like is
> to make it 0.11.0-devel or something similar to that.
>
> Being the nice guy I am, I thought I would check that this didn't
> make libvirt go bonkers :-) This is the relevant detection code in
> libvirt:
>
>
> if (sscanf(help, "QEMU PC emulator version %u.%u.%u (kvm-%u)",
> &major, &minor, µ, &kvm_version) != 4)
> kvm_version = 0;
>
> if (!kvm_version && sscanf(help, "QEMU PC emulator version u.%u.%u",
> &major, &minor, µ) != 3)
> goto cleanup2;
>
> If I change SVN to 0.11.0-devel, that's going to break the KVM
> string although the QEMU string will continue to work. Avi could
> potentially carry a patch to keep it 0.10.x and since kvm-%u will be
> used to identify features, that should keep things working.
>
>
> Anyone have any objections/suggestions?
>
> Regards,
>
> Anthony Liguori
>
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [Qemu-devel] Changing the QEMU svn VERSION string
2009-04-07 16:09 ` [Qemu-devel] " Andreas Färber
@ 2009-04-07 16:29 ` M. Warner Losh
2009-04-08 21:10 ` Andreas Färber
0 siblings, 1 reply; 13+ messages in thread
From: M. Warner Losh @ 2009-04-07 16:29 UTC (permalink / raw)
To: qemu-devel, andreas.faerber
In message: <264E220E-78B4-4A46-93E3-B896192058EB@web.de>
Andreas_Färber <andreas.faerber@web.de> writes:
: Hi,
:
: On the topic of QEMU help output, it still reads:
: Copyright (c) 2003-2008 Fabrice Bellard
:
: Since the code was last modified in 2009, I feel that should be
: reflected in some copyright statement.
Likely.
: Given that iirc Fabrice has not contributed code this year, I see two
: options:
:
: Copyright (c) 2003-2009 Fabrice Bellard and contributors
:
: Or if we want to stick with one maintainer's name only:
:
: Copyright (c) 2003-2008 Fabrice Bellard
: Copyright (c) 2008-2009 Anthony Liguori
What purpose is this copyright notice? Is it to notify users of the
collection copyright (eg, the gluing together of everything)? In that
case, the above is fine. If it is supposed to be for everybody's
individual contributions, then none of the above are sufficient (or
required). However, it likely would be good to include a contributors
page. I haven't reviewed all the licenses in all the files in the
system, but it never hurts to have a file that acknowledges all the
copyrights in a central place.
Unlike trademarks, you can't say "Copyright by a bunch of folks"
That's not valid copyright notice, and that's what the "and
contributors" does....
My recommendation would be to go with the second form.
Warner
: Am 07.04.2009 um 04:37 schrieb Anthony Liguori:
:
: > Hi,
: >
: > I'd like to update the VERSION string in QEMU's svn tree. Right
: > now, it's 0.10.0 and since we have a 0.10.2 release, that's somewhat
: > confusing.
: >
: > I don't want to make it 0.11.0 either because that's not going to be
: > reliable from a feature detection perspective. What I would like is
: > to make it 0.11.0-devel or something similar to that.
: >
: > Being the nice guy I am, I thought I would check that this didn't
: > make libvirt go bonkers :-) This is the relevant detection code in
: > libvirt:
: >
: >
: > if (sscanf(help, "QEMU PC emulator version %u.%u.%u (kvm-%u)",
: > &major, &minor, µ, &kvm_version) != 4)
: > kvm_version = 0;
: >
: > if (!kvm_version && sscanf(help, "QEMU PC emulator version u.%u.%u",
: > &major, &minor, µ) != 3)
: > goto cleanup2;
: >
: > If I change SVN to 0.11.0-devel, that's going to break the KVM
: > string although the QEMU string will continue to work. Avi could
: > potentially carry a patch to keep it 0.10.x and since kvm-%u will be
: > used to identify features, that should keep things working.
: >
: >
: > Anyone have any objections/suggestions?
: >
: > Regards,
: >
: > Anthony Liguori
: >
: >
:
:
:
:
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [Qemu-devel] Changing the QEMU svn VERSION string
2009-04-07 16:29 ` M. Warner Losh
@ 2009-04-08 21:10 ` Andreas Färber
0 siblings, 0 replies; 13+ messages in thread
From: Andreas Färber @ 2009-04-08 21:10 UTC (permalink / raw)
To: qemu-devel
Am 07.04.2009 um 18:29 schrieb M. Warner Losh:
> In message: <264E220E-78B4-4A46-93E3-B896192058EB@web.de>
> Andreas_Färber <andreas.faerber@web.de> writes:
> : Hi,
> :
> : On the topic of QEMU help output, it still reads:
> : Copyright (c) 2003-2008 Fabrice Bellard
> :
> : Since the code was last modified in 2009, I feel that should be
> : reflected in some copyright statement.
[...]
> What purpose is this copyright notice? Is it to notify users of the
> collection copyright (eg, the gluing together of everything)?
From my POV, its main purpose is indicating to the casual user the
time span the software was developed in (rather than the date of
compilation).
In my country, there is no "copyright" and I do own the IPR to my
patches independently of such a notice.
I believe the copyright notice may have more significance in the US
but IANAL.
Andreas
> In that
> case, the above is fine. If it is supposed to be for everybody's
> individual contributions, then none of the above are sufficient (or
> required). However, it likely would be good to include a contributors
> page. I haven't reviewed all the licenses in all the files in the
> system, but it never hurts to have a file that acknowledges all the
> copyrights in a central place.
>
> Unlike trademarks, you can't say "Copyright by a bunch of folks"
> That's not valid copyright notice, and that's what the "and
> contributors" does....
>
> My recommendation would be to go with the second form.
>
> Warner
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2009-04-08 21:11 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-07 2:37 [Qemu-devel] Changing the QEMU svn VERSION string Anthony Liguori
2009-04-07 8:10 ` Gerd Hoffmann
[not found] ` <20090407090322.GC31447@redhat.com>
2009-04-07 13:52 ` [libvirt] " Anthony Liguori
2009-04-07 17:13 ` Jamie Lokier
2009-04-08 6:35 ` Gerd Hoffmann
2009-04-07 17:58 ` Daniel Jacobowitz
2009-04-07 22:36 ` Paul Brook
2009-04-08 13:13 ` Anthony Liguori
2009-04-08 13:56 ` Jamie Lokier
2009-04-07 9:04 ` [Qemu-devel] " Daniel P. Berrange
2009-04-07 16:09 ` [Qemu-devel] " Andreas Färber
2009-04-07 16:29 ` M. Warner Losh
2009-04-08 21:10 ` Andreas Färber
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).