aboutsummaryrefslogtreecommitdiff
path: root/stand/liblua
diff options
context:
space:
mode:
authorKirk McKusick <mckusick@FreeBSD.org>2019-01-17 06:35:45 +0000
committerKirk McKusick <mckusick@FreeBSD.org>2019-01-17 06:35:45 +0000
commit88640c0e8b6f503426cce9ea1337098c241d3801 (patch)
treef2ee08193db32edc9d3c8929e21ec8dceea54e32 /stand/liblua
parent0a34fc885b57ead048ff45433be268dc2ca48f8c (diff)
downloadsrc-88640c0e8b6f503426cce9ea1337098c241d3801.tar.gz
src-88640c0e8b6f503426cce9ea1337098c241d3801.zip
Create new EINTEGRITY error with message "Integrity check failed".
An integrity check such as a check-hash or a cross-correlation failed. The integrity error falls between EINVAL that identifies errors in parameters to a system call and EIO that identifies errors with the underlying storage media. EINTEGRITY is typically raised by intermediate kernel layers such as a filesystem or an in-kernel GEOM subsystem when they detect inconsistencies. Uses include allowing the mount(8) command to return a different exit value to automate the running of fsck(8) during a system boot. These changes make no use of the new error, they just add it. Later commits will be made for the use of the new error number and it will be added to additional manual pages as appropriate. Reviewed by: gnn, dim, brueffer, imp Discussed with: kib, cem, emaste, ed, jilles Differential Revision: https://reviews.freebsd.org/D18765
Notes
Notes: svn path=/head/; revision=343111
Diffstat (limited to 'stand/liblua')
-rw-r--r--stand/liblua/lerrno.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/stand/liblua/lerrno.c b/stand/liblua/lerrno.c
index efa73aed5007..defa3c73baad 100644
--- a/stand/liblua/lerrno.c
+++ b/stand/liblua/lerrno.c
@@ -146,6 +146,7 @@ static const struct err_name_number {
ENTRY(ECAPMODE),
ENTRY(ENOTRECOVERABLE),
ENTRY(EOWNERDEAD),
+ ENTRY(EINTEGRITY),
ENTRY(ELAST),
ENTRY(ERESTART),
ENTRY(EJUSTRETURN),