Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 1446542 Details for
Bug 1585015
machine_type_func() returns uninitialized local variable value on aarch64
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
The patch fixes the issues.
ganglia-3.7.2-libmetric-linux.patch (text/plain), 1.28 KB, created by
huan.xiong
on 2018-06-01 07:03:17 UTC
(
hide
)
Description:
The patch fixes the issues.
Filename:
MIME Type:
Creator:
huan.xiong
Created:
2018-06-01 07:03:17 UTC
Size:
1.28 KB
patch
obsolete
>--- libmetrics/linux/metrics.c.orig 2018-06-01 14:56:37.690006517 +0800 >+++ libmetrics/linux/metrics.c 2018-06-01 13:45:18.149298706 +0800 >@@ -593,36 +593,30 @@ > > #ifdef __i386__ > snprintf(val.str, MAX_G_STRING_SIZE, "x86"); >-#endif >-#ifdef __x86_64__ >+#elif __x86_64__ > snprintf(val.str, MAX_G_STRING_SIZE, "x86_64"); >-#endif >-#ifdef __ia64__ >+#elif __ia64__ > snprintf(val.str, MAX_G_STRING_SIZE, "ia64"); >-#endif >-#ifdef __sparc__ >+#elif __sparc__ > snprintf(val.str, MAX_G_STRING_SIZE, "sparc"); >-#endif >-#ifdef __alpha__ >+#elif __alpha__ > snprintf(val.str, MAX_G_STRING_SIZE, "alpha"); >-#endif >-#ifdef __powerpc__ >+#elif __powerpc__ > snprintf(val.str, MAX_G_STRING_SIZE, "powerpc"); >-#endif >-#ifdef __m68k__ >+#elif __m68k__ > snprintf(val.str, MAX_G_STRING_SIZE, "m68k"); >-#endif >-#ifdef __mips__ >+#elif __mips__ > snprintf(val.str, MAX_G_STRING_SIZE, "mips"); >-#endif >-#ifdef __arm__ >+#elif __arm__ > snprintf(val.str, MAX_G_STRING_SIZE, "arm"); >-#endif >-#ifdef __hppa__ >+#elif __aarch64__ >+ snprintf(val.str, MAX_G_STRING_SIZE, "aarch64"); >+#elif __hppa__ > snprintf(val.str, MAX_G_STRING_SIZE, "hppa"); >-#endif >-#ifdef __s390__ >+#elif __s390__ > snprintf(val.str, MAX_G_STRING_SIZE, "s390"); >+#else >+ snprintf(val.str, MAX_G_STRING_SIZE, "unknown"); > #endif > > return val;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1585015
: 1446542