summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJan Beulich <JBeulich@suse.com>2016-08-15 09:05:45 -0600
committerMatt Fleming <matt@codeblueprint.co.uk>2016-09-05 11:16:56 +0100
commitd4c4fed08f31f3746000c46cb1b20bed2959547a (patch)
tree51f46dc044388ff3f00a15c5054b6848c56ec816 /include
parentc6935931c1894ff857616ff8549b61236a19148f (diff)
downloadlinux-0-day-d4c4fed08f31f3746000c46cb1b20bed2959547a.tar.gz
linux-0-day-d4c4fed08f31f3746000c46cb1b20bed2959547a.tar.xz
efi: Make for_each_efi_memory_desc_in_map() cope with running on Xen
While commit 55f1ea15216 ("efi: Fix for_each_efi_memory_desc_in_map() for empty memmaps") made an attempt to deal with empty memory maps, it didn't address the case where the map field never gets set, as is apparently the case when running under Xen. Reported-by: <lists@ssl-mail.com> Tested-by: <lists@ssl-mail.com> Cc: Vitaly Kuznetsov <vkuznets@redhat.com> Cc: Jiri Slaby <jslaby@suse.cz> Cc: Mark Rutland <mark.rutland@arm.com> Cc: <stable@vger.kernel.org> # v4.7+ Signed-off-by: Jan Beulich <jbeulich@suse.com> [ Guard the loop with a NULL check instead of pointer underflow ] Signed-off-by: Matt Fleming <matt@codeblueprint.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/linux/efi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/efi.h b/include/linux/efi.h
index 7f5a582253853..23cd3ced8c1af 100644
--- a/include/linux/efi.h
+++ b/include/linux/efi.h
@@ -946,7 +946,7 @@ extern int efi_memattr_apply_permissions(struct mm_struct *mm,
/* Iterate through an efi_memory_map */
#define for_each_efi_memory_desc_in_map(m, md) \
for ((md) = (m)->map; \
- ((void *)(md) + (m)->desc_size) <= (m)->map_end; \
+ (md) && ((void *)(md) + (m)->desc_size) <= (m)->map_end; \
(md) = (void *)(md) + (m)->desc_size)
/**