Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Apr 2019 13:43:58 +0000 (UTC)
From:      Dmitry Chagin <dchagin@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r346830 - stable/11/sys/compat/linux
Message-ID:  <201904281343.x3SDhwoP028509@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dchagin
Date: Sun Apr 28 13:43:58 2019
New Revision: 346830
URL: https://svnweb.freebsd.org/changeset/base/346830

Log:
  MFC r332893 (by emaste@):
  
  Map FreeBSD EDOOFUS to Linux EINVAL
  
  Previously EDOOFUS mapped to EBUSY.  EINVAL seems more appropriate.

Modified:
  stable/11/sys/compat/linux/linux_errno.inc
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/compat/linux/linux_errno.inc
==============================================================================
--- stable/11/sys/compat/linux/linux_errno.inc	Sun Apr 28 13:42:34 2019	(r346829)
+++ stable/11/sys/compat/linux/linux_errno.inc	Sun Apr 28 13:43:58 2019	(r346830)
@@ -132,7 +132,7 @@ const int linux_errtbl[ELAST + 1] = {
 	-125,
 	-84,
 	-61,
-	-16,	/* EDOOFUS -> EBUSY */
+	-22,	/* EDOOFUS -> EINVAL */
 	-74,
 
 	-72,



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