svn commit: r356099 - head/sys/fs/nfs

Rick Macklem rmacklem at FreeBSD.org
Thu Dec 26 21:06:35 UTC 2019


Author: rmacklem
Date: Thu Dec 26 21:06:34 2019
New Revision: 356099
URL: https://svnweb.freebsd.org/changeset/base/356099

Log:
  Change NFSv4.1 and NFSv4.2 error strings to start with lower case letter.
  
  r356084 added error strings for NFSv4.1 and NFSv4.2, with the first
  character capitalized. Since the other error strings were not capitalized
  and these strings would usually be imbedded in an error, I decided to
  make the first characters lower cased.
  No real effect but more consistent.

Modified:
  head/sys/fs/nfs/nfsv4_errstr.h

Modified: head/sys/fs/nfs/nfsv4_errstr.h
==============================================================================
--- head/sys/fs/nfs/nfsv4_errstr.h	Thu Dec 26 21:00:06 2019	(r356098)
+++ head/sys/fs/nfs/nfsv4_errstr.h	Thu Dec 26 21:06:34 2019	(r356099)
@@ -85,54 +85,54 @@ static const char *nfsv4_errstr[NFSERR_XATTR2BIG - 100
 	"open file blocks op",
 	"lockowner state revoked",
 	"callback path down"
-	"Bad IO mode",
-	"Bad layout",
-	"Bad session digest",
-	"Bad session",
-	"Bad slot",
-	"Complete already",
-	"Not bound to session",
-	"Delegation already wanted",
-	"Back channel busy",
-	"Layout try later",
-	"Layout unavailable",
-	"No matching layout",
-	"Recall conflict",
-	"Unknown layout type",
-	"Sequence misordered",
-	"Sequence position",
-	"Request too big",
-	"Reply too big",
-	"Reply too big to cache",
-	"Retry uncached reply",
-	"Unsafe compound",
-	"Too many operations",
-	"Operation not in session",
-	"Hash algorithm unsupported",
-	"Unknown error",
-	"ClientID busy",
+	"bad IO mode",
+	"bad layout",
+	"bad session digest",
+	"bad session",
+	"bad slot",
+	"complete already",
+	"not bound to session",
+	"delegation already wanted",
+	"back channel busy",
+	"layout try later",
+	"layout unavailable",
+	"no matching layout",
+	"recall conflict",
+	"unknown layout type",
+	"sequence misordered",
+	"sequence position",
+	"request too big",
+	"reply too big",
+	"reply too big to cache",
+	"retry uncached reply",
+	"unsafe compound",
+	"too many operations",
+	"operation not in session",
+	"hash algorithm unsupported",
+	"unknown error",
+	"clientID busy",
 	"pNFS IO hole",
-	"Sequence false retry",
-	"Bad high slot",
-	"Dead session",
-	"Encrypt algorithm unsupported",
+	"sequence false retry",
+	"bad high slot",
+	"dead session",
+	"encrypt algorithm unsupported",
 	"pNFS no layout",
-	"Not only operation",
-	"Wrong credential",
-	"Wrong type",
-	"Directory delegation unavailable",
-	"Reject delegation",
-	"Return conflict",
-	"Delegation revoked",
-	"Partner not supported",
-	"Partner no auth",
-	"Union not supported",
-	"Offload denied",
-	"Wrong LFS",
-	"Bad label",
-	"Offload no request",
-	"No extended attribute",
-	"Extended attribute too big",
+	"not only operation",
+	"wrong credential",
+	"wrong type",
+	"directory delegation unavailable",
+	"reject delegation",
+	"return conflict",
+	"delegation revoked",
+	"partner not supported",
+	"partner no auth",
+	"union not supported",
+	"offload denied",
+	"wrong LFS",
+	"bad label",
+	"offload no request",
+	"no extended attribute",
+	"extended attribute too big",
 };
 
 /*


More information about the svn-src-head mailing list