All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] content: reserve device ID 44 for ISM device
@ 2022-11-23 11:21 Xuan Zhuo
  2022-11-23 11:21 ` Xuan Zhuo
  0 siblings, 1 reply; 4+ messages in thread
From: Xuan Zhuo @ 2022-11-23 11:21 UTC (permalink / raw)
  To: virtio-dev
  Cc: hans, herongguang, zmlcc, dust.li, tonylu, zhenzao, helinguo,
	gerry, xuanzhuo, mst, cohuck, jasowang

The virtio-ism device provides the ability to share memory between
different guests on a host. A guest's memory got from ism device can be
shared with multiple peers at the same time. This shared relationship
can be dynamically created and released.

The shared memory obtained from the device is divided into multiple ism
regions for share. ISM device provides a mechanism to notify other ism
region referrers of content update events.

This patch is to reserve the next available device ID for virtio-ism.

Signed-off-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
---
 content.tex | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/content.tex b/content.tex
index 91ba76c..7302365 100644
--- a/content.tex
+++ b/content.tex
@@ -2992,6 +2992,8 @@ \chapter{Device Types}\label{sec:Device Types}
 \hline
 43         &   Camera device \\
 \hline
+44         &   ISM device \\
+\hline
 \end{tabular}
 
 Some of the devices above are unspecified by this document,
-- 
2.32.0.3.g01195cf9f


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

* Re: [PATCH] content: reserve device ID 44 for ISM device
  2022-11-23 11:21 [PATCH] content: reserve device ID 44 for ISM device Xuan Zhuo
@ 2022-11-23 11:21 ` Xuan Zhuo
  2022-12-15  9:27   ` [virtio-dev] " Michael S. Tsirkin
  0 siblings, 1 reply; 4+ messages in thread
From: Xuan Zhuo @ 2022-11-23 11:21 UTC (permalink / raw)
  To: Xuan Zhuo
  Cc: hans, herongguang, zmlcc, dust.li, tonylu, zhenzao, helinguo,
	gerry, mst, cohuck, jasowang, virtio-dev

On Wed, 23 Nov 2022 19:21:09 +0800, Xuan Zhuo <xuanzhuo@linux.alibaba.com> wrote:
> The virtio-ism device provides the ability to share memory between
> different guests on a host. A guest's memory got from ism device can be
> shared with multiple peers at the same time. This shared relationship
> can be dynamically created and released.
>
> The shared memory obtained from the device is divided into multiple ism
> regions for share. ISM device provides a mechanism to notify other ism
> region referrers of content update events.

The last spec version:

	https://lists.oasis-open.org/archives/virtio-dev/202211/msg00001.html

Thanks.


>
> This patch is to reserve the next available device ID for virtio-ism.
>
> Signed-off-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
> ---
>  content.tex | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/content.tex b/content.tex
> index 91ba76c..7302365 100644
> --- a/content.tex
> +++ b/content.tex
> @@ -2992,6 +2992,8 @@ \chapter{Device Types}\label{sec:Device Types}
>  \hline
>  43         &   Camera device \\
>  \hline
> +44         &   ISM device \\
> +\hline
>  \end{tabular}
>
>  Some of the devices above are unspecified by this document,
> --
> 2.32.0.3.g01195cf9f
>


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

* Re: [virtio-dev] Re: [PATCH] content: reserve device ID 44 for ISM device
  2022-11-23 11:21 ` Xuan Zhuo
@ 2022-12-15  9:27   ` Michael S. Tsirkin
  2022-12-15  9:28     ` Michael S. Tsirkin
  0 siblings, 1 reply; 4+ messages in thread
From: Michael S. Tsirkin @ 2022-12-15  9:27 UTC (permalink / raw)
  To: Xuan Zhuo
  Cc: hans, herongguang, zmlcc, dust.li, tonylu, zhenzao, helinguo,
	gerry, cohuck, jasowang, virtio-dev

On Wed, Nov 23, 2022 at 07:21:37PM +0800, Xuan Zhuo wrote:
> On Wed, 23 Nov 2022 19:21:09 +0800, Xuan Zhuo <xuanzhuo@linux.alibaba.com> wrote:
> > The virtio-ism device provides the ability to share memory between
> > different guests on a host. A guest's memory got from ism device can be
> > shared with multiple peers at the same time. This shared relationship
> > can be dynamically created and released.
> >
> > The shared memory obtained from the device is divided into multiple ism
> > regions for share. ISM device provides a mechanism to notify other ism
> > region referrers of content update events.
> 
> The last spec version:
> 
> 	https://lists.oasis-open.org/archives/virtio-dev/202211/msg00001.html
> 
> Thanks.

Hello!
Please note specification comments (including proposals) must be
posted to virtio-comments, virtio-dev is for implementation
discussions. Please post to the correct list.

Thanks!


> 
> >
> > This patch is to reserve the next available device ID for virtio-ism.
> >
> > Signed-off-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
> > ---
> >  content.tex | 2 ++
> >  1 file changed, 2 insertions(+)
> >
> > diff --git a/content.tex b/content.tex
> > index 91ba76c..7302365 100644
> > --- a/content.tex
> > +++ b/content.tex
> > @@ -2992,6 +2992,8 @@ \chapter{Device Types}\label{sec:Device Types}
> >  \hline
> >  43         &   Camera device \\
> >  \hline
> > +44         &   ISM device \\
> > +\hline
> >  \end{tabular}
> >
> >  Some of the devices above are unspecified by this document,
> > --
> > 2.32.0.3.g01195cf9f
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
> For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org


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

* Re: [virtio-dev] Re: [PATCH] content: reserve device ID 44 for ISM device
  2022-12-15  9:27   ` [virtio-dev] " Michael S. Tsirkin
@ 2022-12-15  9:28     ` Michael S. Tsirkin
  0 siblings, 0 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2022-12-15  9:28 UTC (permalink / raw)
  To: Xuan Zhuo
  Cc: hans, herongguang, zmlcc, dust.li, tonylu, zhenzao, helinguo,
	gerry, cohuck, jasowang, virtio-dev

On Thu, Dec 15, 2022 at 04:28:00AM -0500, Michael S. Tsirkin wrote:
> On Wed, Nov 23, 2022 at 07:21:37PM +0800, Xuan Zhuo wrote:
> > On Wed, 23 Nov 2022 19:21:09 +0800, Xuan Zhuo <xuanzhuo@linux.alibaba.com> wrote:
> > > The virtio-ism device provides the ability to share memory between
> > > different guests on a host. A guest's memory got from ism device can be
> > > shared with multiple peers at the same time. This shared relationship
> > > can be dynamically created and released.
> > >
> > > The shared memory obtained from the device is divided into multiple ism
> > > regions for share. ISM device provides a mechanism to notify other ism
> > > region referrers of content update events.
> > 
> > The last spec version:
> > 
> > 	https://lists.oasis-open.org/archives/virtio-dev/202211/msg00001.html
> > 
> > Thanks.
> 
> Hello!
> Please note specification comments (including proposals) must be
> posted to virtio-comments, virtio-dev is for implementation
> discussions. Please post to the correct list.
> 
> Thanks!

To add to that, you can CC virtio-dev if you like, and it's
even encouraged.

> 
> > 
> > >
> > > This patch is to reserve the next available device ID for virtio-ism.
> > >
> > > Signed-off-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
> > > ---
> > >  content.tex | 2 ++
> > >  1 file changed, 2 insertions(+)
> > >
> > > diff --git a/content.tex b/content.tex
> > > index 91ba76c..7302365 100644
> > > --- a/content.tex
> > > +++ b/content.tex
> > > @@ -2992,6 +2992,8 @@ \chapter{Device Types}\label{sec:Device Types}
> > >  \hline
> > >  43         &   Camera device \\
> > >  \hline
> > > +44         &   ISM device \\
> > > +\hline
> > >  \end{tabular}
> > >
> > >  Some of the devices above are unspecified by this document,
> > > --
> > > 2.32.0.3.g01195cf9f
> > >
> > 
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
> > For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org


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

end of thread, other threads:[~2022-12-15  9:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-23 11:21 [PATCH] content: reserve device ID 44 for ISM device Xuan Zhuo
2022-11-23 11:21 ` Xuan Zhuo
2022-12-15  9:27   ` [virtio-dev] " Michael S. Tsirkin
2022-12-15  9:28     ` Michael S. Tsirkin

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.