Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jul 2019 06:48:30 +0000 (UTC)
From:      Rick Macklem <rmacklem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r350321 - head/sys/sys
Message-ID:  <201907250648.x6P6mUCR012507@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rmacklem
Date: Thu Jul 25 06:48:30 2019
New Revision: 350321
URL: https://svnweb.freebsd.org/changeset/base/350321

Log:
  r350320 committed the wrong version of generated syscall.mk.
  
  This commit is for the correct version. (The incorrect one had the order
  of the last two entries reversed, due to my testing with copy_file_range
  at 568 instead of 569.) This misordering should not have been a problem,
  but is now fixed.

Modified:
  head/sys/sys/syscall.mk

Modified: head/sys/sys/syscall.mk
==============================================================================
--- head/sys/sys/syscall.mk	Thu Jul 25 06:35:21 2019	(r350320)
+++ head/sys/sys/syscall.mk	Thu Jul 25 06:48:30 2019	(r350321)
@@ -409,5 +409,5 @@ MIASM =  \
 	fhlink.o \
 	fhlinkat.o \
 	fhreadlink.o \
-	copy_file_range.o \
-	funlinkat.o
+	funlinkat.o \
+	copy_file_range.o



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