All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] add xen hypfs to meta files
@ 2020-05-26  9:50 Juergen Gross
  2020-05-26  9:50 ` [PATCH 1/2] CHANGELOG: add hypervisor file system support Juergen Gross
  2020-05-26  9:50 ` [PATCH 2/2] SUPPORT.md: add hypervisor file system Juergen Gross
  0 siblings, 2 replies; 5+ messages in thread
From: Juergen Gross @ 2020-05-26  9:50 UTC (permalink / raw)
  To: xen-devel
  Cc: Juergen Gross, Stefano Stabellini, Julien Grall, Wei Liu,
	Paul Durrant, Community Manager, Andrew Cooper, Ian Jackson,
	George Dunlap, Jan Beulich

Add entries for Xen hypfs in CHANGELOG.md and SUPPORT.md.

To be committed only after the Xen hypfs series has gone in.

Juergen Gross (2):
  CHANGELOG: add hypervisor file system support
  SUPPORT.md: add hypervisor file system

 CHANGELOG.md |  1 +
 SUPPORT.md   | 14 ++++++++++++++
 2 files changed, 15 insertions(+)

-- 
2.26.2



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

* [PATCH 1/2] CHANGELOG: add hypervisor file system support
  2020-05-26  9:50 [PATCH 0/2] add xen hypfs to meta files Juergen Gross
@ 2020-05-26  9:50 ` Juergen Gross
  2020-05-26 10:03   ` Paul Durrant
  2020-05-26  9:50 ` [PATCH 2/2] SUPPORT.md: add hypervisor file system Juergen Gross
  1 sibling, 1 reply; 5+ messages in thread
From: Juergen Gross @ 2020-05-26  9:50 UTC (permalink / raw)
  To: xen-devel; +Cc: Juergen Gross, Community Manager, Paul Durrant

Signed-off-by: Juergen Gross <jgross@suse.com>
---
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index ccb5055c87..75b7582447 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    fixes.
  - Hypervisor framework to ease porting Xen to run on hypervisors.
  - Initial support to run on Hyper-V.
+ - Initial hypervisor file system (hypfs) support.
 
 ## [4.13.0](https://xenbits.xen.org/gitweb/?p=xen.git;a=shortlog;h=RELEASE-4.13.0) - 2019-12-17
 
-- 
2.26.2



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

* [PATCH 2/2] SUPPORT.md: add hypervisor file system
  2020-05-26  9:50 [PATCH 0/2] add xen hypfs to meta files Juergen Gross
  2020-05-26  9:50 ` [PATCH 1/2] CHANGELOG: add hypervisor file system support Juergen Gross
@ 2020-05-26  9:50 ` Juergen Gross
  2020-05-29  7:47   ` Jan Beulich
  1 sibling, 1 reply; 5+ messages in thread
From: Juergen Gross @ 2020-05-26  9:50 UTC (permalink / raw)
  To: xen-devel
  Cc: Juergen Gross, Stefano Stabellini, Julien Grall, Wei Liu,
	Andrew Cooper, Ian Jackson, George Dunlap, Jan Beulich

Signed-off-by: Juergen Gross <jgross@suse.com>
---
 SUPPORT.md | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/SUPPORT.md b/SUPPORT.md
index e3a366fd56..a1f7eb6434 100644
--- a/SUPPORT.md
+++ b/SUPPORT.md
@@ -109,6 +109,20 @@ ARM only has one guest type at the moment
 
     Status: Supported
 
+## Hypervisor file system
+
+### Build info
+
+    Status: Supported
+
+### Hypervisor config
+
+    Status: Supported
+
+### Runtime parameters
+
+    Status: Supported
+
 ## Toolstack
 
 ### xl
-- 
2.26.2



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

* RE: [PATCH 1/2] CHANGELOG: add hypervisor file system support
  2020-05-26  9:50 ` [PATCH 1/2] CHANGELOG: add hypervisor file system support Juergen Gross
@ 2020-05-26 10:03   ` Paul Durrant
  0 siblings, 0 replies; 5+ messages in thread
From: Paul Durrant @ 2020-05-26 10:03 UTC (permalink / raw)
  To: 'Juergen Gross', xen-devel; +Cc: 'Community Manager'

> -----Original Message-----
> From: Juergen Gross <jgross@suse.com>
> Sent: 26 May 2020 10:51
> To: xen-devel@lists.xenproject.org
> Cc: Juergen Gross <jgross@suse.com>; Paul Durrant <paul@xen.org>; Community Manager
> <community.manager@xenproject.org>
> Subject: [PATCH 1/2] CHANGELOG: add hypervisor file system support
> 
> Signed-off-by: Juergen Gross <jgross@suse.com>

Reviewed-by: Paul Durrant <paul@xen.org>

> ---
>  CHANGELOG.md | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/CHANGELOG.md b/CHANGELOG.md
> index ccb5055c87..75b7582447 100644
> --- a/CHANGELOG.md
> +++ b/CHANGELOG.md
> @@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
>     fixes.
>   - Hypervisor framework to ease porting Xen to run on hypervisors.
>   - Initial support to run on Hyper-V.
> + - Initial hypervisor file system (hypfs) support.
> 
>  ## [4.13.0](https://xenbits.xen.org/gitweb/?p=xen.git;a=shortlog;h=RELEASE-4.13.0) - 2019-12-17
> 
> --
> 2.26.2




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

* Re: [PATCH 2/2] SUPPORT.md: add hypervisor file system
  2020-05-26  9:50 ` [PATCH 2/2] SUPPORT.md: add hypervisor file system Juergen Gross
@ 2020-05-29  7:47   ` Jan Beulich
  0 siblings, 0 replies; 5+ messages in thread
From: Jan Beulich @ 2020-05-29  7:47 UTC (permalink / raw)
  To: Juergen Gross
  Cc: Stefano Stabellini, Julien Grall, Wei Liu, Andrew Cooper,
	Ian Jackson, George Dunlap, xen-devel

On 26.05.2020 11:50, Juergen Gross wrote:
> Signed-off-by: Juergen Gross <jgross@suse.com>

Acked-by: Jan Beulich <jbeulich@suse.com>


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

end of thread, other threads:[~2020-05-29  7:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-26  9:50 [PATCH 0/2] add xen hypfs to meta files Juergen Gross
2020-05-26  9:50 ` [PATCH 1/2] CHANGELOG: add hypervisor file system support Juergen Gross
2020-05-26 10:03   ` Paul Durrant
2020-05-26  9:50 ` [PATCH 2/2] SUPPORT.md: add hypervisor file system Juergen Gross
2020-05-29  7:47   ` Jan Beulich

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.