Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Nov 2022 14:35:53 GMT
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: eafafebe4728 - main - compat32: retire now-unused MIPS support
Message-ID:  <202211231435.2ANEZrXx027512@gitrepo.freebsd.org>

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

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

commit eafafebe472872eb030d390e7acde16389a899ec
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2022-11-23 14:30:49 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2022-11-23 14:33:43 +0000

    compat32: retire now-unused MIPS support
    
    This reverts commit a6d20bbaa2f4bb3684d2c396ef1f1411c8fb8499.
---
 sys/compat/freebsd32/freebsd32_misc.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/sys/compat/freebsd32/freebsd32_misc.c b/sys/compat/freebsd32/freebsd32_misc.c
index a52b33a72f8a..df7380252ced 100644
--- a/sys/compat/freebsd32/freebsd32_misc.c
+++ b/sys/compat/freebsd32/freebsd32_misc.c
@@ -1311,11 +1311,7 @@ freebsd32_copyoutmsghdr(struct msghdr *msg, struct msghdr32 *msg32)
 	return (error);
 }
 
-#ifndef __mips__
 #define FREEBSD32_ALIGNBYTES	(sizeof(int) - 1)
-#else
-#define FREEBSD32_ALIGNBYTES	(sizeof(long) - 1)
-#endif
 #define FREEBSD32_ALIGN(p)	\
 	(((u_long)(p) + FREEBSD32_ALIGNBYTES) & ~FREEBSD32_ALIGNBYTES)
 #define	FREEBSD32_CMSG_SPACE(l)	\



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