From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_EF,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id CA5FC1F463 for ; Mon, 23 Sep 2019 16:24:37 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:cc:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; q=dns; s=default; b=u+nwnSqeazU6/pgr BRVo7tNCofUr3/2C8vUZ2Kn6LAkSFAvcRBDftSYTXPU50sPhPwVnd7dsFuPFzsAA VhWtZ7/nawaQ7lCn9pPuFnYKOInnKRtMaiBFkaVlRI1BOe1JYlqWD/d9jN3puvgR A9rWmFuozDCRhKlPXuX+n0vtKIM= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:cc:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; s=default; bh=yiq7hvRel15BeUI+Cf9zsB loPJo=; b=yL9SdYVMb717obRQM0V72f8dKG179QcpGQ5RpT3ENAq7KwHLfwoznf g7Wn79LQ31JG8dVfgROtvXd1LnTj/g18+zhb9hEJRcWUubmwO0dtRP2J7vtjq1/t iJKvosLzUtH7w+K6OXqDNpao9wFYkqO/l4tlQbvAzbT2u5kNDnWoE= Received: (qmail 104406 invoked by alias); 23 Sep 2019 16:24:35 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 104385 invoked by uid 89); 23 Sep 2019 16:24:34 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: mx0a-001b2d01.pphosted.com Subject: Re: [PATCH v2 7/6] [powerpc] Rename fesetenv_mode to fesetenv_control To: "Paul A. Clarke" , libc-alpha@sourceware.org Cc: tuliom@ascii.art.br References: <1568918810-20393-1-git-send-email-pc@us.ibm.com> <1568920496-26685-1-git-send-email-pc@us.ibm.com> From: Paul E Murphy Message-ID: <3466e6cc-65fd-0236-0b5e-58a7b6721893@linux.ibm.com> Date: Mon, 23 Sep 2019 11:24:27 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.1.0 MIME-Version: 1.0 In-Reply-To: <1568920496-26685-1-git-send-email-pc@us.ibm.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit On 9/19/19 2:14 PM, Paul A. Clarke wrote: > From: "Paul A. Clarke" > > fesetenv_mode is used variously to write the FPSCR exception enable > bits and rounding mode bits. These are referred to as the control > bits in the POWER ISA. Change the name to be reflective of its > current and expected use, and match up well with fegetenv_control. > > 2019-09-19 Paul A. Clarke > > * sysdeps/powerpc/fpu/fenv_libc.h (fesetenv_mode): Rename to > fesetenv_control. > * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Accommodate > rename of fesetenv_mode to fegetenv_control. > * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Likewise. > * sysdeps/powerpc/fpu/fesetmode.c (fesetmode): Likewise. > * sysdeps/powerpc/fpu/fenv_private.h (__libc_femergeenv_ppc): Likewise. > (libc_feholdsetround_noex_ppc_ctx): Likewise. > --- > This patch should've been tacked onto the series that I just posted > "[PATCH v2 0/6] Various FPSCR-related changes", thus the "7/6". :-? > This is a new patch OK. Reviewed-By: Paul E Murphy