From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/15086 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: [PATCH] mips: Use fpregset_t for fpregs element Date: Wed, 1 Jan 2020 15:47:31 -0500 Message-ID: <20200101204731.GL30412@brightrain.aerifal.cx> References: <20191218220237.3636945-1-raj.khem@gmail.com> Reply-To: musl@lists.openwall.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="131660"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Mutt/1.5.21 (2010-09-15) To: musl@lists.openwall.com Original-X-From: musl-return-15102-gllmg-musl=m.gmane.org@lists.openwall.com Wed Jan 01 21:47:46 2020 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.89) (envelope-from ) id 1imkuA-000YBF-2O for gllmg-musl@m.gmane.org; Wed, 01 Jan 2020 21:47:46 +0100 Original-Received: (qmail 5877 invoked by uid 550); 1 Jan 2020 20:47:44 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 5856 invoked from network); 1 Jan 2020 20:47:43 -0000 Content-Disposition: inline In-Reply-To: <20191218220237.3636945-1-raj.khem@gmail.com> Original-Sender: Rich Felker Xref: news.gmane.org gmane.linux.lib.musl.general:15086 Archived-At: On Wed, Dec 18, 2019 at 02:02:37PM -0800, Khem Raj wrote: > it helps in fixing type errors seen in applications where the elements > of mcontext_t fpregs is accessing struct elements by name > > Signed-off-by: Khem Raj > --- > arch/mips/bits/signal.h | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/arch/mips/bits/signal.h b/arch/mips/bits/signal.h > index 1a84de59..e1d97ac7 100644 > --- a/arch/mips/bits/signal.h > +++ b/arch/mips/bits/signal.h > @@ -19,14 +19,18 @@ typedef struct { > } fpregset_t; > struct sigcontext { > unsigned sc_regmask, sc_status; > - unsigned long long sc_pc, sc_regs[32], sc_fpregs[32]; > + unsigned long long sc_pc; > + gregset_t sc_regs; > + fpregset_t sc_fpregs; > unsigned sc_ownedfp, sc_fpc_csr, sc_fpc_eir, sc_used_math, sc_dsp; > unsigned long long sc_mdhi, sc_mdlo; > unsigned long sc_hi1, sc_lo1, sc_hi2, sc_lo2, sc_hi3, sc_lo3; > }; > typedef struct { > unsigned regmask, status; > - unsigned long long pc, gregs[32], fpregs[32]; > + unsigned long long pc; > + gregset_t gregs; > + fpregset_t fpregs; > unsigned ownedfp, fpc_csr, fpc_eir, used_math, dsp; > unsigned long long mdhi, mdlo; > unsigned long hi1, lo1, hi2, lo2, hi3, lo3; > -- > 2.24.1 Merged.