Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
DescriptionJan Pazdziora (Red Hat)
2021-07-25 13:11:31 UTC
Description of problem:
On fresh RHEL 9 installation on s390x (KVM), the following message is logged in journal:
cpictl[761]: /lib/s390-tools/cpictl: line 112: echo: write error: Operation not supported
Version-Release number of selected component (if applicable):
s390utils-core-2.17.0-2.el9.s390x
How reproducible:
Deterministic.
Steps to Reproduce:
1. journalctl --no-hostname -l | grep '/lib/s390-tools/cpictl: line 112: echo: write error: Operation not supported'
Actual results:
Jul 25 08:47:26 cpictl[761]: /lib/s390-tools/cpictl: line 112: echo: write error: Operation not supported
Expected results:
No output.
Additional info:
That line does
cpi_commit()
{
echo 1 > "$CPI_SET"
}
and CPI_SET is set to
readonly CPI_SET="/sys/firmware/cpi/set"
and permissions on that entry is
# ls -la /sys/firmware/cpi/set
--w-------. 1 root root 4096 Jul 25 08:47 /sys/firmware/cpi/set
# ls -lZ /sys/firmware/cpi/set
--w-------. 1 root root system_u:object_r:sysfs_t:s0 4096 Jul 25 08:47 /sys/firmware/cpi/set
reproduced on RHEL-9.1.0-20220721.1 with s390utils-core-2.19.0-2.el9.s390x
# journalctl --no-hostname -l | grep '/lib/s390-tools/cpict'
Jul 26 15:34:02 cpictl[757]: /lib/s390-tools/cpictl: line 112: echo: write error: Operation not supported
This does not require a fresh installation, but can be triggered by reboot.
After upgrading to s390utils-core-2.21.0-1.el9.s390x, the problem disappeared.
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory (s390utils bug fix and enhancement update), and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHEA-2022:8387
Description of problem: On fresh RHEL 9 installation on s390x (KVM), the following message is logged in journal: cpictl[761]: /lib/s390-tools/cpictl: line 112: echo: write error: Operation not supported Version-Release number of selected component (if applicable): s390utils-core-2.17.0-2.el9.s390x How reproducible: Deterministic. Steps to Reproduce: 1. journalctl --no-hostname -l | grep '/lib/s390-tools/cpictl: line 112: echo: write error: Operation not supported' Actual results: Jul 25 08:47:26 cpictl[761]: /lib/s390-tools/cpictl: line 112: echo: write error: Operation not supported Expected results: No output. Additional info: That line does cpi_commit() { echo 1 > "$CPI_SET" } and CPI_SET is set to readonly CPI_SET="/sys/firmware/cpi/set" and permissions on that entry is # ls -la /sys/firmware/cpi/set --w-------. 1 root root 4096 Jul 25 08:47 /sys/firmware/cpi/set # ls -lZ /sys/firmware/cpi/set --w-------. 1 root root system_u:object_r:sysfs_t:s0 4096 Jul 25 08:47 /sys/firmware/cpi/set