The branch main has been updated by dumbbell (ports committer):

URL: 
https://cgit.FreeBSD.org/src/commit/?id=f27b1399d68585f5edd83645c2a37a1580e7fb93

commit f27b1399d68585f5edd83645c2a37a1580e7fb93
Author:     Jean-Sébastien Pédron <dumbb...@freebsd.org>
AuthorDate: 2023-01-20 17:14:25 +0000
Commit:     Jean-Sébastien Pédron <dumbb...@freebsd.org>
CommitDate: 2023-01-25 21:49:53 +0000

    linuxkpi: Define ENOKEY to 126.
    
    This is the same error code as Linux. This value is unused on FreeBSD.
    
    Reviewed by:    manu
    Approved by:    manu
    Differential Revision:  https://reviews.freebsd.org/D38149
---
 sys/compat/linuxkpi/common/include/linux/errno.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/compat/linuxkpi/common/include/linux/errno.h 
b/sys/compat/linuxkpi/common/include/linux/errno.h
index 796203422d23..d00dbec86b5a 100644
--- a/sys/compat/linuxkpi/common/include/linux/errno.h
+++ b/sys/compat/linuxkpi/common/include/linux/errno.h
@@ -35,6 +35,7 @@
 
 #define        EBADRQC         56      /* Bad request code */
 #define        EBADSLT         57      /* Invalid slot */
+#define        ENOKEY          126     /* Required key not available */
 
 #define        ECHRNG          EDOM
 #define        ETIME           ETIMEDOUT

Reply via email to