All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] firmware/shim: fix Xen tree setup
@ 2018-02-07 14:57 Jan Beulich
  2018-02-07 15:07 ` [PATCH 1/4] firmware/shim: correctly handle errors during " Jan Beulich
                   ` (3 more replies)
  0 siblings, 4 replies; 15+ messages in thread
From: Jan Beulich @ 2018-02-07 14:57 UTC (permalink / raw)
  To: xen-devel; +Cc: Ian Jackson, Wei Liu

This is a split of the RFC with the mkdir fix added, but with the symlink
handling left off for now (I'll need some more time to properly deal with
that without using -xtype, ideally treating absolute and relative ones
differently).

1: correctly handle errors during Xen tree setup
2: better filtering of dependency files during Xen tree setup
3: better filtering of intermediate files during Xen tree setup
4: avoid mkdir error during Xen tree setup

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


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* [PATCH 1/4] firmware/shim: correctly handle errors during Xen tree setup
  2018-02-07 14:57 [PATCH 0/4] firmware/shim: fix Xen tree setup Jan Beulich
@ 2018-02-07 15:07 ` Jan Beulich
  2018-02-07 16:06   ` Roger Pau Monné
  2018-02-08 11:21   ` Wei Liu
  2018-02-07 15:07 ` [PATCH 2/4] firmware/shim: better filtering of dependency files " Jan Beulich
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 15+ messages in thread
From: Jan Beulich @ 2018-02-07 15:07 UTC (permalink / raw)
  To: xen-devel; +Cc: Ian Jackson, Wei Liu

"set -e" on a separate Makefile line is meaningless. Glue together all
the lines that this is supposed to cover.

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

--- a/tools/firmware/xen-dir/Makefile
+++ b/tools/firmware/xen-dir/Makefile
@@ -16,18 +16,18 @@ DEP_FILES=$(foreach i, $(LINK_FILES), $(
 
 linkfarm.stamp: $(DEP_DIRS) $(DEP_FILES) FORCE
 	mkdir -p $(D)
-	set -e
 	rm -f linkfarm.stamp.tmp
+	set -e; \
 	$(foreach d, $(LINK_DIRS), \
 		 (mkdir -p $(D)/$(d); \
 		  cd $(D)/$(d); \
 		  find $(XEN_ROOT)/$(d)/ -type d |\
-			sed 's,^$(XEN_ROOT)/$(d)/,,g' | xargs mkdir -p);)
+			sed 's,^$(XEN_ROOT)/$(d)/,,g' | xargs mkdir -p);) \
 	$(foreach d, $(LINK_DIRS), \
 		(cd $(XEN_ROOT); \
 		 find $(d) ! -type l -type f \
 		 $(addprefix ! -path , '*.[oda1]' '*.d[12]')) \
-		 >> linkfarm.stamp.tmp ; )
+		 >> linkfarm.stamp.tmp ; ) \
 	$(foreach f, $(LINK_FILES), \
 		echo $(f) >> linkfarm.stamp.tmp ;)
 	cmp -s linkfarm.stamp.tmp linkfarm.stamp && \




_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* [PATCH 2/4] firmware/shim: better filtering of dependency files during Xen tree setup
  2018-02-07 14:57 [PATCH 0/4] firmware/shim: fix Xen tree setup Jan Beulich
  2018-02-07 15:07 ` [PATCH 1/4] firmware/shim: correctly handle errors during " Jan Beulich
@ 2018-02-07 15:07 ` Jan Beulich
  2018-02-07 16:05   ` Roger Pau Monné
  2018-02-07 15:08 ` [PATCH 3/4] firmware/shim: better filtering of intermediate " Jan Beulich
  2018-02-07 15:08 ` [PATCH 4/4] firmware/shim: avoid mkdir error " Jan Beulich
  3 siblings, 1 reply; 15+ messages in thread
From: Jan Beulich @ 2018-02-07 15:07 UTC (permalink / raw)
  To: xen-devel; +Cc: Ian Jackson, Wei Liu

I have no idea what *.d1 is supposed to refer to - we only have .*.d
and .*.d2 files (note also the leading dot).

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

--- a/tools/firmware/xen-dir/Makefile
+++ b/tools/firmware/xen-dir/Makefile
@@ -26,7 +26,7 @@ linkfarm.stamp: $(DEP_DIRS) $(DEP_FILES)
 	$(foreach d, $(LINK_DIRS), \
 		(cd $(XEN_ROOT); \
 		 find $(d) ! -type l -type f \
-		 $(addprefix ! -path , '*.[oda1]' '*.d[12]')) \
+		 $(addprefix ! -path , '*.[oa1]' '.*.d' '.*.d2')) \
 		 >> linkfarm.stamp.tmp ; ) \
 	$(foreach f, $(LINK_FILES), \
 		echo $(f) >> linkfarm.stamp.tmp ;)




_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* [PATCH 3/4] firmware/shim: better filtering of intermediate files during Xen tree setup
  2018-02-07 14:57 [PATCH 0/4] firmware/shim: fix Xen tree setup Jan Beulich
  2018-02-07 15:07 ` [PATCH 1/4] firmware/shim: correctly handle errors during " Jan Beulich
  2018-02-07 15:07 ` [PATCH 2/4] firmware/shim: better filtering of dependency files " Jan Beulich
@ 2018-02-07 15:08 ` Jan Beulich
  2018-02-07 16:12   ` Roger Pau Monné
  2018-02-08 11:41   ` Wei Liu
  2018-02-07 15:08 ` [PATCH 4/4] firmware/shim: avoid mkdir error " Jan Beulich
  3 siblings, 2 replies; 15+ messages in thread
From: Jan Beulich @ 2018-02-07 15:08 UTC (permalink / raw)
  To: xen-devel; +Cc: Ian Jackson, Wei Liu

I have no idea what *.1 is meant to cover. Instead also exclude
preprocessed and non-source assembly files.

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

--- unstable.orig/tools/firmware/xen-dir/Makefile	2018-02-07 15:30:24.038600788 +0100
+++ unstable/tools/firmware/xen-dir/Makefile	2018-02-07 15:35:18.197717910 +0100
@@ -26,7 +26,7 @@ linkfarm.stamp: $(DEP_DIRS) $(DEP_FILES)
 	$(foreach d, $(LINK_DIRS), \
 		(cd $(XEN_ROOT); \
 		 find $(d) ! -type l -type f \
-		 $(addprefix ! -path , '*.[oa1]' '.*.d' '.*.d2')) \
+		 $(addprefix ! -path , '*.[isoa]' '.*.d' '.*.d2')) \
 		 >> linkfarm.stamp.tmp ; ) \
 	$(foreach f, $(LINK_FILES), \
 		echo $(f) >> linkfarm.stamp.tmp ;)




_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* [PATCH 4/4] firmware/shim: avoid mkdir error during Xen tree setup
  2018-02-07 14:57 [PATCH 0/4] firmware/shim: fix Xen tree setup Jan Beulich
                   ` (2 preceding siblings ...)
  2018-02-07 15:08 ` [PATCH 3/4] firmware/shim: better filtering of intermediate " Jan Beulich
@ 2018-02-07 15:08 ` Jan Beulich
  2018-02-07 16:14   ` Roger Pau Monné
  2018-02-08 11:41   ` Wei Liu
  3 siblings, 2 replies; 15+ messages in thread
From: Jan Beulich @ 2018-02-07 15:08 UTC (permalink / raw)
  To: xen-devel; +Cc: Ian Jackson, Wei Liu

"mkdir -p" reports a missing operand, as config/ has no subdirs. Oddly
enough this doesn't cause the whole command (and hence the build to
fail), despite the "set -e" now covering the entire set of commands -
perhaps a quirk of the relatively old bash I've seen this with (a few
simple experiments suggest that commands inside () producing a non-
success status would exit the inner shell, but not the outer one).

Add a dummy . argument to the invocation.

Suggested-by: Wei Liu <wei.liu2@citrix.com>
Signed-off-by: Jan Beulich <jbeulich@suse.com>

--- unstable.orig/tools/firmware/xen-dir/Makefile	2018-02-07 15:35:18.197717910 +0100
+++ unstable/tools/firmware/xen-dir/Makefile	2018-02-07 15:35:51.027213823 +0100
@@ -22,7 +22,7 @@ linkfarm.stamp: $(DEP_DIRS) $(DEP_FILES)
 		 (mkdir -p $(D)/$(d); \
 		  cd $(D)/$(d); \
 		  find $(XEN_ROOT)/$(d)/ -type d |\
-			sed 's,^$(XEN_ROOT)/$(d)/,,g' | xargs mkdir -p);) \
+			sed 's,^$(XEN_ROOT)/$(d)/,,g' | xargs mkdir -p .);) \
 	$(foreach d, $(LINK_DIRS), \
 		(cd $(XEN_ROOT); \
 		 find $(d) ! -type l -type f \




_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 2/4] firmware/shim: better filtering of dependency files during Xen tree setup
  2018-02-07 15:07 ` [PATCH 2/4] firmware/shim: better filtering of dependency files " Jan Beulich
@ 2018-02-07 16:05   ` Roger Pau Monné
  2018-02-07 16:27     ` Jan Beulich
  0 siblings, 1 reply; 15+ messages in thread
From: Roger Pau Monné @ 2018-02-07 16:05 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel, Ian Jackson, Wei Liu

On Wed, Feb 07, 2018 at 08:07:40AM -0700, Jan Beulich wrote:
> I have no idea what *.d1 is supposed to refer to - we only have .*.d
> and .*.d2 files (note also the leading dot).
> 
> Signed-off-by: Jan Beulich <jbeulich@suse.com>
> 
> --- a/tools/firmware/xen-dir/Makefile
> +++ b/tools/firmware/xen-dir/Makefile
> @@ -26,7 +26,7 @@ linkfarm.stamp: $(DEP_DIRS) $(DEP_FILES)
>  	$(foreach d, $(LINK_DIRS), \
>  		(cd $(XEN_ROOT); \
>  		 find $(d) ! -type l -type f \
> -		 $(addprefix ! -path , '*.[oda1]' '*.d[12]')) \
> +		 $(addprefix ! -path , '*.[oa1]' '.*.d' '.*.d2')) \

Don't you want -name here instead of -path?

AFAICT using '.*.d' is not going to work with path, because that's the
full path, not the name of the file. This used to work before because
the patterns started with '*'.

Also I cannot find any .a or .1 files, but maybe that's just because
of my build system (I don't build EFI).

Thanks, Roger.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 1/4] firmware/shim: correctly handle errors during Xen tree setup
  2018-02-07 15:07 ` [PATCH 1/4] firmware/shim: correctly handle errors during " Jan Beulich
@ 2018-02-07 16:06   ` Roger Pau Monné
  2018-02-08 11:21   ` Wei Liu
  1 sibling, 0 replies; 15+ messages in thread
From: Roger Pau Monné @ 2018-02-07 16:06 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel, Ian Jackson, Wei Liu

On Wed, Feb 07, 2018 at 08:07:01AM -0700, Jan Beulich wrote:
> "set -e" on a separate Makefile line is meaningless. Glue together all
> the lines that this is supposed to cover.
> 
> Signed-off-by: Jan Beulich <jbeulich@suse.com>

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

Thanks, Roger.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 3/4] firmware/shim: better filtering of intermediate files during Xen tree setup
  2018-02-07 15:08 ` [PATCH 3/4] firmware/shim: better filtering of intermediate " Jan Beulich
@ 2018-02-07 16:12   ` Roger Pau Monné
  2018-02-07 16:29     ` Jan Beulich
  2018-02-08 11:41   ` Wei Liu
  1 sibling, 1 reply; 15+ messages in thread
From: Roger Pau Monné @ 2018-02-07 16:12 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel, Ian Jackson, Wei Liu

On Wed, Feb 07, 2018 at 08:08:15AM -0700, Jan Beulich wrote:
> I have no idea what *.1 is meant to cover. Instead also exclude
> preprocessed and non-source assembly files.

Oh, I guess that answers my question in 2/4 then. I don't seem to have
neither .i or .a files, but certainly .s should be excluded.

Roger.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 4/4] firmware/shim: avoid mkdir error during Xen tree setup
  2018-02-07 15:08 ` [PATCH 4/4] firmware/shim: avoid mkdir error " Jan Beulich
@ 2018-02-07 16:14   ` Roger Pau Monné
  2018-02-08 11:41   ` Wei Liu
  1 sibling, 0 replies; 15+ messages in thread
From: Roger Pau Monné @ 2018-02-07 16:14 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel, Ian Jackson, Wei Liu

On Wed, Feb 07, 2018 at 08:08:47AM -0700, Jan Beulich wrote:
> "mkdir -p" reports a missing operand, as config/ has no subdirs. Oddly
> enough this doesn't cause the whole command (and hence the build to
> fail), despite the "set -e" now covering the entire set of commands -
> perhaps a quirk of the relatively old bash I've seen this with (a few
> simple experiments suggest that commands inside () producing a non-
> success status would exit the inner shell, but not the outer one).
> 
> Add a dummy . argument to the invocation.
> 
> Suggested-by: Wei Liu <wei.liu2@citrix.com>
> Signed-off-by: Jan Beulich <jbeulich@suse.com>

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

Thanks, Roger.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 2/4] firmware/shim: better filtering of dependency files during Xen tree setup
  2018-02-07 16:05   ` Roger Pau Monné
@ 2018-02-07 16:27     ` Jan Beulich
  2018-02-08 11:40       ` Wei Liu
  0 siblings, 1 reply; 15+ messages in thread
From: Jan Beulich @ 2018-02-07 16:27 UTC (permalink / raw)
  To: Roger Pau Monné; +Cc: Ian Jackson, Wei Liu, xen-devel

>>> On 07.02.18 at 17:05, <roger.pau@citrix.com> wrote:
> On Wed, Feb 07, 2018 at 08:07:40AM -0700, Jan Beulich wrote:
>> I have no idea what *.d1 is supposed to refer to - we only have .*.d
>> and .*.d2 files (note also the leading dot).
>> 
>> Signed-off-by: Jan Beulich <jbeulich@suse.com>
>> 
>> --- a/tools/firmware/xen-dir/Makefile
>> +++ b/tools/firmware/xen-dir/Makefile
>> @@ -26,7 +26,7 @@ linkfarm.stamp: $(DEP_DIRS) $(DEP_FILES)
>>  	$(foreach d, $(LINK_DIRS), \
>>  		(cd $(XEN_ROOT); \
>>  		 find $(d) ! -type l -type f \
>> -		 $(addprefix ! -path , '*.[oda1]' '*.d[12]')) \
>> +		 $(addprefix ! -path , '*.[oa1]' '.*.d' '.*.d2')) \
> 
> Don't you want -name here instead of -path?
> 
> AFAICT using '.*.d' is not going to work with path, because that's the
> full path, not the name of the file. This used to work before because
> the patterns started with '*'.

Oh, good point. Once again I have no idea why -path was used in
the first place.

> Also I cannot find any .a or .1 files, but maybe that's just because
> of my build system (I don't build EFI).

The .1 part goes away in patch 3. I suppose .a is just to cover
archives even if we don't use any right now.

Jan


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 3/4] firmware/shim: better filtering of intermediate files during Xen tree setup
  2018-02-07 16:12   ` Roger Pau Monné
@ 2018-02-07 16:29     ` Jan Beulich
  0 siblings, 0 replies; 15+ messages in thread
From: Jan Beulich @ 2018-02-07 16:29 UTC (permalink / raw)
  To: Roger Pau Monné; +Cc: Ian Jackson, Wei Liu, xen-devel

>>> On 07.02.18 at 17:12, <roger.pau@citrix.com> wrote:
> On Wed, Feb 07, 2018 at 08:08:15AM -0700, Jan Beulich wrote:
>> I have no idea what *.1 is meant to cover. Instead also exclude
>> preprocessed and non-source assembly files.
> 
> Oh, I guess that answers my question in 2/4 then. I don't seem to have
> neither .i or .a files, but certainly .s should be excluded.

.s and .i can both be generated for the case someone has a need to
look at them (I need to from time to time). As we have rules for both,
we should also exclude what those rules can generate.

Jan


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 1/4] firmware/shim: correctly handle errors during Xen tree setup
  2018-02-07 15:07 ` [PATCH 1/4] firmware/shim: correctly handle errors during " Jan Beulich
  2018-02-07 16:06   ` Roger Pau Monné
@ 2018-02-08 11:21   ` Wei Liu
  1 sibling, 0 replies; 15+ messages in thread
From: Wei Liu @ 2018-02-08 11:21 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel, Wei Liu, Ian Jackson

On Wed, Feb 07, 2018 at 08:07:01AM -0700, Jan Beulich wrote:
> "set -e" on a separate Makefile line is meaningless. Glue together all
> the lines that this is supposed to cover.
> 
> Signed-off-by: Jan Beulich <jbeulich@suse.com>

Reviewed-by: Wei Liu <wei.liu2@citrix.com>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 2/4] firmware/shim: better filtering of dependency files during Xen tree setup
  2018-02-07 16:27     ` Jan Beulich
@ 2018-02-08 11:40       ` Wei Liu
  0 siblings, 0 replies; 15+ messages in thread
From: Wei Liu @ 2018-02-08 11:40 UTC (permalink / raw)
  To: Jan Beulich; +Cc: Ian Jackson, Wei Liu, xen-devel, Roger Pau Monné

On Wed, Feb 07, 2018 at 09:27:49AM -0700, Jan Beulich wrote:
> >>> On 07.02.18 at 17:05, <roger.pau@citrix.com> wrote:
> > On Wed, Feb 07, 2018 at 08:07:40AM -0700, Jan Beulich wrote:
> >> I have no idea what *.d1 is supposed to refer to - we only have .*.d
> >> and .*.d2 files (note also the leading dot).
> >> 
> >> Signed-off-by: Jan Beulich <jbeulich@suse.com>
> >> 
> >> --- a/tools/firmware/xen-dir/Makefile
> >> +++ b/tools/firmware/xen-dir/Makefile
> >> @@ -26,7 +26,7 @@ linkfarm.stamp: $(DEP_DIRS) $(DEP_FILES)
> >>  	$(foreach d, $(LINK_DIRS), \
> >>  		(cd $(XEN_ROOT); \
> >>  		 find $(d) ! -type l -type f \
> >> -		 $(addprefix ! -path , '*.[oda1]' '*.d[12]')) \
> >> +		 $(addprefix ! -path , '*.[oa1]' '.*.d' '.*.d2')) \
> > 
> > Don't you want -name here instead of -path?
> > 
> > AFAICT using '.*.d' is not going to work with path, because that's the
> > full path, not the name of the file. This used to work before because
> > the patterns started with '*'.
> 
> Oh, good point. Once again I have no idea why -path was used in
> the first place.
> 

'-name' is indeed better here.

Wei.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 3/4] firmware/shim: better filtering of intermediate files during Xen tree setup
  2018-02-07 15:08 ` [PATCH 3/4] firmware/shim: better filtering of intermediate " Jan Beulich
  2018-02-07 16:12   ` Roger Pau Monné
@ 2018-02-08 11:41   ` Wei Liu
  1 sibling, 0 replies; 15+ messages in thread
From: Wei Liu @ 2018-02-08 11:41 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel, Wei Liu, Ian Jackson

On Wed, Feb 07, 2018 at 08:08:15AM -0700, Jan Beulich wrote:
> I have no idea what *.1 is meant to cover. Instead also exclude
> preprocessed and non-source assembly files.
> 
> Signed-off-by: Jan Beulich <jbeulich@suse.com>

Reviewed-by: Wei Liu <wei.liu2@citrix.com>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 4/4] firmware/shim: avoid mkdir error during Xen tree setup
  2018-02-07 15:08 ` [PATCH 4/4] firmware/shim: avoid mkdir error " Jan Beulich
  2018-02-07 16:14   ` Roger Pau Monné
@ 2018-02-08 11:41   ` Wei Liu
  1 sibling, 0 replies; 15+ messages in thread
From: Wei Liu @ 2018-02-08 11:41 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel, Ian Jackson, Wei Liu

On Wed, Feb 07, 2018 at 08:08:47AM -0700, Jan Beulich wrote:
> "mkdir -p" reports a missing operand, as config/ has no subdirs. Oddly
> enough this doesn't cause the whole command (and hence the build to
> fail), despite the "set -e" now covering the entire set of commands -
> perhaps a quirk of the relatively old bash I've seen this with (a few
> simple experiments suggest that commands inside () producing a non-
> success status would exit the inner shell, but not the outer one).
> 
> Add a dummy . argument to the invocation.
> 
> Suggested-by: Wei Liu <wei.liu2@citrix.com>
> Signed-off-by: Jan Beulich <jbeulich@suse.com>

Reviewed-by: Wei Liu <wei.liu2@citrix.com>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

end of thread, other threads:[~2018-02-08 11:58 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-07 14:57 [PATCH 0/4] firmware/shim: fix Xen tree setup Jan Beulich
2018-02-07 15:07 ` [PATCH 1/4] firmware/shim: correctly handle errors during " Jan Beulich
2018-02-07 16:06   ` Roger Pau Monné
2018-02-08 11:21   ` Wei Liu
2018-02-07 15:07 ` [PATCH 2/4] firmware/shim: better filtering of dependency files " Jan Beulich
2018-02-07 16:05   ` Roger Pau Monné
2018-02-07 16:27     ` Jan Beulich
2018-02-08 11:40       ` Wei Liu
2018-02-07 15:08 ` [PATCH 3/4] firmware/shim: better filtering of intermediate " Jan Beulich
2018-02-07 16:12   ` Roger Pau Monné
2018-02-07 16:29     ` Jan Beulich
2018-02-08 11:41   ` Wei Liu
2018-02-07 15:08 ` [PATCH 4/4] firmware/shim: avoid mkdir error " Jan Beulich
2018-02-07 16:14   ` Roger Pau Monné
2018-02-08 11:41   ` Wei Liu

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.