Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Feb 2022 00:16:39 GMT
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 8f33ad3cf536 - main - LinuxKPI: add more errno
Message-ID:  <202202140016.21E0GdsE070239@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by bz:

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

commit 8f33ad3cf5361c700e2b133915685983003de67c
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2022-02-09 11:48:37 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2022-02-14 00:15:41 +0000

    LinuxKPI: add more errno
    
    Add ENOMEDIUM, ENOSR, and ELNRNG to linux/errno.h needed by drivers.
    
    MFC after:      3 days
    Reviewed by:    hselasky
    Differential Revision: https://reviews.freebsd.org/D34227
---
 sys/compat/linuxkpi/common/include/linux/errno.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sys/compat/linuxkpi/common/include/linux/errno.h b/sys/compat/linuxkpi/common/include/linux/errno.h
index 18019e9bed8d..f9c0ceeac5e2 100644
--- a/sys/compat/linuxkpi/common/include/linux/errno.h
+++ b/sys/compat/linuxkpi/common/include/linux/errno.h
@@ -64,5 +64,8 @@
 #define	EIOCBQUEUED	529
 #define	ERFKILL		530
 #define	EBADE		531
+#define	ENOMEDIUM	532
+#define	ENOSR		533
+#define	ELNRNG		534
 
 #endif					/* _LINUXKPI_LINUX_ERRNO_H_ */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202202140016.21E0GdsE070239>