* [PATCH v2] xen: remove XEN_PRIVILEGED_GUEST
2014-02-18 10:14 ` Paul Bolle
@ 2014-02-18 13:07 ` Paul Bolle
2014-02-18 13:07 ` Paul Bolle
` (2 subsequent siblings)
3 siblings, 0 replies; 19+ messages in thread
From: Paul Bolle @ 2014-02-18 13:07 UTC (permalink / raw)
To: Konrad Rzeszutek Wilk, Boris Ostrovsky, David Vrabel,
Thomas Gleixner, Ingo Molnar, H. Peter Anvin
Cc: Michael Opdenacker, x86, xen-devel, linux-kernel,
Richard Weinberger
This patch removes the Kconfig symbol XEN_PRIVILEGED_GUEST which is
used nowhere in the tree.
We do know grub2 has a script that greps kernel configuration files for
its macro. It shouldn't do that. As Linus summarized:
This is a grub bug. It really is that simple. Treat it as one.
Besides, grub2's grepping for that macro is actually superfluous. See,
that script currently contains this test (simplified):
grep -x CONFIG_XEN_DOM0=y $config || grep -x CONFIG_XEN_PRIVILEGED_GUEST=y $config
But since XEN_DOM0 and XEN_PRIVILEGED_GUEST are by definition equal,
removing XEN_PRIVILEGED_GUEST cannot influence this test.
So there's no reason to not remove this symbol, like we do with all
unused Kconfig symbols.
[pebolle@tiscali.nl: rewrote commit explanation.]
Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
---
v2: added a few lines to the commit explanation to show grub2's test for
this symbol is superfluous anyway. Still only git "grep tested".
arch/x86/xen/Kconfig | 5 -----
1 file changed, 5 deletions(-)
diff --git a/arch/x86/xen/Kconfig b/arch/x86/xen/Kconfig
index 01b9026..512219d 100644
--- a/arch/x86/xen/Kconfig
+++ b/arch/x86/xen/Kconfig
@@ -19,11 +19,6 @@ config XEN_DOM0
depends on XEN && PCI_XEN && SWIOTLB_XEN
depends on X86_LOCAL_APIC && X86_IO_APIC && ACPI && PCI
-# Dummy symbol since people have come to rely on the PRIVILEGED_GUEST
-# name in tools.
-config XEN_PRIVILEGED_GUEST
- def_bool XEN_DOM0
-
config XEN_PVHVM
def_bool y
depends on XEN && PCI && X86_LOCAL_APIC
--
1.8.5.3
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH v2] xen: remove XEN_PRIVILEGED_GUEST
2014-02-18 10:14 ` Paul Bolle
2014-02-18 13:07 ` [PATCH v2] " Paul Bolle
@ 2014-02-18 13:07 ` Paul Bolle
2014-02-18 13:13 ` Paul Bolle
` (3 more replies)
2014-02-24 18:39 ` [PATCH] " Konrad Rzeszutek Wilk
2014-02-24 18:39 ` [Xen-devel] " Konrad Rzeszutek Wilk
3 siblings, 4 replies; 19+ messages in thread
From: Paul Bolle @ 2014-02-18 13:07 UTC (permalink / raw)
To: Konrad Rzeszutek Wilk, Boris Ostrovsky, David Vrabel,
Thomas Gleixner, Ingo Molnar, H. Peter Anvin
Cc: Michael Opdenacker, Richard Weinberger, x86, xen-devel,
linux-kernel
This patch removes the Kconfig symbol XEN_PRIVILEGED_GUEST which is
used nowhere in the tree.
We do know grub2 has a script that greps kernel configuration files for
its macro. It shouldn't do that. As Linus summarized:
This is a grub bug. It really is that simple. Treat it as one.
Besides, grub2's grepping for that macro is actually superfluous. See,
that script currently contains this test (simplified):
grep -x CONFIG_XEN_DOM0=y $config || grep -x CONFIG_XEN_PRIVILEGED_GUEST=y $config
But since XEN_DOM0 and XEN_PRIVILEGED_GUEST are by definition equal,
removing XEN_PRIVILEGED_GUEST cannot influence this test.
So there's no reason to not remove this symbol, like we do with all
unused Kconfig symbols.
[pebolle@tiscali.nl: rewrote commit explanation.]
Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
---
v2: added a few lines to the commit explanation to show grub2's test for
this symbol is superfluous anyway. Still only git "grep tested".
arch/x86/xen/Kconfig | 5 -----
1 file changed, 5 deletions(-)
diff --git a/arch/x86/xen/Kconfig b/arch/x86/xen/Kconfig
index 01b9026..512219d 100644
--- a/arch/x86/xen/Kconfig
+++ b/arch/x86/xen/Kconfig
@@ -19,11 +19,6 @@ config XEN_DOM0
depends on XEN && PCI_XEN && SWIOTLB_XEN
depends on X86_LOCAL_APIC && X86_IO_APIC && ACPI && PCI
-# Dummy symbol since people have come to rely on the PRIVILEGED_GUEST
-# name in tools.
-config XEN_PRIVILEGED_GUEST
- def_bool XEN_DOM0
-
config XEN_PVHVM
def_bool y
depends on XEN && PCI && X86_LOCAL_APIC
--
1.8.5.3
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH v2] xen: remove XEN_PRIVILEGED_GUEST
2014-02-18 13:07 ` Paul Bolle
@ 2014-02-18 13:13 ` Paul Bolle
2014-02-18 13:13 ` Paul Bolle
` (2 subsequent siblings)
3 siblings, 0 replies; 19+ messages in thread
From: Paul Bolle @ 2014-02-18 13:13 UTC (permalink / raw)
To: Konrad Rzeszutek Wilk, Boris Ostrovsky, David Vrabel,
Thomas Gleixner, Ingo Molnar, H. Peter Anvin
Cc: Michael Opdenacker, x86, xen-devel, linux-kernel,
Richard Weinberger
Here I should have added:
From: Michael Opdenacker <michael.opdenacker@free-electrons.com>
in order for Michael to show up as author of the patch.
On Tue, 2014-02-18 at 14:07 +0100, Paul Bolle wrote:
> This patch removes the Kconfig symbol XEN_PRIVILEGED_GUEST which is
> used nowhere in the tree.
>
> We do know grub2 has a script that greps kernel configuration files for
> its macro. It shouldn't do that. As Linus summarized:
> This is a grub bug. It really is that simple. Treat it as one.
>
> Besides, grub2's grepping for that macro is actually superfluous. See,
> that script currently contains this test (simplified):
> grep -x CONFIG_XEN_DOM0=y $config || grep -x CONFIG_XEN_PRIVILEGED_GUEST=y $config
>
> But since XEN_DOM0 and XEN_PRIVILEGED_GUEST are by definition equal,
> removing XEN_PRIVILEGED_GUEST cannot influence this test.
>
> So there's no reason to not remove this symbol, like we do with all
> unused Kconfig symbols.
>
> [pebolle@tiscali.nl: rewrote commit explanation.]
> Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
> Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Paul Bolle
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: [PATCH v2] xen: remove XEN_PRIVILEGED_GUEST
2014-02-18 13:07 ` Paul Bolle
2014-02-18 13:13 ` Paul Bolle
@ 2014-02-18 13:13 ` Paul Bolle
2014-02-24 18:51 ` David Vrabel
2014-02-24 18:51 ` [Xen-devel] " David Vrabel
3 siblings, 0 replies; 19+ messages in thread
From: Paul Bolle @ 2014-02-18 13:13 UTC (permalink / raw)
To: Konrad Rzeszutek Wilk, Boris Ostrovsky, David Vrabel,
Thomas Gleixner, Ingo Molnar, H. Peter Anvin
Cc: Michael Opdenacker, Richard Weinberger, x86, xen-devel,
linux-kernel
Here I should have added:
From: Michael Opdenacker <michael.opdenacker@free-electrons.com>
in order for Michael to show up as author of the patch.
On Tue, 2014-02-18 at 14:07 +0100, Paul Bolle wrote:
> This patch removes the Kconfig symbol XEN_PRIVILEGED_GUEST which is
> used nowhere in the tree.
>
> We do know grub2 has a script that greps kernel configuration files for
> its macro. It shouldn't do that. As Linus summarized:
> This is a grub bug. It really is that simple. Treat it as one.
>
> Besides, grub2's grepping for that macro is actually superfluous. See,
> that script currently contains this test (simplified):
> grep -x CONFIG_XEN_DOM0=y $config || grep -x CONFIG_XEN_PRIVILEGED_GUEST=y $config
>
> But since XEN_DOM0 and XEN_PRIVILEGED_GUEST are by definition equal,
> removing XEN_PRIVILEGED_GUEST cannot influence this test.
>
> So there's no reason to not remove this symbol, like we do with all
> unused Kconfig symbols.
>
> [pebolle@tiscali.nl: rewrote commit explanation.]
> Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
> Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Paul Bolle
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2] xen: remove XEN_PRIVILEGED_GUEST
2014-02-18 13:07 ` Paul Bolle
2014-02-18 13:13 ` Paul Bolle
2014-02-18 13:13 ` Paul Bolle
@ 2014-02-24 18:51 ` David Vrabel
2014-02-24 18:51 ` [Xen-devel] " David Vrabel
3 siblings, 0 replies; 19+ messages in thread
From: David Vrabel @ 2014-02-24 18:51 UTC (permalink / raw)
To: Paul Bolle
Cc: Michael Opdenacker, x86, linux-kernel, Richard Weinberger,
Ingo Molnar, David Vrabel, H. Peter Anvin, xen-devel,
Boris Ostrovsky, Thomas Gleixner
On 18/02/14 13:07, Paul Bolle wrote:
> This patch removes the Kconfig symbol XEN_PRIVILEGED_GUEST which is
> used nowhere in the tree.
>
> We do know grub2 has a script that greps kernel configuration files for
> its macro. It shouldn't do that. As Linus summarized:
> This is a grub bug. It really is that simple. Treat it as one.
>
> Besides, grub2's grepping for that macro is actually superfluous. See,
> that script currently contains this test (simplified):
> grep -x CONFIG_XEN_DOM0=y $config || grep -x CONFIG_XEN_PRIVILEGED_GUEST=y $config
>
> But since XEN_DOM0 and XEN_PRIVILEGED_GUEST are by definition equal,
> removing XEN_PRIVILEGED_GUEST cannot influence this test.
>
> So there's no reason to not remove this symbol, like we do with all
> unused Kconfig symbols.
Reviewed-by: David Vrabel <david.vrabel@citrix.com>
David
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [Xen-devel] [PATCH v2] xen: remove XEN_PRIVILEGED_GUEST
2014-02-18 13:07 ` Paul Bolle
` (2 preceding siblings ...)
2014-02-24 18:51 ` David Vrabel
@ 2014-02-24 18:51 ` David Vrabel
3 siblings, 0 replies; 19+ messages in thread
From: David Vrabel @ 2014-02-24 18:51 UTC (permalink / raw)
To: Paul Bolle
Cc: Konrad Rzeszutek Wilk, Boris Ostrovsky, David Vrabel,
Thomas Gleixner, Ingo Molnar, H. Peter Anvin, Michael Opdenacker,
x86, xen-devel, linux-kernel, Richard Weinberger
On 18/02/14 13:07, Paul Bolle wrote:
> This patch removes the Kconfig symbol XEN_PRIVILEGED_GUEST which is
> used nowhere in the tree.
>
> We do know grub2 has a script that greps kernel configuration files for
> its macro. It shouldn't do that. As Linus summarized:
> This is a grub bug. It really is that simple. Treat it as one.
>
> Besides, grub2's grepping for that macro is actually superfluous. See,
> that script currently contains this test (simplified):
> grep -x CONFIG_XEN_DOM0=y $config || grep -x CONFIG_XEN_PRIVILEGED_GUEST=y $config
>
> But since XEN_DOM0 and XEN_PRIVILEGED_GUEST are by definition equal,
> removing XEN_PRIVILEGED_GUEST cannot influence this test.
>
> So there's no reason to not remove this symbol, like we do with all
> unused Kconfig symbols.
Reviewed-by: David Vrabel <david.vrabel@citrix.com>
David
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] xen: remove XEN_PRIVILEGED_GUEST
2014-02-18 10:14 ` Paul Bolle
2014-02-18 13:07 ` [PATCH v2] " Paul Bolle
2014-02-18 13:07 ` Paul Bolle
@ 2014-02-24 18:39 ` Konrad Rzeszutek Wilk
2014-02-24 18:39 ` [Xen-devel] " Konrad Rzeszutek Wilk
3 siblings, 0 replies; 19+ messages in thread
From: Konrad Rzeszutek Wilk @ 2014-02-24 18:39 UTC (permalink / raw)
To: Paul Bolle, phcoder
Cc: Michael Opdenacker, Richard Weinberger, x86, linux-kernel,
Ingo Molnar, David Vrabel, H. Peter Anvin, xen-devel,
Thomas Gleixner, Boris Ostrovsky
On Tue, Feb 18, 2014 at 11:14:27AM +0100, Paul Bolle wrote:
> On Mon, 2014-02-17 at 09:43 -0500, Konrad Rzeszutek Wilk wrote:
> > On Mon, Feb 17, 2014 at 02:03:17PM +0100, Paul Bolle wrote:
> > > On Mon, 2014-02-17 at 07:23 -0500, Konrad Rzeszutek Wilk wrote:
> > > > On Feb 16, 2014 3:07 PM, Paul Bolle <pebolle@tiscali.nl> wrote:
> > > > Please look in the grub git tree. They have fixed their code to not do
> > > > this anymore. This should be reflected in the patch description.
> > >
> > > Thanks, I didn't know that. That turned out to be grub commit
> > > ec824e0f2a399ce2ab3a2e3353d372a236595059 ("Implement grub_file tool and
> > > use it to implement generating of config"), see
> > > http://git.savannah.gnu.org/cgit/grub.git/commit/util/grub.d/20_linux_xen.in?id=ec824e0f2a399ce2ab3a2e3353d372a236595059
>
> And that commit was reverted a week later in grub commit
> faf4a65e1e1ce1d822d251c1e4b53d96ec7faec5 ("Revert grub-file usage in
> grub-mkconfig."), see
> http://git.savannah.gnu.org/cgit/grub.git/commit/util/grub.d/20_linux_xen.in?id=faf4a65e1e1ce1d822d251c1e4b53d96ec7faec5 .
>
> That commit has no explanation (other than its one line summary). So
> we're left guessing why this was done. Luckily, it doesn't matter here,
> because the test for CONFIG_XEN_PRIVILEGED_GUEST is superfluous.
How about we ask Vladimir?
Vladimir - could you shed some light on it? Thanks!
>
> Anyhow, I hope to submit a second version of this patch later this day.
>
>
> Paul Bolle
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: [Xen-devel] [PATCH] xen: remove XEN_PRIVILEGED_GUEST
2014-02-18 10:14 ` Paul Bolle
` (2 preceding siblings ...)
2014-02-24 18:39 ` [PATCH] " Konrad Rzeszutek Wilk
@ 2014-02-24 18:39 ` Konrad Rzeszutek Wilk
2014-02-24 19:38 ` Vladimir 'φ-coder/phcoder' Serbinenko
2014-02-24 19:38 ` [Xen-devel] " Vladimir 'φ-coder/phcoder' Serbinenko
3 siblings, 2 replies; 19+ messages in thread
From: Konrad Rzeszutek Wilk @ 2014-02-24 18:39 UTC (permalink / raw)
To: Paul Bolle, phcoder
Cc: Konrad Rzeszutek Wilk, H. Peter Anvin, Richard Weinberger, x86,
linux-kernel, Ingo Molnar, David Vrabel, Michael Opdenacker,
xen-devel, Thomas Gleixner, Boris Ostrovsky
On Tue, Feb 18, 2014 at 11:14:27AM +0100, Paul Bolle wrote:
> On Mon, 2014-02-17 at 09:43 -0500, Konrad Rzeszutek Wilk wrote:
> > On Mon, Feb 17, 2014 at 02:03:17PM +0100, Paul Bolle wrote:
> > > On Mon, 2014-02-17 at 07:23 -0500, Konrad Rzeszutek Wilk wrote:
> > > > On Feb 16, 2014 3:07 PM, Paul Bolle <pebolle@tiscali.nl> wrote:
> > > > Please look in the grub git tree. They have fixed their code to not do
> > > > this anymore. This should be reflected in the patch description.
> > >
> > > Thanks, I didn't know that. That turned out to be grub commit
> > > ec824e0f2a399ce2ab3a2e3353d372a236595059 ("Implement grub_file tool and
> > > use it to implement generating of config"), see
> > > http://git.savannah.gnu.org/cgit/grub.git/commit/util/grub.d/20_linux_xen.in?id=ec824e0f2a399ce2ab3a2e3353d372a236595059
>
> And that commit was reverted a week later in grub commit
> faf4a65e1e1ce1d822d251c1e4b53d96ec7faec5 ("Revert grub-file usage in
> grub-mkconfig."), see
> http://git.savannah.gnu.org/cgit/grub.git/commit/util/grub.d/20_linux_xen.in?id=faf4a65e1e1ce1d822d251c1e4b53d96ec7faec5 .
>
> That commit has no explanation (other than its one line summary). So
> we're left guessing why this was done. Luckily, it doesn't matter here,
> because the test for CONFIG_XEN_PRIVILEGED_GUEST is superfluous.
How about we ask Vladimir?
Vladimir - could you shed some light on it? Thanks!
>
> Anyhow, I hope to submit a second version of this patch later this day.
>
>
> Paul Bolle
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: [PATCH] xen: remove XEN_PRIVILEGED_GUEST
2014-02-24 18:39 ` [Xen-devel] " Konrad Rzeszutek Wilk
@ 2014-02-24 19:38 ` Vladimir 'φ-coder/phcoder' Serbinenko
2014-02-24 19:38 ` [Xen-devel] " Vladimir 'φ-coder/phcoder' Serbinenko
1 sibling, 0 replies; 19+ messages in thread
From: Vladimir 'φ-coder/phcoder' Serbinenko @ 2014-02-24 19:38 UTC (permalink / raw)
To: Konrad Rzeszutek Wilk, Paul Bolle
Cc: Michael Opdenacker, Richard Weinberger, x86, linux-kernel,
Ingo Molnar, David Vrabel, H. Peter Anvin, xen-devel,
Thomas Gleixner, Boris Ostrovsky
[-- Attachment #1.1: Type: text/plain, Size: 1932 bytes --]
On 24.02.2014 19:39, Konrad Rzeszutek Wilk wrote:
> On Tue, Feb 18, 2014 at 11:14:27AM +0100, Paul Bolle wrote:
>> On Mon, 2014-02-17 at 09:43 -0500, Konrad Rzeszutek Wilk wrote:
>>> On Mon, Feb 17, 2014 at 02:03:17PM +0100, Paul Bolle wrote:
>>>> On Mon, 2014-02-17 at 07:23 -0500, Konrad Rzeszutek Wilk wrote:
>>>>> On Feb 16, 2014 3:07 PM, Paul Bolle <pebolle@tiscali.nl> wrote:
>>>>> Please look in the grub git tree. They have fixed their code to not do
>>>>> this anymore. This should be reflected in the patch description.
>>>>
>>>> Thanks, I didn't know that. That turned out to be grub commit
>>>> ec824e0f2a399ce2ab3a2e3353d372a236595059 ("Implement grub_file tool and
>>>> use it to implement generating of config"), see
>>>> http://git.savannah.gnu.org/cgit/grub.git/commit/util/grub.d/20_linux_xen.in?id=ec824e0f2a399ce2ab3a2e3353d372a236595059
>>
>> And that commit was reverted a week later in grub commit
>> faf4a65e1e1ce1d822d251c1e4b53d96ec7faec5 ("Revert grub-file usage in
>> grub-mkconfig."), see
>> http://git.savannah.gnu.org/cgit/grub.git/commit/util/grub.d/20_linux_xen.in?id=faf4a65e1e1ce1d822d251c1e4b53d96ec7faec5 .
>>
>> That commit has no explanation (other than its one line summary). So
>> we're left guessing why this was done. Luckily, it doesn't matter here,
>> because the test for CONFIG_XEN_PRIVILEGED_GUEST is superfluous.
>
> How about we ask Vladimir?
>
> Vladimir - could you shed some light on it? Thanks!
>
CONFIG_XEN_PRIVILEGED_GUEST is not present on Linux even though it
should be. The test was removed to accomodate this.
The usage of grub-file was removed because it wasn't release-ready.
>>
>> Anyhow, I hope to submit a second version of this patch later this day.
>>
>>
>> Paul Bolle
>>
>>
>> _______________________________________________
>> Xen-devel mailing list
>> Xen-devel@lists.xen.org
>> http://lists.xen.org/xen-devel
>
[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 274 bytes --]
[-- Attachment #2: Type: text/plain, Size: 126 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: [Xen-devel] [PATCH] xen: remove XEN_PRIVILEGED_GUEST
2014-02-24 18:39 ` [Xen-devel] " Konrad Rzeszutek Wilk
2014-02-24 19:38 ` Vladimir 'φ-coder/phcoder' Serbinenko
@ 2014-02-24 19:38 ` Vladimir 'φ-coder/phcoder' Serbinenko
2014-02-28 20:54 ` Paul Bolle
2014-02-28 20:54 ` [Xen-devel] " Paul Bolle
1 sibling, 2 replies; 19+ messages in thread
From: Vladimir 'φ-coder/phcoder' Serbinenko @ 2014-02-24 19:38 UTC (permalink / raw)
To: Konrad Rzeszutek Wilk, Paul Bolle
Cc: Konrad Rzeszutek Wilk, H. Peter Anvin, Richard Weinberger, x86,
linux-kernel, Ingo Molnar, David Vrabel, Michael Opdenacker,
xen-devel, Thomas Gleixner, Boris Ostrovsky
[-- Attachment #1: Type: text/plain, Size: 1932 bytes --]
On 24.02.2014 19:39, Konrad Rzeszutek Wilk wrote:
> On Tue, Feb 18, 2014 at 11:14:27AM +0100, Paul Bolle wrote:
>> On Mon, 2014-02-17 at 09:43 -0500, Konrad Rzeszutek Wilk wrote:
>>> On Mon, Feb 17, 2014 at 02:03:17PM +0100, Paul Bolle wrote:
>>>> On Mon, 2014-02-17 at 07:23 -0500, Konrad Rzeszutek Wilk wrote:
>>>>> On Feb 16, 2014 3:07 PM, Paul Bolle <pebolle@tiscali.nl> wrote:
>>>>> Please look in the grub git tree. They have fixed their code to not do
>>>>> this anymore. This should be reflected in the patch description.
>>>>
>>>> Thanks, I didn't know that. That turned out to be grub commit
>>>> ec824e0f2a399ce2ab3a2e3353d372a236595059 ("Implement grub_file tool and
>>>> use it to implement generating of config"), see
>>>> http://git.savannah.gnu.org/cgit/grub.git/commit/util/grub.d/20_linux_xen.in?id=ec824e0f2a399ce2ab3a2e3353d372a236595059
>>
>> And that commit was reverted a week later in grub commit
>> faf4a65e1e1ce1d822d251c1e4b53d96ec7faec5 ("Revert grub-file usage in
>> grub-mkconfig."), see
>> http://git.savannah.gnu.org/cgit/grub.git/commit/util/grub.d/20_linux_xen.in?id=faf4a65e1e1ce1d822d251c1e4b53d96ec7faec5 .
>>
>> That commit has no explanation (other than its one line summary). So
>> we're left guessing why this was done. Luckily, it doesn't matter here,
>> because the test for CONFIG_XEN_PRIVILEGED_GUEST is superfluous.
>
> How about we ask Vladimir?
>
> Vladimir - could you shed some light on it? Thanks!
>
CONFIG_XEN_PRIVILEGED_GUEST is not present on Linux even though it
should be. The test was removed to accomodate this.
The usage of grub-file was removed because it wasn't release-ready.
>>
>> Anyhow, I hope to submit a second version of this patch later this day.
>>
>>
>> Paul Bolle
>>
>>
>> _______________________________________________
>> Xen-devel mailing list
>> Xen-devel@lists.xen.org
>> http://lists.xen.org/xen-devel
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 274 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: [PATCH] xen: remove XEN_PRIVILEGED_GUEST
2014-02-24 19:38 ` [Xen-devel] " Vladimir 'φ-coder/phcoder' Serbinenko
@ 2014-02-28 20:54 ` Paul Bolle
2014-02-28 20:54 ` [Xen-devel] " Paul Bolle
1 sibling, 0 replies; 19+ messages in thread
From: Paul Bolle @ 2014-02-28 20:54 UTC (permalink / raw)
To: Vladimir 'φ-coder/phcoder' Serbinenko
Cc: Michael Opdenacker, xen-devel, Richard Weinberger, x86,
linux-kernel, Ingo Molnar, David Vrabel, H. Peter Anvin,
Konrad Rzeszutek Wilk, Thomas Gleixner, Boris Ostrovsky
On Mon, 2014-02-24 at 20:38 +0100, Vladimir 'φ-coder/phcoder' Serbinenko
wrote:
> On 24.02.2014 19:39, Konrad Rzeszutek Wilk wrote:
> > On Tue, Feb 18, 2014 at 11:14:27AM +0100, Paul Bolle wrote:
> >> And that commit was reverted a week later in grub commit
> >> faf4a65e1e1ce1d822d251c1e4b53d96ec7faec5 ("Revert grub-file usage in
> >> grub-mkconfig."), see
> >> http://git.savannah.gnu.org/cgit/grub.git/commit/util/grub.d/20_linux_xen.in?id=faf4a65e1e1ce1d822d251c1e4b53d96ec7faec5 .
> >>
> >> That commit has no explanation (other than its one line summary). So
> >> we're left guessing why this was done. Luckily, it doesn't matter here,
> >> because the test for CONFIG_XEN_PRIVILEGED_GUEST is superfluous.
> >
> > How about we ask Vladimir?
> >
> > Vladimir - could you shed some light on it? Thanks!
> >
> CONFIG_XEN_PRIVILEGED_GUEST is not present on Linux even though it
> should be. The test was removed to accomodate this.
It's not clear to me what this means, sorry.
> The usage of grub-file was removed because it wasn't release-ready.
I see.
Thanks.
Paul Bolle
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: [Xen-devel] [PATCH] xen: remove XEN_PRIVILEGED_GUEST
2014-02-24 19:38 ` [Xen-devel] " Vladimir 'φ-coder/phcoder' Serbinenko
2014-02-28 20:54 ` Paul Bolle
@ 2014-02-28 20:54 ` Paul Bolle
1 sibling, 0 replies; 19+ messages in thread
From: Paul Bolle @ 2014-02-28 20:54 UTC (permalink / raw)
To: Vladimir 'φ-coder/phcoder' Serbinenko
Cc: Konrad Rzeszutek Wilk, Konrad Rzeszutek Wilk, H. Peter Anvin,
Richard Weinberger, x86, linux-kernel, Ingo Molnar, David Vrabel,
Michael Opdenacker, xen-devel, Thomas Gleixner, Boris Ostrovsky
On Mon, 2014-02-24 at 20:38 +0100, Vladimir 'φ-coder/phcoder' Serbinenko
wrote:
> On 24.02.2014 19:39, Konrad Rzeszutek Wilk wrote:
> > On Tue, Feb 18, 2014 at 11:14:27AM +0100, Paul Bolle wrote:
> >> And that commit was reverted a week later in grub commit
> >> faf4a65e1e1ce1d822d251c1e4b53d96ec7faec5 ("Revert grub-file usage in
> >> grub-mkconfig."), see
> >> http://git.savannah.gnu.org/cgit/grub.git/commit/util/grub.d/20_linux_xen.in?id=faf4a65e1e1ce1d822d251c1e4b53d96ec7faec5 .
> >>
> >> That commit has no explanation (other than its one line summary). So
> >> we're left guessing why this was done. Luckily, it doesn't matter here,
> >> because the test for CONFIG_XEN_PRIVILEGED_GUEST is superfluous.
> >
> > How about we ask Vladimir?
> >
> > Vladimir - could you shed some light on it? Thanks!
> >
> CONFIG_XEN_PRIVILEGED_GUEST is not present on Linux even though it
> should be. The test was removed to accomodate this.
It's not clear to me what this means, sorry.
> The usage of grub-file was removed because it wasn't release-ready.
I see.
Thanks.
Paul Bolle
^ permalink raw reply [flat|nested] 19+ messages in thread