public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Alistair Francis <alistair.francis@wdc.com>
To: libc-alpha@sourceware.org
Cc: Vineet.Gupta1@synopsys.com, alistair23@gmail.com,
	Alistair Francis <alistair.francis@wdc.com>
Subject: [PATCH v4 0/3] Support y2038 semctl_syscall()
Date: Thu, 26 Mar 2020 09:37:21 -0700	[thread overview]
Message-ID: <20200326163724.377351-1-alistair.francis@wdc.com> (raw)

This series does three things:
 1. Creates a bits/semid_ds_t.h file (in every arch) that specifies
    struct semid_ds so we no longer have to use macros defined in
    sem-pad.h.
 2. Removes the sem-pad.h file as it is no longer needed.
 3. Adds a new __semid_ds32 that is passed to the kernel (as part of
    a union) when running on 32-bit systems. If we are doing an
    IPC_STAT command then the 32-bit sem_{c,o}time{_high} values are
    combined to create a 64-bit value.

The semctl_syscall() function passes a union semun to the kernel. The
union includes struct semid_ds as a member. On 32-bit architectures the
Linux kernel provides a *_high version of the 32-bit sem_otime and
sem_ctime values. These can be combined to get a 64-bit version of the
time.

This patch adjusts the struct semid_ds to support the *_high versions
of sem_otime and sem_ctime. For 32-bit systems with a 64-bit time_t
this can be used to get a 64-bit time from the two 32-bit values.

This series was tested by running:
  ./scripts/build-many-glibcs.py ... compilers
  ./scripts/build-many-glibcs.py ... glibcs
on my x86_64 machine.

I also ran make check on RV32 and I only see a total of 9 test failures.

v4:
 - Remove the __IPC_TIME64 macro
    - It was only used once and doesn't work if __IPC_64 is 0 (which is
      usually is)
 - Address failures pointed out by Vineet Gupta

Alistair Francis (3):
  bits/sem.h: Split out struct semid_ds
  semctl: Remove the sem-pad.h file
  sysv: linux: Pass 64-bit version of semctl syscall

 sysdeps/unix/sysv/linux/Makefile              |  3 +-
 sysdeps/unix/sysv/linux/bits/sem-pad.h        | 33 ----------
 sysdeps/unix/sysv/linux/bits/sem.h            | 26 +-------
 sysdeps/unix/sysv/linux/bits/semid_ds_t.h     | 61 +++++++++++++++++++
 sysdeps/unix/sysv/linux/hppa/bits/sem-pad.h   | 26 --------
 .../unix/sysv/linux/hppa/bits/semid_ds_t.h    | 61 +++++++++++++++++++
 sysdeps/unix/sysv/linux/mips/bits/sem-pad.h   | 24 --------
 .../unix/sysv/linux/mips/bits/semid_ds_t.h    | 45 ++++++++++++++
 .../unix/sysv/linux/powerpc/bits/sem-pad.h    | 26 --------
 .../unix/sysv/linux/powerpc/bits/semid_ds_t.h | 61 +++++++++++++++++++
 sysdeps/unix/sysv/linux/semctl.c              | 24 ++++++--
 sysdeps/unix/sysv/linux/sparc/bits/sem-pad.h  | 26 --------
 .../unix/sysv/linux/sparc/bits/semid_ds_t.h   | 61 +++++++++++++++++++
 sysdeps/unix/sysv/linux/x86/bits/sem-pad.h    | 24 --------
 sysdeps/unix/sysv/linux/x86/bits/semid_ds_t.h | 49 +++++++++++++++
 15 files changed, 362 insertions(+), 188 deletions(-)
 delete mode 100644 sysdeps/unix/sysv/linux/bits/sem-pad.h
 create mode 100644 sysdeps/unix/sysv/linux/bits/semid_ds_t.h
 delete mode 100644 sysdeps/unix/sysv/linux/hppa/bits/sem-pad.h
 create mode 100644 sysdeps/unix/sysv/linux/hppa/bits/semid_ds_t.h
 delete mode 100644 sysdeps/unix/sysv/linux/mips/bits/sem-pad.h
 create mode 100644 sysdeps/unix/sysv/linux/mips/bits/semid_ds_t.h
 delete mode 100644 sysdeps/unix/sysv/linux/powerpc/bits/sem-pad.h
 create mode 100644 sysdeps/unix/sysv/linux/powerpc/bits/semid_ds_t.h
 delete mode 100644 sysdeps/unix/sysv/linux/sparc/bits/sem-pad.h
 create mode 100644 sysdeps/unix/sysv/linux/sparc/bits/semid_ds_t.h
 delete mode 100644 sysdeps/unix/sysv/linux/x86/bits/sem-pad.h
 create mode 100644 sysdeps/unix/sysv/linux/x86/bits/semid_ds_t.h

-- 
2.26.0


             reply	other threads:[~2020-03-26 16:45 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-26 16:37 Alistair Francis [this message]
2020-03-26 16:37 ` [PATCH v4 1/3] bits/sem.h: Split out struct semid_ds Alistair Francis
2020-03-26 18:59   ` Joseph Myers
2020-03-26 21:58     ` Alistair Francis
2020-03-26 16:37 ` [PATCH v4 2/3] semctl: Remove the sem-pad.h file Alistair Francis
2020-03-26 16:37 ` [PATCH v4 3/3] sysv: linux: Pass 64-bit version of semctl syscall Alistair Francis
2020-03-26 19:01   ` Joseph Myers
2020-03-26 22:11     ` Alistair Francis
2020-03-26 22:52       ` Joseph Myers
2020-03-27 18:24   ` Stepan Golosunov
2020-03-27 19:45     ` Alistair Francis
2020-03-28 10:28       ` Stepan Golosunov
2020-04-01 16:16         ` Alistair Francis

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200326163724.377351-1-alistair.francis@wdc.com \
    --to=alistair.francis@wdc.com \
    --cc=Vineet.Gupta1@synopsys.com \
    --cc=alistair23@gmail.com \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).