|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging-4.11] bitmap: fix bitmap_fill with zero-sized bitmap
commit ba75e0d44b58c53696c09eaea7fc53c923c3ccc5
Author: Marek Marczykowski-Górecki <marmarek@xxxxxxxxxxxxxxxxxxxxxx>
AuthorDate: Thu Jun 6 14:08:10 2019 +0200
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Thu Jun 6 14:08:10 2019 +0200
bitmap: fix bitmap_fill with zero-sized bitmap
When bitmap_fill(..., 0) is called, do not try to write anything. Before
this patch, it tried to write almost LONG_MAX, surely overwriting
something.
Signed-off-by: Marek Marczykowski-Górecki <marmarek@xxxxxxxxxxxxxxxxxxxxxx>
Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx>
master commit: 93df28be2d4f620caf18109222d046355ac56327
master date: 2019-05-13 10:12:00 +0200
---
xen/include/xen/bitmap.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/xen/include/xen/bitmap.h b/xen/include/xen/bitmap.h
index e2a368691e..ab3b113fd1 100644
--- a/xen/include/xen/bitmap.h
+++ b/xen/include/xen/bitmap.h
@@ -132,6 +132,8 @@ static inline void bitmap_fill(unsigned long *dst, int
nbits)
size_t nlongs = BITS_TO_LONGS(nbits);
switch (nlongs) {
+ case 0:
+ break;
default:
memset(dst, -1, (nlongs - 1) * sizeof(unsigned long));
/* fall through */
--
generated by git-patchbot for /home/xen/git/xen.git#staging-4.11
_______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |