From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1792) id 5E32D3857704; Tue, 2 May 2023 19:36:00 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5E32D3857704 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1683056160; bh=Ks8g65ybBxOhS4iUIj3CvRocuiINB8Sukgxqts/sZrk=; h=From:To:Subject:Date:From; b=vRnUWj1aewYw8FS2yjdZijATtqPJuFBDF72/hwLv5iyseAwjovXZ32OACoHNWHmXu xDBx2BFSRs5NLoW36Hs+RQVg6YLMFkVUJpRdLqoy+Bx3l3JIDULCZEhZbb2Xhf34w2 20VC6fBOwAfOeHtYPROnpI7JFv3e4hNJVPeCc/WA= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Samuel Thibault To: glibc-cvs@sourceware.org Subject: [glibc] hurd 64bit: Make dev_t word type X-Act-Checkin: glibc X-Git-Author: Samuel Thibault X-Git-Refname: refs/heads/master X-Git-Oldrev: f2cabe04dc2630754e1583c56282920ea146c6d8 X-Git-Newrev: 0ec48e3337506fcd33abdd86b5ab9e331564b65c Message-Id: <20230502193600.5E32D3857704@sourceware.org> Date: Tue, 2 May 2023 19:36:00 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=0ec48e3337506fcd33abdd86b5ab9e331564b65c commit 0ec48e3337506fcd33abdd86b5ab9e331564b65c Author: Samuel Thibault Date: Tue May 2 21:29:26 2023 +0200 hurd 64bit: Make dev_t word type dev_t are 64bit on Linux ports, so better increase their size on 64bit Hurd. It happens that this helps with BZ 23084 there: st_dev has type fsid_t (quad) and is specified by POSIX to have type dev_t. Making dev_t 64bit makes these match. Diff: --- sysdeps/mach/hurd/bits/typesizes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/mach/hurd/bits/typesizes.h b/sysdeps/mach/hurd/bits/typesizes.h index 7b95bb0b91..646ee934bb 100644 --- a/sysdeps/mach/hurd/bits/typesizes.h +++ b/sysdeps/mach/hurd/bits/typesizes.h @@ -26,7 +26,7 @@ /* See for the meaning of these macros. This file exists so that need not vary across different GNU platforms. */ -#define __DEV_T_TYPE __U32_TYPE +#define __DEV_T_TYPE __UWORD_TYPE #define __UID_T_TYPE __U32_TYPE #define __GID_T_TYPE __U32_TYPE #define __INO_T_TYPE __ULONGWORD_TYPE