From patchwork Mon Jul 18 15:44:02 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Romero X-Patchwork-Id: 13848 X-Patchwork-Delegate: tuliom@linux.vnet.ibm.com Received: (qmail 95424 invoked by alias); 18 Jul 2016 15:44:18 -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 Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 92911 invoked by uid 89); 18 Jul 2016 15:44:18 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=BAYES_00, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 spammy=older, Hx-languages-length:1401, Romero, romero X-HELO: mx0a-001b2d01.pphosted.com X-IBM-Helo: d24dlp01.br.ibm.com X-IBM-MailFrom: gromero@linux.vnet.ibm.com X-IBM-RcptTo: libc-alpha@sourceware.org Cc: tuliom@linux.vnet.ibm.com, Breno Leitao From: Gustavo Romero Subject: [PATCH] powerpc: Fix missing verb and typo in comment about AT_HWCAP entry To: libc-alpha@sourceware.org Date: Mon, 18 Jul 2016 12:44:02 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.0 MIME-Version: 1.0 X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 16071815-0020-0000-0000-00000222D900 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 16071815-0021-0000-0000-00003003445D Message-Id: <578CF942.3030900@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:, , definitions=2016-07-18_07:, , signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=1 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1604210000 definitions=main-1607180174 Fix missing verb and typo in comment about AT_HWCAP entry, in the context of mcontext_t struct definition for PPC64 Linux kernels. 2016-07-18 Gustavo Romero * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Fix missing verb and typo in a comment about AT_HWCAP entry. --- sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- 2.4.0 diff --git a/sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h b/sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h index 04100a2..2b97bc7 100644 --- a/sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h @@ -64,8 +64,8 @@ typedef struct /* For 64-bit kernels with Altivec support, a machine context is exactly * a sigcontext. For older kernel (without Altivec) the sigcontext matches * the mcontext upto but not including the v_regs field. For kernels that - * don't AT_HWCAP or return AT_HWCAP without PPC_FEATURE_HAS_ALTIVEC the - * v_regs field may not exit and should not be referenced. The v_regd field + * don't set AT_HWCAP or return AT_HWCAP without PPC_FEATURE_HAS_ALTIVEC the + * v_regs field may not exist and should not be referenced. The v_regd field * can be refernced safely only after verifying that PPC_FEATURE_HAS_ALTIVEC * is set in AT_HWCAP. */