All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH for 4.5 0/2] Trivial patches for PVH doc and libxl Makefile
@ 2014-09-25 14:23 Wei Liu
  2014-09-25 14:23 ` [PATCH for 4.5 1/2] docs: fix one typo in pvh.markdown Wei Liu
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Wei Liu @ 2014-09-25 14:23 UTC (permalink / raw)
  To: xen-devel; +Cc: Wei Liu

Wei Liu (2):
  docs: fix one typo in pvh.markdown
  libxl: add in missing dependency for xen-init-dom0 in Makefile

 docs/misc/pvh.markdown |    2 +-
 tools/libxl/Makefile   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
1.7.10.4

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

* [PATCH for 4.5 1/2] docs: fix one typo in pvh.markdown
  2014-09-25 14:23 [PATCH for 4.5 0/2] Trivial patches for PVH doc and libxl Makefile Wei Liu
@ 2014-09-25 14:23 ` Wei Liu
  2014-09-25 14:30   ` Roger Pau Monné
  2014-09-25 14:23 ` [PATCH for 4.5 2/2] libxl: add in missing dependency for xen-init-dom0 in Makefile Wei Liu
  2014-09-25 14:56 ` [PATCH for 4.5 0/2] Trivial patches for PVH doc and libxl Makefile Konrad Rzeszutek Wilk
  2 siblings, 1 reply; 7+ messages in thread
From: Wei Liu @ 2014-09-25 14:23 UTC (permalink / raw)
  To: xen-devel; +Cc: Wei Liu, Ian Campbell, Roger Pau Monne

were -> where

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Cc: Ian Campbell <ian.campbell@citrix.com>
Cc: Roger Pau Monne <roger.pau@citrix.com>
---
 docs/misc/pvh.markdown |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/misc/pvh.markdown b/docs/misc/pvh.markdown
index 2735b17..52d8e74 100644
--- a/docs/misc/pvh.markdown
+++ b/docs/misc/pvh.markdown
@@ -64,7 +64,7 @@ distinction for a 64bit PVH is that it is launched at privilege level 0 as
 opposed to a 64bit PV guest which is launched at privilege level 3.
 
 Also, the `rsi` (`esi` on 32bits) register is going to contain the virtual
-memory address were Xen has placed the `start_info` structure. The `rsp` (`esp`
+memory address where Xen has placed the `start_info` structure. The `rsp` (`esp`
 on 32bits) will point to the top of an initial single page stack, that can be
 used by the guest kernel. The `start_info` structure contains all the info the
 guest needs in order to initialize. More information about the contents can be
-- 
1.7.10.4

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

* [PATCH for 4.5 2/2] libxl: add in missing dependency for xen-init-dom0 in Makefile
  2014-09-25 14:23 [PATCH for 4.5 0/2] Trivial patches for PVH doc and libxl Makefile Wei Liu
  2014-09-25 14:23 ` [PATCH for 4.5 1/2] docs: fix one typo in pvh.markdown Wei Liu
@ 2014-09-25 14:23 ` Wei Liu
  2014-09-29 13:36   ` Ian Campbell
  2014-09-25 14:56 ` [PATCH for 4.5 0/2] Trivial patches for PVH doc and libxl Makefile Konrad Rzeszutek Wilk
  2 siblings, 1 reply; 7+ messages in thread
From: Wei Liu @ 2014-09-25 14:23 UTC (permalink / raw)
  To: xen-devel; +Cc: Wei Liu, Ian Campbell

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Cc: Ian Campbell <ian.campbell@citrix.com>
---
 tools/libxl/Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile
index 9d67d0b..56fab75 100644
--- a/tools/libxl/Makefile
+++ b/tools/libxl/Makefile
@@ -139,7 +139,7 @@ all: $(CLIENTS) $(TEST_PROGS) \
 	$(AUTOSRCS) $(AUTOINCS)
 
 $(LIBXL_OBJS) $(LIBXLU_OBJS) $(XL_OBJS) $(SAVE_HELPER_OBJS) \
-		$(LIBXL_TEST_OBJS) $(TEST_PROG_OBJS): \
+		$(LIBXL_TEST_OBJS) $(TEST_PROG_OBJS) $(XEN_INIT_DOM0_OBJS): \
 	$(AUTOINCS) libxl.api-ok
 
 %.c %.h:: %.y
-- 
1.7.10.4

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

* Re: [PATCH for 4.5 1/2] docs: fix one typo in pvh.markdown
  2014-09-25 14:23 ` [PATCH for 4.5 1/2] docs: fix one typo in pvh.markdown Wei Liu
@ 2014-09-25 14:30   ` Roger Pau Monné
  2014-09-29 12:25     ` Ian Campbell
  0 siblings, 1 reply; 7+ messages in thread
From: Roger Pau Monné @ 2014-09-25 14:30 UTC (permalink / raw)
  To: Wei Liu, xen-devel; +Cc: Ian Campbell

El 25/09/14 a les 16.23, Wei Liu ha escrit:
> were -> where
> 
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>
> Cc: Ian Campbell <ian.campbell@citrix.com>
> Cc: Roger Pau Monne <roger.pau@citrix.com>

Thanks for catching this one.

Acked-by: Roger Pau Monné <roger.pau@citrix.com>

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

* Re: [PATCH for 4.5 0/2] Trivial patches for PVH doc and libxl Makefile
  2014-09-25 14:23 [PATCH for 4.5 0/2] Trivial patches for PVH doc and libxl Makefile Wei Liu
  2014-09-25 14:23 ` [PATCH for 4.5 1/2] docs: fix one typo in pvh.markdown Wei Liu
  2014-09-25 14:23 ` [PATCH for 4.5 2/2] libxl: add in missing dependency for xen-init-dom0 in Makefile Wei Liu
@ 2014-09-25 14:56 ` Konrad Rzeszutek Wilk
  2 siblings, 0 replies; 7+ messages in thread
From: Konrad Rzeszutek Wilk @ 2014-09-25 14:56 UTC (permalink / raw)
  To: Wei Liu; +Cc: xen-devel

On Thu, Sep 25, 2014 at 03:23:09PM +0100, Wei Liu wrote:
> Wei Liu (2):
>   docs: fix one typo in pvh.markdown
>   libxl: add in missing dependency for xen-init-dom0 in Makefile

Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> 
>  docs/misc/pvh.markdown |    2 +-
>  tools/libxl/Makefile   |    2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> -- 
> 1.7.10.4
> 
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel

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

* Re: [PATCH for 4.5 1/2] docs: fix one typo in pvh.markdown
  2014-09-25 14:30   ` Roger Pau Monné
@ 2014-09-29 12:25     ` Ian Campbell
  0 siblings, 0 replies; 7+ messages in thread
From: Ian Campbell @ 2014-09-29 12:25 UTC (permalink / raw)
  To: Roger Pau Monné; +Cc: Wei Liu, xen-devel

On Thu, 2014-09-25 at 16:30 +0200, Roger Pau Monné wrote:
> El 25/09/14 a les 16.23, Wei Liu ha escrit:
> > were -> where
> > 
> > Signed-off-by: Wei Liu <wei.liu2@citrix.com>
> > Cc: Ian Campbell <ian.campbell@citrix.com>
> > Cc: Roger Pau Monne <roger.pau@citrix.com>
> 
> Thanks for catching this one.
> 
> Acked-by: Roger Pau Monné <roger.pau@citrix.com>

Applied.



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

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

* Re: [PATCH for 4.5 2/2] libxl: add in missing dependency for xen-init-dom0 in Makefile
  2014-09-25 14:23 ` [PATCH for 4.5 2/2] libxl: add in missing dependency for xen-init-dom0 in Makefile Wei Liu
@ 2014-09-29 13:36   ` Ian Campbell
  0 siblings, 0 replies; 7+ messages in thread
From: Ian Campbell @ 2014-09-29 13:36 UTC (permalink / raw)
  To: Wei Liu; +Cc: xen-devel

On Thu, 2014-09-25 at 15:23 +0100, Wei Liu wrote:
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>
> Cc: Ian Campbell <ian.campbell@citrix.com>

Acked + applied.

> ---
>  tools/libxl/Makefile |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile
> index 9d67d0b..56fab75 100644
> --- a/tools/libxl/Makefile
> +++ b/tools/libxl/Makefile
> @@ -139,7 +139,7 @@ all: $(CLIENTS) $(TEST_PROGS) \
>  	$(AUTOSRCS) $(AUTOINCS)
>  
>  $(LIBXL_OBJS) $(LIBXLU_OBJS) $(XL_OBJS) $(SAVE_HELPER_OBJS) \
> -		$(LIBXL_TEST_OBJS) $(TEST_PROG_OBJS): \
> +		$(LIBXL_TEST_OBJS) $(TEST_PROG_OBJS) $(XEN_INIT_DOM0_OBJS): \
>  	$(AUTOINCS) libxl.api-ok
>  
>  %.c %.h:: %.y

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

end of thread, other threads:[~2014-09-29 13:36 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-25 14:23 [PATCH for 4.5 0/2] Trivial patches for PVH doc and libxl Makefile Wei Liu
2014-09-25 14:23 ` [PATCH for 4.5 1/2] docs: fix one typo in pvh.markdown Wei Liu
2014-09-25 14:30   ` Roger Pau Monné
2014-09-29 12:25     ` Ian Campbell
2014-09-25 14:23 ` [PATCH for 4.5 2/2] libxl: add in missing dependency for xen-init-dom0 in Makefile Wei Liu
2014-09-29 13:36   ` Ian Campbell
2014-09-25 14:56 ` [PATCH for 4.5 0/2] Trivial patches for PVH doc and libxl Makefile Konrad Rzeszutek Wilk

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.