Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Oct 2023 18:21:35 GMT
From:      Dmitry Chagin <dchagin@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 1ee29160c5e5 - main - linux(4): Fix semid64_ds structure layout
Message-ID:  <202310041821.394ILZJA085877@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by dchagin:

URL: https://cgit.FreeBSD.org/src/commit/?id=1ee29160c5e5d8fa70173445b4a6de6742af74dc

commit 1ee29160c5e5d8fa70173445b4a6de6742af74dc
Author:     Dmitry Chagin <dchagin@FreeBSD.org>
AuthorDate: 2023-10-04 18:21:12 +0000
Commit:     Dmitry Chagin <dchagin@FreeBSD.org>
CommitDate: 2023-10-04 18:21:12 +0000

    linux(4): Fix semid64_ds structure layout
    
    Unlike x86_64, other 64-bit architectures do not have paddings
    for the time fields.
    
    MFC after:              1 week
---
 sys/compat/linux/linux_ipc64.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/sys/compat/linux/linux_ipc64.h b/sys/compat/linux/linux_ipc64.h
index 75563c55971c..e3834b909bfc 100644
--- a/sys/compat/linux/linux_ipc64.h
+++ b/sys/compat/linux/linux_ipc64.h
@@ -101,9 +101,13 @@ struct l_msqid64_ds {
 struct l_semid64_ds {
 	struct l_ipc64_perm sem_perm;	/* permissions */
 	l_time_t	sem_otime;	/* last semop time */
+#if defined(__amd64__) || defined(__i386__)
 	l_ulong		__unused1;
+#endif
 	l_time_t	sem_ctime;	/* last change time */
+#if defined(__amd64__) || defined(__i386__)
 	l_ulong		__unused2;
+#endif
 	l_ulong		sem_nsems;	/* no. of semaphores in array */
 	l_ulong		__unused3;
 	l_ulong		__unused4;



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