Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Feb 2017 02:00:57 +0000 (UTC)
From:      Konstantin Belousov <kib@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: r313574 - in stable/11/sys: arm/include arm64/include mips/include powerpc/include riscv/include sparc64/include sys x86/include
Message-ID:  <201702110200.v1B20vwK087009@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Sat Feb 11 02:00:56 2017
New Revision: 313574
URL: https://svnweb.freebsd.org/changeset/base/313574

Log:
  MFC r313194:
  Define the vm_ooffset_t and vm_pindex_t types as machine-independend.

Modified:
  stable/11/sys/arm/include/_types.h
  stable/11/sys/arm64/include/_types.h
  stable/11/sys/mips/include/_types.h
  stable/11/sys/powerpc/include/_types.h
  stable/11/sys/riscv/include/_types.h
  stable/11/sys/sparc64/include/_types.h
  stable/11/sys/sys/types.h
  stable/11/sys/x86/include/_types.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/arm/include/_types.h
==============================================================================
--- stable/11/sys/arm/include/_types.h	Sat Feb 11 01:07:46 2017	(r313573)
+++ stable/11/sys/arm/include/_types.h	Sat Feb 11 02:00:56 2017	(r313574)
@@ -100,9 +100,7 @@ typedef	__uint32_t	__uint_least32_t;
 typedef	__uint64_t	__uint_least64_t;
 typedef	__uint32_t	__u_register_t;
 typedef	__uint32_t	__vm_offset_t;
-typedef	__int64_t	__vm_ooffset_t;
 typedef	__uint32_t	__vm_paddr_t;
-typedef	__uint64_t	__vm_pindex_t;
 typedef	__uint32_t	__vm_size_t;
 
 typedef	unsigned int	___wchar_t;

Modified: stable/11/sys/arm64/include/_types.h
==============================================================================
--- stable/11/sys/arm64/include/_types.h	Sat Feb 11 01:07:46 2017	(r313573)
+++ stable/11/sys/arm64/include/_types.h	Sat Feb 11 02:00:56 2017	(r313574)
@@ -88,9 +88,7 @@ typedef	__uint32_t	__uint_least32_t;
 typedef	__uint64_t	__uint_least64_t;
 typedef	__uint64_t	__u_register_t;
 typedef	__uint64_t	__vm_offset_t;
-typedef	__int64_t	__vm_ooffset_t;
 typedef	__uint64_t	__vm_paddr_t;
-typedef	__uint64_t	__vm_pindex_t;
 typedef	__uint64_t	__vm_size_t;
 typedef	unsigned int	___wchar_t;
 

Modified: stable/11/sys/mips/include/_types.h
==============================================================================
--- stable/11/sys/mips/include/_types.h	Sat Feb 11 01:07:46 2017	(r313573)
+++ stable/11/sys/mips/include/_types.h	Sat Feb 11 02:00:56 2017	(r313574)
@@ -143,8 +143,6 @@ typedef	__uint64_t	__vm_paddr_t;
 typedef	__uint32_t	__vm_paddr_t;
 #endif
 
-typedef	__int64_t	__vm_ooffset_t;
-typedef	__uint64_t	__vm_pindex_t;
 typedef	int		___wchar_t;
 
 #define	__WCHAR_MIN	__INT_MIN	/* min value for a wchar_t */

Modified: stable/11/sys/powerpc/include/_types.h
==============================================================================
--- stable/11/sys/powerpc/include/_types.h	Sat Feb 11 01:07:46 2017	(r313573)
+++ stable/11/sys/powerpc/include/_types.h	Sat Feb 11 02:00:56 2017	(r313574)
@@ -135,8 +135,6 @@ typedef	__uint32_t	__vm_paddr_t;
 #endif
 typedef	__uint32_t	__vm_size_t;
 #endif
-typedef	__int64_t	__vm_ooffset_t;
-typedef	__uint64_t	__vm_pindex_t;
 typedef	int		___wchar_t;
 
 #define	__WCHAR_MIN	__INT_MIN	/* min value for a wchar_t */

Modified: stable/11/sys/riscv/include/_types.h
==============================================================================
--- stable/11/sys/riscv/include/_types.h	Sat Feb 11 01:07:46 2017	(r313573)
+++ stable/11/sys/riscv/include/_types.h	Sat Feb 11 02:00:56 2017	(r313574)
@@ -88,9 +88,7 @@ typedef	__uint32_t	__uint_least32_t;
 typedef	__uint64_t	__uint_least64_t;
 typedef	__uint64_t	__u_register_t;
 typedef	__uint64_t	__vm_offset_t;
-typedef	__int64_t	__vm_ooffset_t;
 typedef	__uint64_t	__vm_paddr_t;
-typedef	__uint64_t	__vm_pindex_t;
 typedef	__uint64_t	__vm_size_t;
 typedef	int		___wchar_t;
 

Modified: stable/11/sys/sparc64/include/_types.h
==============================================================================
--- stable/11/sys/sparc64/include/_types.h	Sat Feb 11 01:07:46 2017	(r313573)
+++ stable/11/sys/sparc64/include/_types.h	Sat Feb 11 02:00:56 2017	(r313574)
@@ -88,9 +88,7 @@ typedef	__uint32_t	__uint_least32_t;
 typedef	__uint64_t	__uint_least64_t;
 typedef	__uint64_t	__u_register_t;
 typedef	__uint64_t	__vm_offset_t;
-typedef	__int64_t	__vm_ooffset_t;
 typedef	__uint64_t	__vm_paddr_t;
-typedef	__uint64_t	__vm_pindex_t;
 typedef	__uint64_t	__vm_size_t;
 typedef	int		___wchar_t;
 

Modified: stable/11/sys/sys/types.h
==============================================================================
--- stable/11/sys/sys/types.h	Sat Feb 11 01:07:46 2017	(r313573)
+++ stable/11/sys/sys/types.h	Sat Feb 11 02:00:56 2017	(r313574)
@@ -250,9 +250,9 @@ typedef	struct cap_rights	cap_rights_t;
 #endif
 
 typedef	__vm_offset_t	vm_offset_t;
-typedef	__vm_ooffset_t	vm_ooffset_t;
+typedef	__int64_t	vm_ooffset_t;
 typedef	__vm_paddr_t	vm_paddr_t;
-typedef	__vm_pindex_t	vm_pindex_t;
+typedef	__uint64_t	vm_pindex_t;
 typedef	__vm_size_t	vm_size_t;
 
 typedef __rman_res_t    rman_res_t;

Modified: stable/11/sys/x86/include/_types.h
==============================================================================
--- stable/11/sys/x86/include/_types.h	Sat Feb 11 01:07:46 2017	(r313573)
+++ stable/11/sys/x86/include/_types.h	Sat Feb 11 02:00:56 2017	(r313574)
@@ -142,8 +142,6 @@ typedef	__uint32_t	__vm_paddr_t;
 #endif
 typedef	__uint32_t	__vm_size_t;
 #endif
-typedef	__int64_t	__vm_ooffset_t;
-typedef	__uint64_t	__vm_pindex_t;
 typedef	int		___wchar_t;
 
 #define	__WCHAR_MIN	__INT_MIN	/* min value for a wchar_t */



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