svn commit: r327834 - in head/sys: amd64/amd64 i386/i386
Konstantin Belousov
kib at FreeBSD.org
Thu Jan 11 16:50:05 UTC 2018
Author: kib
Date: Thu Jan 11 16:50:03 2018
New Revision: 327834
URL: https://svnweb.freebsd.org/changeset/base/327834
Log:
Fix grammar.
Submitted by: alc
MFC after: 3 days
Modified:
head/sys/amd64/amd64/support.S
head/sys/i386/i386/support.s
Modified: head/sys/amd64/amd64/support.S
==============================================================================
--- head/sys/amd64/amd64/support.S Thu Jan 11 16:41:03 2018 (r327833)
+++ head/sys/amd64/amd64/support.S Thu Jan 11 16:50:03 2018 (r327834)
@@ -245,8 +245,9 @@ ENTRY(copyout)
/*
* Check explicitly for non-user addresses. This check is essential
- * because it prevents usermode from writing into kernel. We do not
- * verify that user did not specified a rogue address anywhere else.
+ * because it prevents usermode from writing into the kernel. We do
+ * not verify anywhere else that the user did not specify a rogue
+ * address.
*/
/*
* First, prevent address wrapping.
Modified: head/sys/i386/i386/support.s
==============================================================================
--- head/sys/i386/i386/support.s Thu Jan 11 16:41:03 2018 (r327833)
+++ head/sys/i386/i386/support.s Thu Jan 11 16:50:03 2018 (r327834)
@@ -286,8 +286,9 @@ ENTRY(copyout)
/*
* Check explicitly for non-user addresses. This check is essential
- * because it prevents usermode from writing into kernel. We do not
- * verify that user did not specified a rogue address anywhere else.
+ * because it prevents usermode from writing into the kernel. We do
+ * not verify anywhere else that the user did not specify a rogue
+ * address.
*/
/*
* First, prevent address wrapping.
More information about the svn-src-all
mailing list