| Summary: | ksmtuned committed_memory() still returns "", not 0, when no qemu running | |||
|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Stefan Paletta <stefanp> | |
| Component: | qemu | Assignee: | Fedora Virtualization Maintainers <virt-maint> | |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | |
| Severity: | unspecified | Docs Contact: | ||
| Priority: | unspecified | |||
| Version: | 19 | CC: | amit.shah, berrange, cfergeau, crobinso, dwmw2, itamar, pbonzini, rjones, scottt.tw, virt-maint | |
| Target Milestone: | --- | |||
| Target Release: | --- | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | qemu-1.4.2-13.fc19 | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 1027418 (view as bug list) | Environment: | ||
| Last Closed: | 2013-11-15 20:30:41 UTC | Type: | Bug | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
Thanks for the suggestion, moving to POST since there's a fix qemu-1.4.2-13.fc19 has been submitted as an update for Fedora 19. https://admin.fedoraproject.org/updates/qemu-1.4.2-13.fc19 Package qemu-1.4.2-13.fc19: * should fix your issue, * was pushed to the Fedora 19 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing qemu-1.4.2-13.fc19' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2013-20824/qemu-1.4.2-13.fc19 then log in and leave karma (feedback). qemu-1.4.2-13.fc19 has been pushed to the Fedora 19 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: Despite the efforts in #609016 and #902688, this is still / again broken. Version of selected components: ksm-1.4.2-9.fc19.x86_64 How to reproduce: Understand committed_memory() in ksmtuned, then: $ < /dev/null awk '{ sum += $1 }; END { print sum }' $ Additional info: Please change the awk clause in line 77 of ksmtuned to the obvious and correct solution: 'END { print 0+sum }': $ < /dev/null awk '{ sum += $1 }; END { print 0+sum }' 0 $