summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2021-07-25 23:19:57 +0200
committerConrad Kostecki <conikost@gentoo.org>2021-07-25 23:32:43 +0200
commit36376bd99491780f5b5c0c04e69edc10d7fa3fd0 (patch)
tree2a0c071a4385cf5a83e0800f28b3bbb65f95823e /app-emulation/virtualbox
parentdev-perl/PDL-Graphics-Gnuplot: remove unused patch(es) (diff)
downloadgentoo-36376bd99491780f5b5c0c04e69edc10d7fa3fd0.tar.gz
gentoo-36376bd99491780f5b5c0c04e69edc10d7fa3fd0.tar.bz2
gentoo-36376bd99491780f5b5c0c04e69edc10d7fa3fd0.zip
app-emulation/virtualbox: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/21766 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-emulation/virtualbox')
-rw-r--r--app-emulation/virtualbox/files/virtualbox-6.1.20-lsilogicsas_crash_fix.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/app-emulation/virtualbox/files/virtualbox-6.1.20-lsilogicsas_crash_fix.patch b/app-emulation/virtualbox/files/virtualbox-6.1.20-lsilogicsas_crash_fix.patch
deleted file mode 100644
index 7f1e4b179838..000000000000
--- a/app-emulation/virtualbox/files/virtualbox-6.1.20-lsilogicsas_crash_fix.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-Index: /trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
-===================================================================
---- trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp (revision 88530)
-+++ trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp (revision 88643)
-@@ -3678,8 +3678,6 @@
- LogFlowFunc(("pThis=%#p\n", pThis));
-
-- /* Clear everything first. */
- AssertPtrReturnVoid(pThisCC->pConfigurationPages);
- PMptConfigurationPagesSupported pPages = pThisCC->pConfigurationPages;
-- memset(pPages, 0, sizeof(MptConfigurationPagesSupported));
-
- /* Manufacturing Page 0. */
-Index: /trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.h
-===================================================================
---- trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.h (revision 82968)
-+++ trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.h (revision 88643)
-@@ -3327,13 +3327,17 @@
-
- #define MPT_CONFIG_PAGE_HEADER_INIT_MANUFACTURING(pg, type, nr, flags) \
-+ RT_ZERO(*pg); \
- MPT_CONFIG_PAGE_HEADER_INIT(pg, type, nr, flags | MPT_CONFIGURATION_PAGE_TYPE_MANUFACTURING)
-
- #define MPT_CONFIG_PAGE_HEADER_INIT_IO_UNIT(pg, type, nr, flags) \
-+ RT_ZERO(*pg); \
- MPT_CONFIG_PAGE_HEADER_INIT(pg, type, nr, flags | MPT_CONFIGURATION_PAGE_TYPE_IO_UNIT)
-
- #define MPT_CONFIG_PAGE_HEADER_INIT_IOC(pg, type, nr, flags) \
-+ RT_ZERO(*pg); \
- MPT_CONFIG_PAGE_HEADER_INIT(pg, type, nr, flags | MPT_CONFIGURATION_PAGE_TYPE_IOC)
-
- #define MPT_CONFIG_PAGE_HEADER_INIT_BIOS(pg, type, nr, flags) \
-+ RT_ZERO(*pg); \
- MPT_CONFIG_PAGE_HEADER_INIT(pg, type, nr, flags | MPT_CONFIGURATION_PAGE_TYPE_BIOS)
-
-@@ -3342,4 +3346,5 @@
- */
- #define MPT_CONFIG_EXTENDED_PAGE_HEADER_INIT(pg, cb, nr, flags, exttype) \
-+ RT_BZERO(pg, cb); \
- (pg)->u.fields.ExtHeader.u8PageType = (flags) | MPT_CONFIGURATION_PAGE_TYPE_EXTENDED; \
- (pg)->u.fields.ExtHeader.u8PageNumber = (nr); \