From owner-svn-src-all@freebsd.org Fri May 26 16:29:57 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 52BD9D8335C; Fri, 26 May 2017 16:29:57 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2346B129F; Fri, 26 May 2017 16:29:57 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4QGTuKT000869; Fri, 26 May 2017 16:29:56 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4QGTuLc000868; Fri, 26 May 2017 16:29:56 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201705261629.v4QGTuLc000868@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Fri, 26 May 2017 16:29:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r318959 - head/sys/sys X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 May 2017 16:29:57 -0000 Author: dim Date: Fri May 26 16:29:55 2017 New Revision: 318959 URL: https://svnweb.freebsd.org/changeset/base/318959 Log: Define a new __INO64 macro in , to indicate the system uses 64-bit inode numbers. Programs can use this to avoid including , with its associated namespace pollution. Reviewed by: kib Modified: head/sys/sys/_types.h Modified: head/sys/sys/_types.h ============================================================================== --- head/sys/sys/_types.h Fri May 26 16:29:00 2017 (r318958) +++ head/sys/sys/_types.h Fri May 26 16:29:55 2017 (r318959) @@ -120,4 +120,11 @@ typedef union { typedef __uintmax_t __rman_res_t; +/* + * When the following macro is defined, the system uses 64-bit inode numbers. + * Programs can use this to avoid including , with its associated + * namespace pollution. + */ +#define __INO64 + #endif /* !_SYS__TYPES_H_ */