Add EHWPOISON to host_linux.go

Reported-by: syzbot+a5a17bdcbcb46c5ca38c@syzkaller.appspotmail.com
PiperOrigin-RevId: 671639531
This commit is contained in:
Ayush Ranjan
2024-09-05 23:19:47 -07:00
committed by gVisor bot
parent c0d0fb0677
commit 40bde6c617
+1
View File
@@ -92,4 +92,5 @@ var (
ErrKeyRevoked = newWithHost("key has been revoked", errno.EKEYREVOKED, unix.EKEYREVOKED)
ErrKeyRejected = newWithHost("key was rejected by service", errno.EKEYREJECTED, unix.EKEYREJECTED)
ErrRFKill = newWithHost("operation not possible due to RF-kill", errno.ERFKILL, unix.ERFKILL)
ErrHwPoison = newWithHost("memory page has hardware error", errno.EHWPOISON, unix.EHWPOISON)
)