Add ERFKILL errno to host_linux file.

Reported-by: syzbot+60bb099bed4694a37f61@syzkaller.appspotmail.com
PiperOrigin-RevId: 663361199
This commit is contained in:
Nayana Bidari
2024-08-15 10:43:38 -07:00
committed by gVisor bot
parent 626010438a
commit e6cf09a18c
+1
View File
@@ -91,4 +91,5 @@ var (
ErrKeyExpired = newWithHost("key has expired", errno.EKEYEXPIRED, unix.EKEYEXPIRED)
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)
)