1
0
2024-08-06 07:48:16 +00:00
committed by Git OBS Bridge
parent 51982fe882
commit dee521531e
2 changed files with 15 additions and 21 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Tue Aug 6 07:39:14 UTC 2024 - Fridrich Strba <fstrba@suse.com>
- Update to OpenJDK 8u422 build 05 with OpenJ9 0.46.0 virtual
machine
- Including Oracle July 2024 CPU changes
* CVE-2024-21131 (bsc#1228046), CVE-2024-21138 (bsc#1228047),
CVE-2024-21140 (bsc#1228048), CVE-2024-21144 (bsc#1228050),
CVE-2024-21147 (bsc#1228052), CVE-2024-21145 (bsc#1228051)
* OpenJ9 changes, see
https://eclipse.dev/openj9/docs/version0.46
- Removed patch:
* openj9-no-narrowing.patch
+ fixed in upstream code
-------------------------------------------------------------------
Thu May 23 17:21:33 UTC 2024 - Fridrich Strba <fstrba@suse.com>

View File

@@ -1,21 +0,0 @@
--- a/openj9/runtime/compiler/env/j9methodServer.cpp
+++ b/openj9/runtime/compiler/env/j9methodServer.cpp
@@ -2634,7 +2634,7 @@ TR_ResolvedRelocatableJ9JITServerMethod::validateMethodFieldAttributes(const TR_
return equal;
}
-TR_J9ServerMethod::TR_J9ServerMethod(TR_FrontEnd * fe, TR_Memory * trMemory, J9Class * aClazz, uintptr_t cpIndex)
+TR_J9ServerMethod::TR_J9ServerMethod(TR_FrontEnd * fe, TR_Memory * trMemory, J9Class * aClazz, int32_t cpIndex)
: TR_J9Method()
{
TR_ASSERT(cpIndex != -1, "cpIndex shouldn't be -1");
--- a/openj9/runtime/compiler/env/j9methodServer.hpp
+++ b/openj9/runtime/compiler/env/j9methodServer.hpp
@@ -326,6 +326,6 @@ protected:
class TR_J9ServerMethod : public TR_J9Method
{
public:
- TR_J9ServerMethod(TR_FrontEnd *trvm, TR_Memory *, J9Class * aClazz, uintptr_t cpIndex);
+ TR_J9ServerMethod(TR_FrontEnd *trvm, TR_Memory *, J9Class * aClazz, int32_t cpIndex);
};
#endif // J9METHODSERVER_H