CVE-2026-80538: xfs: propagate errors from xfs_rtginode_load
In the Linux kernel, the following vulnerability has been resolved:
xfs: propagate errors from xfsrtginodeload
xfsrtginodeensure() treats every xfsrtginodeload() error other than -ENOENT as success. This can leave the realtime group inode unset after an I/O, allocation, or corruption error. Growfs then continues as though the inode had been loaded.
Only -ENOENT means that the inode needs to be created. Return all other errors to the growfs caller.